diff options
author | Todd Kirby <doubleshot@pacbell.net> | 2004-08-19 10:55:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-08-19 10:55:48 +0000 |
commit | eab895aae047630413ecbd8fc763f5d56664e917 (patch) | |
tree | b49999e627581837763f04d12608c4d5243c03a6 /libavcodec | |
parent | b1114f189d89b95c00fec0ce9b1b871bfa06a064 (diff) | |
download | ffmpeg-eab895aae047630413ecbd8fc763f5d56664e917.tar.gz |
enrtries for PIX_FMT_XVMC_MPEG2_MC and PIX_FMT_XVMC_MPEG2_IDCT patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
Originally committed as revision 3402 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/imgconvert.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index fdce574bd2..7bcb8ee23d 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -221,6 +221,12 @@ static PixFmtInfo pix_fmt_info[PIX_FMT_NB] = { .pixel_type = FF_PIXEL_PALETTE, .depth = 8, }, + [PIX_FMT_XVMC_MPEG2_MC] = { + .name = "xvmcmc", + }, + [PIX_FMT_XVMC_MPEG2_IDCT] = { + .name = "xvmcidct", + }, }; void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift) |