diff options
author | Steven M. Schultz <sms@2bsd.com> | 2003-09-25 08:38:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-09-25 08:38:16 +0000 |
commit | a63d49334e02917d9a29365535056ca54e30b55d (patch) | |
tree | b8b26c25dd617335b61e4b0c520b683b7773e2c4 | |
parent | 34f60ee61bff1f693ad89ff1daa9934e5f6f90fa (diff) | |
download | ffmpeg-a63d49334e02917d9a29365535056ca54e30b55d.tar.gz |
yuv4mpeg.c extra space patch by ("Steven M. Schultz" <sms at 2BSD dot COM>)
Originally committed as revision 2301 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/yuv4mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/yuv4mpeg.c b/libavformat/yuv4mpeg.c index 1c6e74b071..cc39ff8b8e 100644 --- a/libavformat/yuv4mpeg.c +++ b/libavformat/yuv4mpeg.c @@ -126,7 +126,7 @@ static int yuv4_write_packet(AVFormatContext *s, int stream_index, picture = (AVPicture *)buf; /* construct frame header */ - m = snprintf(buf1, sizeof(buf1), "%s \n", Y4M_FRAME_MAGIC); + m = snprintf(buf1, sizeof(buf1), "%s\n", Y4M_FRAME_MAGIC); put_buffer(pb, buf1, strlen(buf1)); width = st->codec.width; |