changeset 11642:52bc4e605761 libavcodec

vertical align in libx264.c
author darkshikari
date Mon, 19 Apr 2010 21:20:20 +0000
parents 215dfe2dbfe1
children 92236ee7be0f
files libx264.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libx264.c	Sat Apr 17 11:00:53 2010 +0000
+++ b/libx264.c	Mon Apr 19 21:20:20 2010 +0000
@@ -242,13 +242,13 @@
         x4->params.analyse.i_me_method = X264_ME_TESA;
     else x4->params.analyse.i_me_method = X264_ME_HEX;
 
-    x4->params.rc.i_aq_mode = avctx->aq_mode;
-    x4->params.rc.f_aq_strength = avctx->aq_strength;
-    x4->params.rc.i_lookahead = avctx->rc_lookahead;
+    x4->params.rc.i_aq_mode               = avctx->aq_mode;
+    x4->params.rc.f_aq_strength           = avctx->aq_strength;
+    x4->params.rc.i_lookahead             = avctx->rc_lookahead;
 
-    x4->params.analyse.b_psy = avctx->flags2 & CODEC_FLAG2_PSY;
-    x4->params.analyse.f_psy_rd = avctx->psy_rd;
-    x4->params.analyse.f_psy_trellis = avctx->psy_trellis;
+    x4->params.analyse.b_psy              = avctx->flags2 & CODEC_FLAG2_PSY;
+    x4->params.analyse.f_psy_rd           = avctx->psy_rd;
+    x4->params.analyse.f_psy_trellis      = avctx->psy_trellis;
 
     x4->params.analyse.i_me_range         = avctx->me_range;
     x4->params.analyse.i_subpel_refine    = avctx->me_subpel_quality;