diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-04 23:16:27 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-04 23:16:27 +0000 |
commit | 78149213cc2f13096cf48912fd818552d837a1fa (patch) | |
tree | 27498701895f3115721bee6d7157e200f373691b | |
parent | c72406112f87e2aba73234c8073c5093b992f3e4 (diff) | |
download | ffmpeg-78149213cc2f13096cf48912fd818552d837a1fa.tar.gz |
Cosmetics: remove empty definitions of hw-accelerated PixFmtInfo
structs.
Originally committed as revision 20733 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgconvert.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index ad29bcaeee..0746c58550 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -278,22 +278,6 @@ static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = { .pixel_type = FF_PIXEL_PALETTE, .depth = 8, }, - [PIX_FMT_XVMC_MPEG2_MC] = { - }, - [PIX_FMT_XVMC_MPEG2_IDCT] = { - }, - [PIX_FMT_VDPAU_MPEG1] = { - }, - [PIX_FMT_VDPAU_MPEG2] = { - }, - [PIX_FMT_VDPAU_H264] = { - }, - [PIX_FMT_VDPAU_WMV3] = { - }, - [PIX_FMT_VDPAU_VC1] = { - }, - [PIX_FMT_VDPAU_MPEG4] = { - }, [PIX_FMT_UYYVYY411] = { .nb_channels = 1, .color_type = FF_COLOR_YUV, @@ -391,14 +375,6 @@ static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = { .pixel_type = FF_PIXEL_PACKED, .depth = 8, }, - - /* VA API formats */ - [PIX_FMT_VAAPI_MOCO] = { - }, - [PIX_FMT_VAAPI_IDCT] = { - }, - [PIX_FMT_VAAPI_VLD] = { - }, }; void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift) |