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/dsputil.h | |
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/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index e6b50e9c12..0efbad918a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -65,7 +65,7 @@ void ff_h264_idct8_add4_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, void ff_h264_idct_add8_c(uint8_t **dest, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]); void ff_h264_luma_dc_dequant_idct_c(DCTELEM *output, DCTELEM *input, int qmul); -void ff_svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp); +void ff_svq3_luma_dc_dequant_idct_c(DCTELEM *output, DCTELEM *input, int qp); void ff_svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc); void ff_vector_fmul_window_c(float *dst, const float *src0, const float *src1, |