diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-15 00:41:18 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-15 00:41:18 +0000 |
commit | 290fabc684244b86d47527008020b0b2eb62f836 (patch) | |
tree | 40d1f97a726923a437c726c1e6d64869ec4746dc /libavcodec/h264.c | |
parent | a51c71bb54c53ccb22e7972f8f60819f7f4f2c9f (diff) | |
download | ffmpeg-290fabc684244b86d47527008020b0b2eb62f836.tar.gz |
Port SVQ3 to use the new mb_luma_dc method of storing luma DC coefficients.
Doesn't help speed as there isn't an asm implementation yet, but consistency
is a good thing.
Originally committed as revision 26348 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 85aa3a8198..40dc276dd6 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1215,7 +1215,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){ } } }else - ff_svq3_luma_dc_dequant_idct_c(h->mb, s->qscale); + ff_svq3_luma_dc_dequant_idct_c(h->mb, h->mb_luma_dc, s->qscale); } if(h->deblocking_filter) xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0, simple); |