Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven M. Schultz <sms@2bsd.com>2003-09-25 12:38:16 +0400
committerMichael Niedermayer <michaelni@gmx.at>2003-09-25 12:38:16 +0400
commita63d49334e02917d9a29365535056ca54e30b55d (patch)
treeb8b26c25dd617335b61e4b0c520b683b7773e2c4 /libavformat/yuv4mpeg.c
parent34f60ee61bff1f693ad89ff1daa9934e5f6f90fa (diff)
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
Diffstat (limited to 'libavformat/yuv4mpeg.c')
-rw-r--r--libavformat/yuv4mpeg.c2
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;