diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2013-07-25 22:30:18 +0300 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-08-05 11:16:54 +0200 |
commit | a0ad5d011318f951ecd4c9ffe1829518c9533909 (patch) | |
tree | 476b446c01330012f5c32922e16d1a33e484969c /libavutil/pixdesc.c | |
parent | 578ea75a9e4ac56e0bbbbe668700be756aa699f8 (diff) | |
download | ffmpeg-a0ad5d011318f951ecd4c9ffe1829518c9533909.tar.gz |
vdpau: deprecate old codec-specific pixel formats
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/pixdesc.c')
-rw-r--r-- | libavutil/pixdesc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index fa83dddd4a..3ac5785b42 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -793,6 +793,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = { }, .flags = AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_ALPHA, }, +#if FF_API_VDPAU [AV_PIX_FMT_VDPAU_H264] = { .name = "vdpau_h264", .log2_chroma_w = 1, @@ -829,6 +830,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = { .log2_chroma_h = 1, .flags = AV_PIX_FMT_FLAG_HWACCEL, }, +#endif [AV_PIX_FMT_RGB48BE] = { .name = "rgb48be", .nb_components = 3, |