libavformat/mpjpeg.c
0250738f
 /*
  * Multipart JPEG format
406792e7
  * Copyright (c) 2000, 2001, 2002, 2003 Fabrice Bellard
0250738f
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
0250738f
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
0250738f
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
0250738f
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0250738f
  */
 #include "avformat.h"
 
 /* Multipart JPEG */
 
 #define BOUNDARY_TAG "ffserver"
 
 static int mpjpeg_write_header(AVFormatContext *s)
 {
0c1a9eda
     uint8_t buf1[256];
0250738f
 
     snprintf(buf1, sizeof(buf1), "--%s\n", BOUNDARY_TAG);
77eb5504
     avio_write(s->pb, buf1, strlen(buf1));
b7f2fdde
     avio_flush(s->pb);
0250738f
     return 0;
 }
 
e928649b
 static int mpjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
0250738f
 {
0c1a9eda
     uint8_t buf1[256];
0250738f
 
     snprintf(buf1, sizeof(buf1), "Content-type: image/jpeg\n\n");
77eb5504
     avio_write(s->pb, buf1, strlen(buf1));
     avio_write(s->pb, pkt->data, pkt->size);
0250738f
 
     snprintf(buf1, sizeof(buf1), "\n--%s\n", BOUNDARY_TAG);
77eb5504
     avio_write(s->pb, buf1, strlen(buf1));
b7f2fdde
     avio_flush(s->pb);
0250738f
     return 0;
 }
 
 static int mpjpeg_write_trailer(AVFormatContext *s)
 {
     return 0;
 }
 
c6610a21
 AVOutputFormat ff_mpjpeg_muxer = {
0250738f
     "mpjpeg",
69acc88b
     NULL_IF_CONFIG_SMALL("MIME multipart JPEG format"),
0250738f
     "multipart/x-mixed-replace;boundary=" BOUNDARY_TAG,
     "mjpg",
     0,
     CODEC_ID_NONE,
     CODEC_ID_MJPEG,
     mpjpeg_write_header,
     mpjpeg_write_packet,
     mpjpeg_write_trailer,
 };