mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avformat/yuv4mpegenc: use avio_printf()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
e658b1036c
commit
5233f2534c
@ -143,7 +143,6 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
int width, height, h_chroma_shift, v_chroma_shift;
|
int width, height, h_chroma_shift, v_chroma_shift;
|
||||||
int i;
|
int i;
|
||||||
char buf2[Y4M_LINE_MAX + 1];
|
char buf2[Y4M_LINE_MAX + 1];
|
||||||
char buf1[20];
|
|
||||||
uint8_t *ptr, *ptr1, *ptr2;
|
uint8_t *ptr, *ptr1, *ptr2;
|
||||||
|
|
||||||
memcpy(&picture_tmp, pkt->data, sizeof(AVPicture));
|
memcpy(&picture_tmp, pkt->data, sizeof(AVPicture));
|
||||||
@ -163,8 +162,7 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
|
|
||||||
/* construct frame header */
|
/* construct frame header */
|
||||||
|
|
||||||
snprintf(buf1, sizeof(buf1), "%s\n", Y4M_FRAME_MAGIC);
|
avio_printf(s->pb, "%s\n", Y4M_FRAME_MAGIC);
|
||||||
avio_write(pb, buf1, strlen(buf1));
|
|
||||||
|
|
||||||
width = st->codec->width;
|
width = st->codec->width;
|
||||||
height = st->codec->height;
|
height = st->codec->height;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user