[x264-devel] commit: Fix a typo in b-pyramid help (Jason Garrett-Glaser )

git version control git at videolan.org
Sun Oct 25 20:06:08 CET 2009


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Mon Oct 19 22:38:01 2009 -0700| [ec3b5bfa4f1e5e53ab962db4341b9f78b9e50c86] | committer: Jason Garrett-Glaser 

Fix a typo in b-pyramid help
And an errant space in common/macroblock.c

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=ec3b5bfa4f1e5e53ab962db4341b9f78b9e50c86
---

 common/macroblock.c |    2 +-
 x264.c              |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/macroblock.c b/common/macroblock.c
index a195d50..ec26ff0 100644
--- a/common/macroblock.c
+++ b/common/macroblock.c
@@ -33,7 +33,7 @@ void x264_mb_predict_mv( x264_t *h, int i_list, int idx, int i_width, int16_t mv
     int16_t *mv_a  = h->mb.cache.mv[i_list][i8 - 1];
     int     i_refb = h->mb.cache.ref[i_list][i8 - 8];
     int16_t *mv_b  = h->mb.cache.mv[i_list][i8 - 8];
-    int     i_refc = h->mb.cache.ref[i_list][i8 - 8 + i_width ];
+    int     i_refc = h->mb.cache.ref[i_list][i8 - 8 + i_width];
     int16_t *mv_c  = h->mb.cache.mv[i_list][i8 - 8 + i_width];
 
     int i_count = 0;
diff --git a/x264.c b/x264.c
index 4ffa785..c1728f1 100644
--- a/x264.c
+++ b/x264.c
@@ -200,7 +200,7 @@ static void Help( x264_param_t *defaults, int longhelp )
     H2( "      --b-bias <integer>      Influences how often B-frames are used [%d]\n", defaults->i_bframe_bias );
     H1( "      --b-pyramid <string>    Keep some B-frames as references [%s]\n"
         "                                  - none: Disabled\n"
-        "                                  - strict: Strictly heirarchical pyramid\n"
+        "                                  - strict: Strictly hierarchical pyramid\n"
         "                                  - normal: Non-strict (not Blu-ray compatible)\n",
         strtable_lookup( x264_b_pyramid_names, defaults->i_bframe_pyramid ) );
     H1( "      --no-cabac              Disable CABAC\n" );



More information about the x264-devel mailing list