3 * Copyright (c) 2011 Paul B Mahol
5 * This file is part of FFmpeg.
7 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * This is a demuxer for Loki SDL Motion JPEG files
34 typedef struct SMJPEGContext {
35 int audio_stream_index;
36 int video_stream_index;
39 static int smjpeg_probe(const AVProbeData *p)
41 if (!memcmp(p->buf, SMJPEG_MAGIC, 8))
42 return AVPROBE_SCORE_MAX;
46 static int smjpeg_read_header(AVFormatContext *s)
48 SMJPEGContext *sc = s->priv_data;
49 AVStream *ast = NULL, *vst = NULL;
50 AVIOContext *pb = s->pb;
51 uint32_t version, htype, hlength, duration;
54 sc->audio_stream_index =
55 sc->video_stream_index = -1;
57 avio_skip(pb, 8); // magic
58 version = avio_rb32(pb);
60 avpriv_request_sample(s, "Unknown version %"PRIu32, version);
62 duration = avio_rb32(pb); // in msec
64 while (!avio_feof(pb)) {
65 htype = avio_rl32(pb);
68 hlength = avio_rb32(pb);
69 if (!hlength || hlength > 512)
70 return AVERROR_INVALIDDATA;
71 comment = av_malloc(hlength + 1);
73 return AVERROR(ENOMEM);
74 if (avio_read(pb, comment, hlength) != hlength) {
76 av_log(s, AV_LOG_ERROR, "error when reading comment\n");
77 return AVERROR_INVALIDDATA;
80 av_dict_set(&s->metadata, "comment", comment,
81 AV_DICT_DONT_STRDUP_VAL);
85 avpriv_request_sample(s, "Multiple audio streams");
86 return AVERROR_PATCHWELCOME;
88 hlength = avio_rb32(pb);
90 return AVERROR_INVALIDDATA;
91 ast = avformat_new_stream(s, 0);
93 return AVERROR(ENOMEM);
94 ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
95 ast->codecpar->sample_rate = avio_rb16(pb);
96 ast->codecpar->bits_per_coded_sample = avio_r8(pb);
97 ast->codecpar->channels = avio_r8(pb);
98 ast->codecpar->codec_tag = avio_rl32(pb);
99 ast->codecpar->codec_id = ff_codec_get_id(ff_codec_smjpeg_audio_tags,
100 ast->codecpar->codec_tag);
101 ast->duration = duration;
102 sc->audio_stream_index = ast->index;
103 avpriv_set_pts_info(ast, 32, 1, 1000);
104 avio_skip(pb, hlength - 8);
108 avpriv_request_sample(s, "Multiple video streams");
109 return AVERROR_INVALIDDATA;
111 hlength = avio_rb32(pb);
113 return AVERROR_INVALIDDATA;
114 vst = avformat_new_stream(s, 0);
116 return AVERROR(ENOMEM);
117 vst->nb_frames = avio_rb32(pb);
118 vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
119 vst->codecpar->width = avio_rb16(pb);
120 vst->codecpar->height = avio_rb16(pb);
121 vst->codecpar->codec_tag = avio_rl32(pb);
122 vst->codecpar->codec_id = ff_codec_get_id(ff_codec_smjpeg_video_tags,
123 vst->codecpar->codec_tag);
124 vst->duration = duration;
125 sc->video_stream_index = vst->index;
126 avpriv_set_pts_info(vst, 32, 1, 1000);
127 avio_skip(pb, hlength - 12);
132 av_log(s, AV_LOG_ERROR, "unknown header %"PRIx32"\n", htype);
133 return AVERROR_INVALIDDATA;
140 static int smjpeg_read_packet(AVFormatContext *s, AVPacket *pkt)
142 SMJPEGContext *sc = s->priv_data;
143 uint32_t dtype, size, timestamp;
147 if (avio_feof(s->pb))
149 pos = avio_tell(s->pb);
150 dtype = avio_rl32(s->pb);
153 if (sc->audio_stream_index < 0)
154 return AVERROR_INVALIDDATA;
155 timestamp = avio_rb32(s->pb);
156 size = avio_rb32(s->pb);
157 ret = av_get_packet(s->pb, pkt, size);
158 pkt->stream_index = sc->audio_stream_index;
159 pkt->pts = timestamp;
163 if (sc->video_stream_index < 0)
164 return AVERROR_INVALIDDATA;
165 timestamp = avio_rb32(s->pb);
166 size = avio_rb32(s->pb);
167 ret = av_get_packet(s->pb, pkt, size);
168 pkt->stream_index = sc->video_stream_index;
169 pkt->pts = timestamp;
176 av_log(s, AV_LOG_ERROR, "unknown chunk %"PRIx32"\n", dtype);
177 ret = AVERROR_INVALIDDATA;
183 AVInputFormat ff_smjpeg_demuxer = {
185 .long_name = NULL_IF_CONFIG_SMALL("Loki SDL MJPEG"),
186 .priv_data_size = sizeof(SMJPEGContext),
187 .read_probe = smjpeg_probe,
188 .read_header = smjpeg_read_header,
189 .read_packet = smjpeg_read_packet,
190 .extensions = "mjpg",
191 .flags = AVFMT_GENERIC_INDEX,