[x264-devel] commit: Fix redundant linebreaks in statsfile with weightp ( Anton Mitrofanov )
git at videolan.org
git at videolan.org
Mon Jan 10 22:00:56 CET 2011
x264 | branch: master | Anton Mitrofanov <BugMaster at narod.ru> | Sat Dec 18 08:29:18 2010 -0800| [131aa222f6c39dc9eecf145abb75c5b9a929579f] | committer: Jason Garrett-Glaser
Fix redundant linebreaks in statsfile with weightp
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=131aa222f6c39dc9eecf145abb75c5b9a929579f
---
encoder/ratecontrol.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/encoder/ratecontrol.c b/encoder/ratecontrol.c
index 162100a..c1896d1 100644
--- a/encoder/ratecontrol.c
+++ b/encoder/ratecontrol.c
@@ -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;
}
More information about the x264-devel
mailing list