diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-07-03 18:36:29 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-07-03 18:43:21 +0000 |
commit | 5233f2534ca585614e413e78cb798bd079d4b26d (patch) | |
tree | 4e0e7990cce03070871e569ab070faeb4c236aa0 | |
parent | e658b1036c0b9e0eedf41eb3b4eae569952ec575 (diff) | |
download | ffmpeg-5233f2534ca585614e413e78cb798bd079d4b26d.tar.gz |
avformat/yuv4mpegenc: use avio_printf()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavformat/yuv4mpegenc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/yuv4mpegenc.c b/libavformat/yuv4mpegenc.c index cc954fcc63..c15ea1de0c 100644 --- a/libavformat/yuv4mpegenc.c +++ b/libavformat/yuv4mpegenc.c @@ -143,7 +143,6 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt) int width, height, h_chroma_shift, v_chroma_shift; int i; char buf2[Y4M_LINE_MAX + 1]; - char buf1[20]; uint8_t *ptr, *ptr1, *ptr2; memcpy(&picture_tmp, pkt->data, sizeof(AVPicture)); @@ -163,8 +162,7 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt) /* construct frame header */ - snprintf(buf1, sizeof(buf1), "%s\n", Y4M_FRAME_MAGIC); - avio_write(pb, buf1, strlen(buf1)); + avio_printf(s->pb, "%s\n", Y4M_FRAME_MAGIC); width = st->codec->width; height = st->codec->height; |