]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mpjpeg.c
mp3enc: write trailing padding
[ffmpeg] / libavformat / mpjpeg.c
index 79cc272e27cbd6fa5f363837fee1d05fe4dde66b..1a78c32274c85866b16692e7219761c330ce5b0d 100644 (file)
 
 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-length: %i\n"
+                "Content-type: image/jpeg\n\n",
+                pkt->size);
     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_flush(s->pb);
+    avio_printf(s->pb, "\n--%s\n", BOUNDARY_TAG);
     return 0;
 }
 
@@ -55,12 +50,13 @@ static int mpjpeg_write_trailer(AVFormatContext *s)
 
 AVOutputFormat ff_mpjpeg_muxer = {
     .name              = "mpjpeg",
-    .long_name         = NULL_IF_CONFIG_SMALL("MIME multipart JPEG format"),
+    .long_name         = NULL_IF_CONFIG_SMALL("MIME multipart JPEG"),
     .mime_type         = "multipart/x-mixed-replace;boundary=" BOUNDARY_TAG,
     .extensions        = "mjpg",
-    .audio_codec       = CODEC_ID_NONE,
-    .video_codec       = CODEC_ID_MJPEG,
+    .audio_codec       = AV_CODEC_ID_NONE,
+    .video_codec       = AV_CODEC_ID_MJPEG,
     .write_header      = mpjpeg_write_header,
     .write_packet      = mpjpeg_write_packet,
     .write_trailer     = mpjpeg_write_trailer,
+    .flags             = AVFMT_NOTIMESTAMPS,
 };