This is more correct.
---
libavformat/mpjpeg.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavformat/mpjpeg.c b/libavformat/mpjpeg.c
index 1a78c32274..3b78cab225 100644
--- a/libavformat/mpjpeg.c
+++ b/libavformat/mpjpeg.c
@@ -26,7 +26,7 @@
static int mpjpeg_write_header(AVFormatContext *s)
{
- avio_printf(s->pb, "--%s\n", BOUNDARY_TAG);
+ avio_printf(s->pb, "--%s\r\n", BOUNDARY_TAG);
avio_flush(s->pb);
return 0;
}
@@ -34,12 +34,12 @@ static int mpjpeg_write_header(AVFormatContext *s)
static int mpjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
{
avio_printf(s->pb,
- "Content-length: %i\n"
- "Content-type: image/jpeg\n\n",
+ "Content-length: %i\r\n"
+ "Content-type: image/jpeg\r\n\r\n",
pkt->size);
avio_write(s->pb, pkt->data, pkt->size);
- avio_printf(s->pb, "\n--%s\n", BOUNDARY_TAG);
+ avio_printf(s->pb, "\r\n--%s\r\n", BOUNDARY_TAG);
return 0;
}
--
2.11.0 (Apple Git-81)
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel