mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
mpjpeg: Simplify using avio_printf
This commit is contained in:
parent
f046c3b5ac
commit
d09b4cce21
@ -26,24 +26,17 @@
|
||||
|
||||
static int mpjpeg_write_header(AVFormatContext *s)
|
||||
{
|
||||
uint8_t buf1[256];
|
||||
|
||||
snprintf(buf1, sizeof(buf1), "--%s\n", BOUNDARY_TAG);
|
||||
avio_write(s->pb, buf1, strlen(buf1));
|
||||
avio_printf(s->pb, "--%s\n", BOUNDARY_TAG);
|
||||
avio_flush(s->pb);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mpjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
{
|
||||
uint8_t buf1[256];
|
||||
|
||||
snprintf(buf1, sizeof(buf1), "Content-type: image/jpeg\n\n");
|
||||
avio_write(s->pb, buf1, strlen(buf1));
|
||||
avio_printf(s->pb, "Content-type: image/jpeg\n\n");
|
||||
avio_write(s->pb, pkt->data, pkt->size);
|
||||
|
||||
snprintf(buf1, sizeof(buf1), "\n--%s\n", BOUNDARY_TAG);
|
||||
avio_write(s->pb, buf1, strlen(buf1));
|
||||
avio_printf(s->pb, "\n--%s\n", BOUNDARY_TAG);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user