summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Kirby <doubleshot@pacbell.net>2004-08-19 10:55:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-08-19 10:55:48 +0000
commiteab895aae047630413ecbd8fc763f5d56664e917 (patch)
treeb49999e627581837763f04d12608c4d5243c03a6
parentb1114f189d89b95c00fec0ce9b1b871bfa06a064 (diff)
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
-rw-r--r--libavcodec/imgconvert.c6
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)