FFmpeg
Loading...
Searching...
No Matches
video.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2007 Bobby Bingham
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef AVFILTER_VIDEO_H
22#define AVFILTER_VIDEO_H
23
24#include "avfilter.h"
25#include "filters.h"
26
27/**
28 * An AVFilterPad array whose only entry has name "default"
29 * and is of type AVMEDIA_TYPE_VIDEO.
30 */
32
36
37/**
38 * Request a picture buffer with a specific set of permissions.
39 *
40 * @param link the output link to the filter from which the buffer will
41 * be requested
42 * @param w the minimum width of the buffer to allocate
43 * @param h the minimum height of the buffer to allocate
44 * @return on success, an AVFrame owned by the caller, NULL on error
45 */
47
48/**
49 * Returns true if a pixel format is "regular YUV", which includes all pixel
50 * formats that are affected by YUV colorspace negotiation.
51 */
53
54/**
55 * Returns true if a YUV pixel format is forced full range (i.e. YUVJ).
56 */
58
59#endif /* AVFILTER_VIDEO_H */
Main libavfilter public API header.
static const uint8_t *BS_FUNC align(BSCTX *bc)
Skip bits to a byte boundary.
uint8_t w
Definition llvidencdsp.c:39
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37
AVFrame * ff_default_get_video_buffer2(AVFilterLink *link, int w, int h, int align)
Definition video.c:49
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition video.c:44
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89
AVFrame * ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
Definition video.c:84
int ff_fmt_is_forced_full_range(enum AVPixelFormat fmt)
Returns true if a YUV pixel format is forced full range (i.e.
int ff_fmt_is_regular_yuv(enum AVPixelFormat fmt)
Returns true if a pixel format is "regular YUV", which includes all pixel formats that are affected b...