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/internal.h"
27 #include "libavutil/intreadwrite.h"
28 #include "libavcodec/get_bits.h"
31 static const AVCodecTag swf_audio_codec_tags[] = {
32 { AV_CODEC_ID_PCM_S16LE, 0x00 },
33 { AV_CODEC_ID_ADPCM_SWF, 0x01 },
34 { AV_CODEC_ID_MP3, 0x02 },
35 { AV_CODEC_ID_PCM_S16LE, 0x03 },
36 // { AV_CODEC_ID_NELLYMOSER, 0x06 },
37 { AV_CODEC_ID_NONE, 0 },
40 static int get_swf_tag(AVIOContext *pb, int *len_ptr)
58 static int swf_probe(AVProbeData *p)
61 int len, xmin, xmax, ymin, ymax;
66 /* check file header */
67 if ( AV_RB24(p->buf) != AV_RB24("CWS")
68 && AV_RB24(p->buf) != AV_RB24("FWS"))
71 if ( AV_RB24(p->buf) == AV_RB24("CWS")
73 return AVPROBE_SCORE_MAX / 4 + 1;
75 if (init_get_bits8(&gb, p->buf + 3, p->buf_size - 3) < 0)
79 len = get_bits(&gb, 5);
82 xmin = get_bits_long(&gb, len);
83 xmax = get_bits_long(&gb, len);
84 ymin = get_bits_long(&gb, len);
85 ymax = get_bits_long(&gb, len);
86 if (xmin || ymin || !xmax || !ymax)
89 if (p->buf[3] >= 20 || xmax < 16 || ymax < 16)
90 return AVPROBE_SCORE_MAX / 4;
92 return AVPROBE_SCORE_MAX;
96 static int zlib_refill(void *opaque, uint8_t *buf, int buf_size)
98 AVFormatContext *s = opaque;
99 SWFContext *swf = s->priv_data;
100 z_stream *z = &swf->zstream;
105 int n = avio_read(s->pb, swf->zbuf_in, ZBUF_SIZE);
108 z->next_in = swf->zbuf_in;
113 z->avail_out = buf_size;
115 ret = inflate(z, Z_NO_FLUSH);
117 return AVERROR(EINVAL);
118 if (ret == Z_STREAM_END)
121 if (buf_size - z->avail_out == 0)
124 return buf_size - z->avail_out;
128 static int swf_read_header(AVFormatContext *s)
130 SWFContext *swf = s->priv_data;
131 AVIOContext *pb = s->pb;
134 tag = avio_rb32(pb) & 0xffffff00;
137 if (tag == MKBETAG('C', 'W', 'S', 0)) {
138 av_log(s, AV_LOG_INFO, "SWF compressed file detected\n");
140 swf->zbuf_in = av_malloc(ZBUF_SIZE);
141 swf->zbuf_out = av_malloc(ZBUF_SIZE);
142 swf->zpb = avio_alloc_context(swf->zbuf_out, ZBUF_SIZE, 0, s,
143 zlib_refill, NULL, NULL);
144 if (!swf->zbuf_in || !swf->zbuf_out || !swf->zpb)
145 return AVERROR(ENOMEM);
146 swf->zpb->seekable = 0;
147 if (inflateInit(&swf->zstream) != Z_OK) {
148 av_log(s, AV_LOG_ERROR, "Unable to init zlib context\n");
149 return AVERROR(EINVAL);
153 av_log(s, AV_LOG_ERROR, "zlib support is required to read SWF compressed files\n");
156 } else if (tag != MKBETAG('F', 'W', 'S', 0))
158 /* skip rectangle size */
159 nbits = avio_r8(pb) >> 3;
160 len = (4 * nbits - 3 + 7) / 8;
162 swf->frame_rate = avio_rl16(pb); /* 8.8 fixed */
163 avio_rl16(pb); /* frame count */
165 swf->samples_per_frame = 0;
166 s->ctx_flags |= AVFMTCTX_NOHEADER;
170 static AVStream *create_new_audio_stream(AVFormatContext *s, int id, int info)
172 int sample_rate_code, sample_size_code;
173 AVStream *ast = avformat_new_stream(s, NULL);
178 ast->codec->channels = 2;
179 ast->codec->channel_layout = AV_CH_LAYOUT_STEREO;
181 ast->codec->channels = 1;
182 ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
184 ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
185 ast->codec->codec_id = ff_codec_get_id(swf_audio_codec_tags, info>>4 & 15);
186 ast->need_parsing = AVSTREAM_PARSE_FULL;
187 sample_rate_code = info>>2 & 3;
188 sample_size_code = info>>1 & 1;
189 if (!sample_size_code && ast->codec->codec_id == AV_CODEC_ID_PCM_S16LE)
190 ast->codec->codec_id = AV_CODEC_ID_PCM_U8;
191 ast->codec->sample_rate = 44100 >> (3 - sample_rate_code);
192 avpriv_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
196 static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
198 SWFContext *swf = s->priv_data;
199 AVIOContext *pb = s->pb;
200 AVStream *vst = NULL, *ast = NULL, *st = 0;
201 int tag, len, i, frame, v, res;
209 uint64_t pos = avio_tell(pb);
210 tag = get_swf_tag(pb, &len);
214 av_log(s, AV_LOG_ERROR, "invalid tag length: %d\n", len);
215 return AVERROR_INVALIDDATA;
217 if (tag == TAG_VIDEOSTREAM) {
218 int ch_id = avio_rl16(pb);
221 for (i=0; i<s->nb_streams; i++) {
223 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->id == ch_id)
232 vst = avformat_new_stream(s, NULL);
234 return AVERROR(ENOMEM);
236 vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
237 vst->codec->codec_id = ff_codec_get_id(ff_swf_codec_tags, avio_r8(pb));
238 avpriv_set_pts_info(vst, 16, 256, swf->frame_rate);
240 } else if (tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2) {
241 /* streaming found */
243 for (i=0; i<s->nb_streams; i++) {
245 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == -1)
251 swf->samples_per_frame = avio_rl16(pb);
252 ast = create_new_audio_stream(s, -1, v); /* -1 to avoid clash with video stream ch_id */
254 return AVERROR(ENOMEM);
256 } else if (tag == TAG_DEFINESOUND) {
258 int ch_id = avio_rl16(pb);
260 for (i=0; i<s->nb_streams; i++) {
262 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == ch_id)
266 // FIXME: The entire audio stream is stored in a single chunk/tag. Normally,
267 // these are smaller audio streams in DEFINESOUND tags, but it's technically
268 // possible they could be huge. Break it up into multiple packets if it's big.
270 ast = create_new_audio_stream(s, ch_id, v);
272 return AVERROR(ENOMEM);
273 ast->duration = avio_rl32(pb); // number of samples
274 if (((v>>4) & 15) == 2) { // MP3 sound data record
275 ast->skip_samples = avio_rl16(pb);
279 if ((res = av_get_packet(pb, pkt, len)) < 0)
282 pkt->stream_index = ast->index;
284 } else if (tag == TAG_VIDEOFRAME) {
285 int ch_id = avio_rl16(pb);
287 for(i=0; i<s->nb_streams; i++) {
289 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->id == ch_id) {
290 frame = avio_rl16(pb);
294 if ((res = av_get_packet(pb, pkt, len)) < 0)
298 pkt->stream_index = st->index;
302 } else if (tag == TAG_DEFINEBITSLOSSLESS || tag == TAG_DEFINEBITSLOSSLESS2) {
305 uint8_t *buf = NULL, *zbuf = NULL, *pal;
306 uint32_t colormap[AVPALETTE_COUNT] = {0};
307 const int alpha_bmp = tag == TAG_DEFINEBITSLOSSLESS2;
308 const int colormapbpp = 3 + alpha_bmp;
309 int linesize, colormapsize = 0;
311 const int ch_id = avio_rl16(pb);
312 const int bmp_fmt = avio_r8(pb);
313 const int width = avio_rl16(pb);
314 const int height = avio_rl16(pb);
322 colormapsize = avio_r8(pb) + 1;
326 linesize = width * 2;
328 case 5: // RGB24 (0RGB)
329 linesize = width * 4;
332 av_log(s, AV_LOG_ERROR, "invalid bitmap format %d, skipped\n", bmp_fmt);
333 goto bitmap_end_skip;
336 linesize = FFALIGN(linesize, 4);
338 if (av_image_check_size(width, height, 0, s) < 0 ||
339 linesize >= INT_MAX / height ||
340 linesize * height >= INT_MAX - colormapsize * colormapbpp) {
341 av_log(s, AV_LOG_ERROR, "invalid frame size %dx%d\n", width, height);
342 goto bitmap_end_skip;
345 out_len = colormapsize * colormapbpp + linesize * height;
347 ff_dlog(s, "bitmap: ch=%d fmt=%d %dx%d (linesize=%d) len=%d->%ld pal=%d\n",
348 ch_id, bmp_fmt, width, height, linesize, len, out_len, colormapsize);
350 zbuf = av_malloc(len);
351 buf = av_malloc(out_len);
353 res = AVERROR(ENOMEM);
357 len = avio_read(pb, zbuf, len);
358 if (len < 0 || (res = uncompress(buf, &out_len, zbuf, len)) != Z_OK) {
359 av_log(s, AV_LOG_WARNING, "Failed to uncompress one bitmap\n");
360 goto bitmap_end_skip;
363 for (i = 0; i < s->nb_streams; i++) {
365 if (st->codec->codec_id == AV_CODEC_ID_RAWVIDEO && st->id == -3)
368 if (i == s->nb_streams) {
369 vst = avformat_new_stream(s, NULL);
371 res = AVERROR(ENOMEM);
374 vst->id = -3; /* -3 to avoid clash with video stream and audio stream */
375 vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
376 vst->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
377 avpriv_set_pts_info(vst, 64, 256, swf->frame_rate);
381 if ((res = av_new_packet(pkt, out_len - colormapsize * colormapbpp)) < 0)
383 if (!st->codec->width && !st->codec->height) {
384 st->codec->width = width;
385 st->codec->height = height;
387 ff_add_param_change(pkt, 0, 0, 0, width, height);
390 pkt->stream_index = st->index;
394 pix_fmt = AV_PIX_FMT_PAL8;
395 for (i = 0; i < colormapsize; i++)
396 if (alpha_bmp) colormap[i] = buf[3]<<24 | AV_RB24(buf + 4*i);
397 else colormap[i] = 0xffU <<24 | AV_RB24(buf + 3*i);
398 pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
400 res = AVERROR(ENOMEM);
403 memcpy(pal, colormap, AVPALETTE_SIZE);
406 pix_fmt = AV_PIX_FMT_RGB555;
409 pix_fmt = alpha_bmp ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB;
414 if (st->codec->pix_fmt != AV_PIX_FMT_NONE && st->codec->pix_fmt != pix_fmt) {
415 av_log(s, AV_LOG_ERROR, "pixel format change unsupported\n");
417 st->codec->pix_fmt = pix_fmt;
419 if (linesize * height > pkt->size) {
420 res = AVERROR_INVALIDDATA;
423 memcpy(pkt->data, buf + colormapsize*colormapbpp, linesize * height);
435 av_log(s, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
437 } else if (tag == TAG_STREAMBLOCK) {
438 for (i = 0; i < s->nb_streams; i++) {
440 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == -1) {
441 if (st->codec->codec_id == AV_CODEC_ID_MP3) {
446 if ((res = av_get_packet(pb, pkt, len)) < 0)
448 } else { // ADPCM, PCM
451 if ((res = av_get_packet(pb, pkt, len)) < 0)
455 pkt->stream_index = st->index;
459 } else if (tag == TAG_JPEG2) {
460 for (i=0; i<s->nb_streams; i++) {
462 if (st->codec->codec_id == AV_CODEC_ID_MJPEG && st->id == -2)
465 if (i == s->nb_streams) {
466 vst = avformat_new_stream(s, NULL);
468 return AVERROR(ENOMEM);
469 vst->id = -2; /* -2 to avoid clash with video stream and audio stream */
470 vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
471 vst->codec->codec_id = AV_CODEC_ID_MJPEG;
472 avpriv_set_pts_info(vst, 64, 256, swf->frame_rate);
475 avio_rl16(pb); /* BITMAP_ID */
479 if ((res = av_new_packet(pkt, len)) < 0)
481 if (avio_read(pb, pkt->data, 4) != 4) {
482 av_packet_unref(pkt);
483 return AVERROR_INVALIDDATA;
485 if (AV_RB32(pkt->data) == 0xffd8ffd9 ||
486 AV_RB32(pkt->data) == 0xffd9ffd8) {
487 /* old SWF files containing SOI/EOI as data start */
488 /* files created by swink have reversed tag */
490 memset(pkt->data+pkt->size, 0, 4);
491 res = avio_read(pb, pkt->data, pkt->size);
493 res = avio_read(pb, pkt->data + 4, pkt->size - 4);
497 if (res != pkt->size) {
499 av_packet_unref(pkt);
502 av_shrink_packet(pkt, res);
506 pkt->stream_index = st->index;
509 av_log(s, AV_LOG_DEBUG, "Unknown tag: %d\n", tag);
513 av_log(s, AV_LOG_WARNING, "Cliping len %d\n", len);
520 static av_cold int swf_read_close(AVFormatContext *avctx)
522 SWFContext *s = avctx->priv_data;
523 inflateEnd(&s->zstream);
524 av_freep(&s->zbuf_in);
525 av_freep(&s->zbuf_out);
531 AVInputFormat ff_swf_demuxer = {
533 .long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash)"),
534 .priv_data_size = sizeof(SWFContext),
535 .read_probe = swf_probe,
536 .read_header = swf_read_header,
537 .read_packet = swf_read_packet,
539 .read_close = swf_read_close,