summaryrefslogtreecommitdiff
path: root/libavcodec/x264.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2005-03-19 12:30:01 +0000
committerMåns Rullgård <mans@mansr.com>2005-03-19 12:30:01 +0000
commitd4e87f79f0d4f8bfbdfc6b10375152383053a3ed (patch)
treead2fd9194723560f3d5d9519f2e261752314f03a /libavcodec/x264.c
parentf9791751e36a68f0a173df95f4602f72a21c7f7b (diff)
indentation fix
Originally committed as revision 4058 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x264.c')
-rw-r--r--libavcodec/x264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x264.c b/libavcodec/x264.c
index 1248e4fecf..d4c5932ad3 100644
--- a/libavcodec/x264.c
+++ b/libavcodec/x264.c
@@ -136,8 +136,8 @@ X264_init(AVCodecContext *avctx)
x4->params.rc.i_rc_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;
- x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
+ x4->params.i_bframe = avctx->max_b_frames;
+ x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
x4->params.rc.i_qp_min = avctx->qmin;
x4->params.rc.i_qp_max = avctx->qmax;