2003-02-02 19:18:09 +00:00
|
|
|
/*
|
|
|
|
* Multipart JPEG format
|
|
|
|
* Copyright (c) 2000, 2001, 2002, 2003 Fabrice Bellard.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-02-02 19:18:09 +00:00
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
|
|
|
|
|
|
|
/* Multipart JPEG */
|
|
|
|
|
|
|
|
#define BOUNDARY_TAG "ffserver"
|
|
|
|
|
|
|
|
static int mpjpeg_write_header(AVFormatContext *s)
|
|
|
|
{
|
2003-02-11 16:35:48 +00:00
|
|
|
uint8_t buf1[256];
|
2003-02-02 19:18:09 +00:00
|
|
|
|
|
|
|
snprintf(buf1, sizeof(buf1), "--%s\n", BOUNDARY_TAG);
|
|
|
|
put_buffer(&s->pb, buf1, strlen(buf1));
|
|
|
|
put_flush_packet(&s->pb);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-29 02:06:32 +00:00
|
|
|
static int mpjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
|
2003-02-02 19:18:09 +00:00
|
|
|
{
|
2003-02-11 16:35:48 +00:00
|
|
|
uint8_t buf1[256];
|
2003-02-02 19:18:09 +00:00
|
|
|
|
|
|
|
snprintf(buf1, sizeof(buf1), "Content-type: image/jpeg\n\n");
|
|
|
|
put_buffer(&s->pb, buf1, strlen(buf1));
|
2004-05-29 02:06:32 +00:00
|
|
|
put_buffer(&s->pb, pkt->data, pkt->size);
|
2003-02-02 19:18:09 +00:00
|
|
|
|
|
|
|
snprintf(buf1, sizeof(buf1), "\n--%s\n", BOUNDARY_TAG);
|
|
|
|
put_buffer(&s->pb, buf1, strlen(buf1));
|
|
|
|
put_flush_packet(&s->pb);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mpjpeg_write_trailer(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
AVOutputFormat mpjpeg_muxer = {
|
2003-02-02 19:18:09 +00:00
|
|
|
"mpjpeg",
|
|
|
|
"Mime multipart JPEG format",
|
|
|
|
"multipart/x-mixed-replace;boundary=" BOUNDARY_TAG,
|
|
|
|
"mjpg",
|
|
|
|
0,
|
|
|
|
CODEC_ID_NONE,
|
|
|
|
CODEC_ID_MJPEG,
|
|
|
|
mpjpeg_write_header,
|
|
|
|
mpjpeg_write_packet,
|
|
|
|
mpjpeg_write_trailer,
|
|
|
|
};
|