diff options
author | Måns Rullgård <mans@mansr.com> | 2005-05-14 21:02:49 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-05-14 21:02:49 +0000 |
commit | 3f9d3777b91264e3659cab7901b9694770bf2c67 (patch) | |
tree | 844020197bdc310b11ff91a4474cbf5513e8b95f /libavcodec/x264.c | |
parent | d9995c5addf3965612d8627df921e1ee571ac332 (diff) | |
download | ffmpeg-3f9d3777b91264e3659cab7901b9694770bf2c67.tar.gz |
work with latest svn of x264
Originally committed as revision 4244 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x264.c')
-rw-r--r-- | libavcodec/x264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x264.c b/libavcodec/x264.c index c04a2e67b1..0f84139de1 100644 --- a/libavcodec/x264.c +++ b/libavcodec/x264.c @@ -133,7 +133,7 @@ X264_init(AVCodecContext *avctx) x4->params.i_keyint_max = avctx->gop_size; x4->params.rc.i_bitrate = avctx->bit_rate / 1000; - x4->params.rc.i_rc_buffer_size = avctx->rc_buffer_size / 1000; + x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000; if(avctx->rc_buffer_size) x4->params.rc.b_cbr = 1; x4->params.i_bframe = avctx->max_b_frames; |