diff options
author | John Stebbins <stebbins@jetheaddev.com> | 2014-08-08 08:11:20 -0700 |
---|---|---|
committer | John Stebbins <stebbins@jetheaddev.com> | 2014-08-14 07:58:49 -0700 |
commit | 998c9f15d1ca8c7489775ebcca51623b915988f1 (patch) | |
tree | dac8b4d6a607d44422c0ac6179b8507ae13a807e /libavcodec/mpegvideo.h | |
parent | 93f29948e4b06acfb96e7f82d373ef86d6dc55f7 (diff) | |
download | ffmpeg-998c9f15d1ca8c7489775ebcca51623b915988f1.tar.gz |
idct: remove call to ff_idctdsp_init from ff_MPV_common_init
One step in untangling the mpegvideo code and fixing some problems in
the order that initialization is being done in h263dec and h261dec.
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 1333d44414..e8c3581274 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -720,7 +720,7 @@ void ff_MPV_report_decode_progress(MpegEncContext *s); 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_mpv_idct_init(MpegEncContext *s); 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); |