[x264-devel] commit: Add missing space to parameter SEI (Jason Garrett-Glaser )

git at videolan.org git at videolan.org
Mon Jan 10 22:00:56 CET 2011


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Wed Dec 15 13:00:14 2010 -0800| [96e54b2c647d6655cb7217a83d002b12cf2b4cb3] | committer: Jason Garrett-Glaser 

Add missing space to parameter SEI

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

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

diff --git a/common/common.c b/common/common.c
index 26b62a3..8425865 100644
--- a/common/common.c
+++ b/common/common.c
@@ -1207,7 +1207,7 @@ char *x264_param2string( x264_param_t *p, int b_res )
         s += sprintf( s, "%dx%d ", p->i_width, p->i_height );
         s += sprintf( s, "fps=%u/%u ", p->i_fps_num, p->i_fps_den );
         s += sprintf( s, "timebase=%u/%u ", p->i_timebase_num, p->i_timebase_den );
-        s += sprintf( s, "bitdepth=%d", BIT_DEPTH );
+        s += sprintf( s, "bitdepth=%d ", BIT_DEPTH );
     }
 
     s += sprintf( s, "cabac=%d", p->b_cabac );



More information about the x264-devel mailing list