2 * MxPEG clip file demuxer
3 * Copyright (c) 2010 Anatoly Nenashev
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/channel_layout.h"
23 #include "libavutil/internal.h"
24 #include "libavutil/intreadwrite.h"
25 #include "libavcodec/mjpeg.h"
30 #define DEFAULT_PACKET_SIZE 1024
31 #define OVERREAD_SIZE 3
33 typedef struct MXGContext {
37 unsigned int buffer_size;
39 unsigned int cache_size;
42 static int mxg_read_header(AVFormatContext *s)
44 AVStream *video_st, *audio_st;
45 MXGContext *mxg = s->priv_data;
47 /* video parameters will be extracted from the compressed bitstream */
48 video_st = avformat_new_stream(s, NULL);
50 return AVERROR(ENOMEM);
51 video_st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
52 video_st->codec->codec_id = AV_CODEC_ID_MXPEG;
53 avpriv_set_pts_info(video_st, 64, 1, 1000000);
55 audio_st = avformat_new_stream(s, NULL);
57 return AVERROR(ENOMEM);
58 audio_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
59 audio_st->codec->codec_id = AV_CODEC_ID_PCM_ALAW;
60 audio_st->codec->channels = 1;
61 audio_st->codec->channel_layout = AV_CH_LAYOUT_MONO;
62 audio_st->codec->sample_rate = 8000;
63 audio_st->codec->bits_per_coded_sample = 8;
64 audio_st->codec->block_align = 1;
65 avpriv_set_pts_info(audio_st, 64, 1, 1000000);
67 mxg->soi_ptr = mxg->buffer_ptr = mxg->buffer = 0;
69 mxg->dts = AV_NOPTS_VALUE;
75 static uint8_t* mxg_find_startmarker(uint8_t *p, uint8_t *end)
77 for (; p < end - 3; p += 4) {
78 uint32_t x = *(uint32_t*)p;
80 if (x & (~(x+0x01010101)) & 0x80808080) {
83 } else if (p[1] == 0xff) {
85 } else if (p[2] == 0xff) {
87 } else if (p[3] == 0xff) {
93 for (; p < end; ++p) {
94 if (*p == 0xff) return p;
100 static int mxg_update_cache(AVFormatContext *s, unsigned int cache_size)
102 MXGContext *mxg = s->priv_data;
103 unsigned int current_pos = mxg->buffer_ptr - mxg->buffer;
104 unsigned int soi_pos;
107 /* reallocate internal buffer */
108 if (current_pos > current_pos + cache_size)
109 return AVERROR(ENOMEM);
110 if (mxg->soi_ptr) soi_pos = mxg->soi_ptr - mxg->buffer;
111 mxg->buffer = av_fast_realloc(mxg->buffer, &mxg->buffer_size,
112 current_pos + cache_size +
113 AV_INPUT_BUFFER_PADDING_SIZE);
115 return AVERROR(ENOMEM);
116 mxg->buffer_ptr = mxg->buffer + current_pos;
117 if (mxg->soi_ptr) mxg->soi_ptr = mxg->buffer + soi_pos;
120 ret = avio_read(s->pb, mxg->buffer_ptr + mxg->cache_size,
121 cache_size - mxg->cache_size);
125 mxg->cache_size += ret;
130 static int mxg_read_packet(AVFormatContext *s, AVPacket *pkt)
134 uint8_t *startmarker_ptr, *end, *search_end, marker;
135 MXGContext *mxg = s->priv_data;
137 while (!s->pb->eof_reached && !s->pb->error){
138 if (mxg->cache_size <= OVERREAD_SIZE) {
139 /* update internal buffer */
140 ret = mxg_update_cache(s, DEFAULT_PACKET_SIZE + OVERREAD_SIZE);
144 end = mxg->buffer_ptr + mxg->cache_size;
146 /* find start marker - 0xff */
147 if (mxg->cache_size > OVERREAD_SIZE) {
148 search_end = end - OVERREAD_SIZE;
149 startmarker_ptr = mxg_find_startmarker(mxg->buffer_ptr, search_end);
152 startmarker_ptr = mxg_find_startmarker(mxg->buffer_ptr, search_end);
153 if (startmarker_ptr >= search_end - 1 ||
154 *(startmarker_ptr + 1) != EOI) break;
157 if (startmarker_ptr != search_end) { /* start marker found */
158 marker = *(startmarker_ptr + 1);
159 mxg->buffer_ptr = startmarker_ptr + 2;
160 mxg->cache_size = end - mxg->buffer_ptr;
163 mxg->soi_ptr = startmarker_ptr;
164 } else if (marker == EOI) {
166 av_log(s, AV_LOG_WARNING, "Found EOI before SOI, skipping\n");
170 pkt->pts = pkt->dts = mxg->dts;
171 pkt->stream_index = 0;
173 pkt->size = mxg->buffer_ptr - mxg->soi_ptr;
174 pkt->data = mxg->soi_ptr;
176 if (mxg->soi_ptr - mxg->buffer > mxg->cache_size) {
177 if (mxg->cache_size > 0) {
178 memcpy(mxg->buffer, mxg->buffer_ptr, mxg->cache_size);
181 mxg->buffer_ptr = mxg->buffer;
186 } else if ( (SOF0 <= marker && marker <= SOF15) ||
187 (SOS <= marker && marker <= COM) ) {
188 /* all other markers that start marker segment also contain
189 length value (see specification for JPEG Annex B.1) */
190 size = AV_RB16(mxg->buffer_ptr);
192 return AVERROR(EINVAL);
194 if (mxg->cache_size < size) {
195 ret = mxg_update_cache(s, size);
198 startmarker_ptr = mxg->buffer_ptr - 2;
201 mxg->cache_size -= size;
204 mxg->buffer_ptr += size;
206 if (marker == APP13 && size >= 16) { /* audio data */
207 /* time (GMT) of first sample in usec since 1970, little-endian */
208 pkt->pts = pkt->dts = AV_RL64(startmarker_ptr + 8);
209 pkt->stream_index = 1;
211 pkt->size = size - 14;
212 pkt->data = startmarker_ptr + 16;
214 if (startmarker_ptr - mxg->buffer > mxg->cache_size) {
215 if (mxg->cache_size > 0) {
216 memcpy(mxg->buffer, mxg->buffer_ptr, mxg->cache_size);
218 mxg->buffer_ptr = mxg->buffer;
222 } else if (marker == COM && size >= 18 &&
223 !strncmp(startmarker_ptr + 4, "MXF", 3)) {
224 /* time (GMT) of video frame in usec since 1970, little-endian */
225 mxg->dts = AV_RL64(startmarker_ptr + 12);
229 /* start marker not found */
230 mxg->buffer_ptr = search_end;
231 mxg->cache_size = OVERREAD_SIZE;
238 static int mxg_close(struct AVFormatContext *s)
240 MXGContext *mxg = s->priv_data;
241 av_freep(&mxg->buffer);
245 AVInputFormat ff_mxg_demuxer = {
247 .long_name = NULL_IF_CONFIG_SMALL("MxPEG clip"),
248 .priv_data_size = sizeof(MXGContext),
249 .read_header = mxg_read_header,
250 .read_packet = mxg_read_packet,
251 .read_close = mxg_close,