2 * Multipart JPEG format
3 * Copyright (c) 2015 Luca Barbato
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avstring.h"
27 static int get_line(AVIOContext *pb, char *line, int line_size)
29 int i = ff_get_line(pb, line, line_size);
31 if (i > 1 && line[i - 2] == '\r')
43 static int split_tag_value(char **tag, char **value, char *line)
47 while (*p != '\0' && *p != ':')
50 return AVERROR_INVALIDDATA;
57 while (av_isspace(*p))
65 static int check_content_type(char *line)
68 int ret = split_tag_value(&tag, &value, line);
73 if (av_strcasecmp(tag, "Content-type") ||
74 av_strcasecmp(value, "image/jpeg"))
75 return AVERROR_INVALIDDATA;
80 static int mpjpeg_read_probe(AVProbeData *p)
83 char line[128] = { 0 };
86 if (p->buf_size < 2 || p->buf[0] != '-' || p->buf[1] != '-')
89 pb = avio_alloc_context(p->buf, p->buf_size, 0, NULL, NULL, NULL, NULL);
91 return AVERROR(ENOMEM);
93 while (!pb->eof_reached) {
94 ret = get_line(pb, line, sizeof(line));
98 ret = check_content_type(line);
100 ret = AVPROBE_SCORE_MAX;
110 static int mpjpeg_read_header(AVFormatContext *s)
113 char boundary[70 + 2 + 1];
114 int64_t pos = avio_tell(s->pb);
118 ret = get_line(s->pb, boundary, sizeof(boundary));
122 if (strncmp(boundary, "--", 2))
123 return AVERROR_INVALIDDATA;
125 st = avformat_new_stream(s, NULL);
127 return AVERROR(ENOMEM);
129 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
130 st->codec->codec_id = AV_CODEC_ID_MJPEG;
132 avpriv_set_pts_info(st, 60, 1, 25);
134 avio_seek(s->pb, pos, SEEK_SET);
139 static int parse_content_length(const char *value)
141 long int val = strtol(value, NULL, 10);
143 if (val == LONG_MIN || val == LONG_MAX)
144 return AVERROR(errno);
146 return AVERROR(ERANGE);
150 static int parse_multipart_header(AVFormatContext *s)
153 int found_content_type = 0;
156 // get the CRLF as empty string
157 ret = get_line(s->pb, line, sizeof(line));
161 /* some implementation do not provide the required
162 * initial CRLF (see rfc1341 7.2.1)
165 ret = get_line(s->pb, line, sizeof(line));
170 if (strncmp(line, "--", 2))
171 return AVERROR_INVALIDDATA;
173 while (!s->pb->eof_reached) {
176 ret = get_line(s->pb, line, sizeof(line));
183 ret = split_tag_value(&tag, &value, line);
187 if (!av_strcasecmp(tag, "Content-type")) {
188 if (av_strcasecmp(value, "image/jpeg")) {
189 av_log(s, AV_LOG_ERROR,
190 "Unexpected %s : %s\n",
192 return AVERROR_INVALIDDATA;
194 found_content_type = 1;
195 } else if (!av_strcasecmp(tag, "Content-Length")) {
196 size = parse_content_length(value);
202 if (!found_content_type || size < 0) {
203 return AVERROR_INVALIDDATA;
209 static int mpjpeg_read_packet(AVFormatContext *s, AVPacket *pkt)
212 int size = parse_multipart_header(s);
217 ret = av_get_packet(s->pb, pkt, size);
224 AVInputFormat ff_mpjpeg_demuxer = {
226 .long_name = NULL_IF_CONFIG_SMALL("MIME multipart JPEG"),
227 .mime_type = "multipart/x-mixed-replace",
228 .extensions = "mjpg",
229 .read_probe = mpjpeg_read_probe,
230 .read_header = mpjpeg_read_header,
231 .read_packet = mpjpeg_read_packet,