diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-07 10:05:46 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-06-27 05:17:11 -0700 |
commit | 5dd8c08fd5e4c04d7a08d8934f0098a8a4a35c28 (patch) | |
tree | ee1ef7132f7a1b45063952b153afe1d1ecf88bb1 /libavcodec/mpegvideo.h | |
parent | e63b818dbe6060b606ae10eb184859f8b97d2353 (diff) | |
download | ffmpeg-5dd8c08fd5e4c04d7a08d8934f0098a8a4a35c28.tar.gz |
mpeg: Change ff_convert_matrix() to take an MpegEncContext parameter
This will come in handy during dsputil splitting.
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 6fe6a4345b..191dac0d3a 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -726,7 +726,7 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src void ff_set_qscale(MpegEncContext * s, int qscale); int ff_dct_common_init(MpegEncContext *s); -void ff_convert_matrix(DSPContext *dsp, int (*qmat)[64], uint16_t (*qmat16)[2][64], +void ff_convert_matrix(MpegEncContext *s, int (*qmat)[64], uint16_t (*qmat16)[2][64], const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra); int ff_dct_quantize_c(MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow); |