mpjpeg: Write the Content-length

pull/140/head
Frank Heckenbach 10 years ago committed by Luca Barbato
parent d09b4cce21
commit 161a301d44
  1. 5
      libavformat/mpjpeg.c

@ -33,7 +33,10 @@ static int mpjpeg_write_header(AVFormatContext *s)
static int mpjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
{
avio_printf(s->pb, "Content-type: image/jpeg\n\n");
avio_printf(s->pb,
"Content-length: %i\n"
"Content-type: image/jpeg\n\n",
pkt->size);
avio_write(s->pb, pkt->data, pkt->size);
avio_printf(s->pb, "\n--%s\n", BOUNDARY_TAG);

Loading…
Cancel
Save