1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-26 23:32:04 +02:00

more defaults

Originally committed as revision 1065 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2002-10-22 23:43:25 +00:00
parent 7da71a5c68
commit 8d0e42cad0

View File

@ -62,7 +62,11 @@ void avcodec_get_context_defaults(AVCodecContext *s){
s->i_quant_factor=-0.8;
s->i_quant_offset=0.0;
s->error_concealment= 3;
s->error_resilience= 1;
s->workaround_bugs= FF_BUG_AUTODETECT;
s->frame_rate = 25 * FRAME_RATE_BASE;
s->gop_size= 50;
s->me_method= ME_EPZS;
}
/**