2 * Flash Compatible Streaming Format demuxer
3 * Copyright (c) 2000 Fabrice Bellard
4 * Copyright (c) 2003 Tinic Uro
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "libavutil/avassert.h"
24 #include "libavutil/channel_layout.h"
25 #include "libavutil/imgutils.h"
26 #include "libavutil/intreadwrite.h"
27 #include "libavcodec/get_bits.h"
30 static const AVCodecTag swf_audio_codec_tags[] = {
31 { AV_CODEC_ID_PCM_S16LE, 0x00 },
32 { AV_CODEC_ID_ADPCM_SWF, 0x01 },
33 { AV_CODEC_ID_MP3, 0x02 },
34 { AV_CODEC_ID_PCM_S16LE, 0x03 },
35 // { AV_CODEC_ID_NELLYMOSER, 0x06 },
36 { AV_CODEC_ID_NONE, 0 },
39 static int get_swf_tag(AVIOContext *pb, int *len_ptr)
57 static int swf_probe(AVProbeData *p)
60 int len, xmin, xmax, ymin, ymax;
65 /* check file header */
66 if ( AV_RB24(p->buf) != AV_RB24("CWS")
67 && AV_RB24(p->buf) != AV_RB24("FWS"))
70 init_get_bits8(&gb, p->buf + 3, p->buf_size - 3);
73 len = get_bits(&gb, 5);
76 xmin = get_bits_long(&gb, len);
77 xmax = get_bits_long(&gb, len);
78 ymin = get_bits_long(&gb, len);
79 ymax = get_bits_long(&gb, len);
80 if (xmin || ymin || !xmax || !ymax)
83 if (p->buf[3] >= 20 || xmax < 16 || ymax < 16)
84 return AVPROBE_SCORE_MAX / 4;
86 return AVPROBE_SCORE_MAX;
90 static int zlib_refill(void *opaque, uint8_t *buf, int buf_size)
92 AVFormatContext *s = opaque;
93 SWFContext *swf = s->priv_data;
94 z_stream *z = &swf->zstream;
99 int n = avio_read(s->pb, swf->zbuf_in, ZBUF_SIZE);
102 z->next_in = swf->zbuf_in;
107 z->avail_out = buf_size;
109 ret = inflate(z, Z_NO_FLUSH);
111 return AVERROR(EINVAL);
112 if (ret == Z_STREAM_END)
115 if (buf_size - z->avail_out == 0)
118 return buf_size - z->avail_out;
122 static int swf_read_header(AVFormatContext *s)
124 SWFContext *swf = s->priv_data;
125 AVIOContext *pb = s->pb;
128 tag = avio_rb32(pb) & 0xffffff00;
131 if (tag == MKBETAG('C', 'W', 'S', 0)) {
132 av_log(s, AV_LOG_INFO, "SWF compressed file detected\n");
134 swf->zbuf_in = av_malloc(ZBUF_SIZE);
135 swf->zbuf_out = av_malloc(ZBUF_SIZE);
136 swf->zpb = avio_alloc_context(swf->zbuf_out, ZBUF_SIZE, 0, s,
137 zlib_refill, NULL, NULL);
138 if (!swf->zbuf_in || !swf->zbuf_out || !swf->zpb)
139 return AVERROR(ENOMEM);
140 swf->zpb->seekable = 0;
141 if (inflateInit(&swf->zstream) != Z_OK) {
142 av_log(s, AV_LOG_ERROR, "Unable to init zlib context\n");
143 return AVERROR(EINVAL);
147 av_log(s, AV_LOG_ERROR, "zlib support is required to read SWF compressed files\n");
150 } else if (tag != MKBETAG('F', 'W', 'S', 0))
152 /* skip rectangle size */
153 nbits = avio_r8(pb) >> 3;
154 len = (4 * nbits - 3 + 7) / 8;
156 swf->frame_rate = avio_rl16(pb); /* 8.8 fixed */
157 avio_rl16(pb); /* frame count */
159 swf->samples_per_frame = 0;
160 s->ctx_flags |= AVFMTCTX_NOHEADER;
164 static AVStream *create_new_audio_stream(AVFormatContext *s, int id, int info)
166 int sample_rate_code, sample_size_code;
167 AVStream *ast = avformat_new_stream(s, NULL);
172 ast->codec->channels = 2;
173 ast->codec->channel_layout = AV_CH_LAYOUT_STEREO;
175 ast->codec->channels = 1;
176 ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
178 ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
179 ast->codec->codec_id = ff_codec_get_id(swf_audio_codec_tags, info>>4 & 15);
180 ast->need_parsing = AVSTREAM_PARSE_FULL;
181 sample_rate_code = info>>2 & 3;
182 sample_size_code = info>>1 & 1;
183 if (!sample_size_code && ast->codec->codec_id == AV_CODEC_ID_PCM_S16LE)
184 ast->codec->codec_id = AV_CODEC_ID_PCM_U8;
185 ast->codec->sample_rate = 44100 >> (3 - sample_rate_code);
186 avpriv_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
190 static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
192 SWFContext *swf = s->priv_data;
193 AVIOContext *pb = s->pb;
194 AVStream *vst = NULL, *ast = NULL, *st = 0;
195 int tag, len, i, frame, v, res;
203 uint64_t pos = avio_tell(pb);
204 tag = get_swf_tag(pb, &len);
208 av_log(s, AV_LOG_ERROR, "invalid tag length: %d\n", len);
209 return AVERROR_INVALIDDATA;
211 if (tag == TAG_VIDEOSTREAM) {
212 int ch_id = avio_rl16(pb);
215 for (i=0; i<s->nb_streams; i++) {
217 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->id == ch_id)
226 vst = avformat_new_stream(s, NULL);
228 return AVERROR(ENOMEM);
230 vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
231 vst->codec->codec_id = ff_codec_get_id(ff_swf_codec_tags, avio_r8(pb));
232 avpriv_set_pts_info(vst, 16, 256, swf->frame_rate);
234 } else if (tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2) {
235 /* streaming found */
237 for (i=0; i<s->nb_streams; i++) {
239 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == -1)
245 swf->samples_per_frame = avio_rl16(pb);
246 ast = create_new_audio_stream(s, -1, v); /* -1 to avoid clash with video stream ch_id */
248 return AVERROR(ENOMEM);
250 } else if (tag == TAG_DEFINESOUND) {
252 int ch_id = avio_rl16(pb);
254 for (i=0; i<s->nb_streams; i++) {
256 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == ch_id)
260 // FIXME: The entire audio stream is stored in a single chunk/tag. Normally,
261 // these are smaller audio streams in DEFINESOUND tags, but it's technically
262 // possible they could be huge. Break it up into multiple packets if it's big.
264 ast = create_new_audio_stream(s, ch_id, v);
266 return AVERROR(ENOMEM);
267 ast->duration = avio_rl32(pb); // number of samples
268 if (((v>>4) & 15) == 2) { // MP3 sound data record
269 ast->skip_samples = avio_rl16(pb);
273 if ((res = av_get_packet(pb, pkt, len)) < 0)
276 pkt->stream_index = ast->index;
278 } else if (tag == TAG_VIDEOFRAME) {
279 int ch_id = avio_rl16(pb);
281 for(i=0; i<s->nb_streams; i++) {
283 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->id == ch_id) {
284 frame = avio_rl16(pb);
288 if ((res = av_get_packet(pb, pkt, len)) < 0)
292 pkt->stream_index = st->index;
296 } else if (tag == TAG_DEFINEBITSLOSSLESS || tag == TAG_DEFINEBITSLOSSLESS2) {
299 uint8_t *buf = NULL, *zbuf = NULL, *pal;
300 uint32_t colormap[AVPALETTE_COUNT] = {0};
301 const int alpha_bmp = tag == TAG_DEFINEBITSLOSSLESS2;
302 const int colormapbpp = 3 + alpha_bmp;
303 int linesize, colormapsize = 0;
305 const int ch_id = avio_rl16(pb);
306 const int bmp_fmt = avio_r8(pb);
307 const int width = avio_rl16(pb);
308 const int height = avio_rl16(pb);
316 colormapsize = avio_r8(pb) + 1;
320 linesize = width * 2;
322 case 5: // RGB24 (0RGB)
323 linesize = width * 4;
326 av_log(s, AV_LOG_ERROR, "invalid bitmap format %d, skipped\n", bmp_fmt);
327 goto bitmap_end_skip;
330 linesize = FFALIGN(linesize, 4);
332 if (av_image_check_size(width, height, 0, s) < 0 ||
333 linesize >= INT_MAX / height ||
334 linesize * height >= INT_MAX - colormapsize * colormapbpp) {
335 av_log(s, AV_LOG_ERROR, "invalid frame size %dx%d\n", width, height);
336 goto bitmap_end_skip;
339 out_len = colormapsize * colormapbpp + linesize * height;
341 av_dlog(s, "bitmap: ch=%d fmt=%d %dx%d (linesize=%d) len=%d->%ld pal=%d\n",
342 ch_id, bmp_fmt, width, height, linesize, len, out_len, colormapsize);
344 zbuf = av_malloc(len);
345 buf = av_malloc(out_len);
347 res = AVERROR(ENOMEM);
351 len = avio_read(pb, zbuf, len);
352 if (len < 0 || (res = uncompress(buf, &out_len, zbuf, len)) != Z_OK) {
353 av_log(s, AV_LOG_WARNING, "Failed to uncompress one bitmap\n");
354 goto bitmap_end_skip;
357 for (i = 0; i < s->nb_streams; i++) {
359 if (st->codec->codec_id == AV_CODEC_ID_RAWVIDEO && st->id == -3)
362 if (i == s->nb_streams) {
363 vst = avformat_new_stream(s, NULL);
365 res = AVERROR(ENOMEM);
368 vst->id = -3; /* -3 to avoid clash with video stream and audio stream */
369 vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
370 vst->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
371 avpriv_set_pts_info(vst, 64, 256, swf->frame_rate);
375 if ((res = av_new_packet(pkt, out_len - colormapsize * colormapbpp)) < 0)
377 if (!st->codec->width && !st->codec->height) {
378 st->codec->width = width;
379 st->codec->height = height;
381 ff_add_param_change(pkt, 0, 0, 0, width, height);
384 pkt->stream_index = st->index;
388 pix_fmt = AV_PIX_FMT_PAL8;
389 for (i = 0; i < colormapsize; i++)
390 if (alpha_bmp) colormap[i] = buf[3]<<24 | AV_RB24(buf + 4*i);
391 else colormap[i] = 0xffU <<24 | AV_RB24(buf + 3*i);
392 pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
394 res = AVERROR(ENOMEM);
397 memcpy(pal, colormap, AVPALETTE_SIZE);
400 pix_fmt = AV_PIX_FMT_RGB555;
403 pix_fmt = alpha_bmp ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB;
408 if (st->codec->pix_fmt != AV_PIX_FMT_NONE && st->codec->pix_fmt != pix_fmt) {
409 av_log(s, AV_LOG_ERROR, "pixel format change unsupported\n");
410 res = AVERROR_PATCHWELCOME;
413 st->codec->pix_fmt = pix_fmt;
415 if (linesize * height > pkt->size) {
416 res = AVERROR_INVALIDDATA;
419 memcpy(pkt->data, buf + colormapsize*colormapbpp, linesize * height);
431 av_log(s, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
433 } else if (tag == TAG_STREAMBLOCK) {
434 for (i = 0; i < s->nb_streams; i++) {
436 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == -1) {
437 if (st->codec->codec_id == AV_CODEC_ID_MP3) {
442 if ((res = av_get_packet(pb, pkt, len)) < 0)
444 } else { // ADPCM, PCM
447 if ((res = av_get_packet(pb, pkt, len)) < 0)
451 pkt->stream_index = st->index;
455 } else if (tag == TAG_JPEG2) {
456 for (i=0; i<s->nb_streams; i++) {
458 if (st->codec->codec_id == AV_CODEC_ID_MJPEG && st->id == -2)
461 if (i == s->nb_streams) {
462 vst = avformat_new_stream(s, NULL);
464 return AVERROR(ENOMEM);
465 vst->id = -2; /* -2 to avoid clash with video stream and audio stream */
466 vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
467 vst->codec->codec_id = AV_CODEC_ID_MJPEG;
468 avpriv_set_pts_info(vst, 64, 256, swf->frame_rate);
471 avio_rl16(pb); /* BITMAP_ID */
475 if ((res = av_new_packet(pkt, len)) < 0)
477 if (avio_read(pb, pkt->data, 4) != 4) {
479 return AVERROR_INVALIDDATA;
481 if (AV_RB32(pkt->data) == 0xffd8ffd9 ||
482 AV_RB32(pkt->data) == 0xffd9ffd8) {
483 /* old SWF files containing SOI/EOI as data start */
484 /* files created by swink have reversed tag */
486 memset(pkt->data+pkt->size, 0, 4);
487 res = avio_read(pb, pkt->data, pkt->size);
489 res = avio_read(pb, pkt->data + 4, pkt->size - 4);
493 if (res != pkt->size) {
498 av_shrink_packet(pkt, res);
502 pkt->stream_index = st->index;
505 av_log(s, AV_LOG_DEBUG, "Unknown tag: %d\n", tag);
509 av_log(s, AV_LOG_WARNING, "Cliping len %d\n", len);
516 static av_cold int swf_read_close(AVFormatContext *avctx)
518 SWFContext *s = avctx->priv_data;
519 inflateEnd(&s->zstream);
520 av_freep(&s->zbuf_in);
521 av_freep(&s->zbuf_out);
527 AVInputFormat ff_swf_demuxer = {
529 .long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash)"),
530 .priv_data_size = sizeof(SWFContext),
531 .read_probe = swf_probe,
532 .read_header = swf_read_header,
533 .read_packet = swf_read_packet,
535 .read_close = swf_read_close,