diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-15 01:10:46 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-15 01:10:46 +0000 |
commit | 2a1f431d38ea9c05abb215d70c7dc09cdb6888ab (patch) | |
tree | c6e5f1d0b7a3fd2eee950dbb915ef27625644232 /libavcodec/h264dsp.c | |
parent | 290fabc684244b86d47527008020b0b2eb62f836 (diff) | |
download | ffmpeg-2a1f431d38ea9c05abb215d70c7dc09cdb6888ab.tar.gz |
H.264/SVQ3: make chroma DC work the same way as luma DC
No speed improvement, but necessary for some future stuff.
Also opens up the possibility of asm chroma dc idct/dequant.
Originally committed as revision 26349 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264dsp.c')
-rw-r--r-- | libavcodec/h264dsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264dsp.c b/libavcodec/h264dsp.c index c3ee06d9df..acb458faa1 100644 --- a/libavcodec/h264dsp.c +++ b/libavcodec/h264dsp.c @@ -283,6 +283,7 @@ void ff_h264dsp_init(H264DSPContext *c) c->h264_idct_add8 = ff_h264_idct_add8_c; c->h264_idct_add16intra= ff_h264_idct_add16intra_c; c->h264_luma_dc_dequant_idct= ff_h264_luma_dc_dequant_idct_c; + c->h264_chroma_dc_dequant_idct= ff_chroma_dc_dequant_idct_c; c->weight_h264_pixels_tab[0]= weight_h264_pixels16x16_c; c->weight_h264_pixels_tab[1]= weight_h264_pixels16x8_c; |