]> git.sesse.net Git - x264/commitdiff
Fix redundant linebreaks in statsfile with weightp
authorAnton Mitrofanov <BugMaster@narod.ru>
Sat, 18 Dec 2010 16:29:18 +0000 (08:29 -0800)
committerFiona Glaser <fiona@x264.com>
Mon, 10 Jan 2011 19:38:41 +0000 (11:38 -0800)
encoder/ratecontrol.c

index 495a930992b672171ba67b2bbba9e32a330c32ac..dcdb538f61651e9d218bb1cecc378e84781dd5af 100644 (file)
@@ -1566,12 +1566,12 @@ int x264_ratecontrol_end( x264_t *h, int bits, int *filler )
                 goto fail;
             if( h->sh.weight[0][1].weightfn || h->sh.weight[0][2].weightfn )
             {
-                if( fprintf( rc->p_stat_file_out, ",%d,%d,%d,%d,%d\n",
+                if( fprintf( rc->p_stat_file_out, ",%d,%d,%d,%d,%d ",
                              h->sh.weight[0][1].i_denom, h->sh.weight[0][1].i_scale, h->sh.weight[0][1].i_offset,
                              h->sh.weight[0][2].i_scale, h->sh.weight[0][2].i_offset ) < 0 )
                     goto fail;
             }
-            else if( fprintf( rc->p_stat_file_out, "\n" ) < 0 )
+            else if( fprintf( rc->p_stat_file_out, " " ) < 0 )
                 goto fail;
         }