summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo_enc.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-07-05 09:48:29 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-07-05 09:48:29 +0000
commit53727262cb8c68d2a8beefb871b8852eacc3198d (patch)
tree28c3071f2c56037f015c23891b5d666b7048b882 /libavcodec/mpegvideo_enc.c
parenteaa7557c73aa40dcea2a0444e86820acff921ef1 (diff)
move mpeg encoder specific initialization in the encoder specific file
Originally committed as revision 9480 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r--libavcodec/mpegvideo_enc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index 5cd2e91752..204a51cbbb 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -660,6 +660,14 @@ int MPV_encode_init(AVCodecContext *avctx)
if (MPV_common_init(s) < 0)
return -1;
+ if(!s->dct_quantize)
+ s->dct_quantize = dct_quantize_c;
+ if(!s->denoise_dct)
+ s->denoise_dct = denoise_dct_c;
+ s->fast_dct_quantize = s->dct_quantize;
+ if(s->flags & CODEC_FLAG_TRELLIS_QUANT)
+ s->dct_quantize = dct_quantize_trellis_c;
+
if(s->modified_quant)
s->chroma_qscale_table= ff_h263_chroma_qscale_table;
s->progressive_frame=