diff -uNr ffmpeg/libavcodec/x264.c ffmpeg-new/libavcodec/x264.c --- ffmpeg/libavcodec/x264.c 2006-06-06 17:26:16 +0400 +++ ffmpeg-new/libavcodec/x264.c 2006-08-04 07:45:57 +0400 @@ -148,7 +148,7 @@ // if neither crf nor cqp modes are selected we have to enable the RC // we do it this way because we cannot check if the bitrate has been set - if(!(avctx->crf || (avctx->cqp > -1))) x4->params.rc.b_cbr = 1; + if(!(avctx->crf || (avctx->cqp > -1))) x4->params.rc.i_rc_method=X264_RC_ABR; x4->params.i_bframe = avctx->max_b_frames; x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;