annotate swfdec.c @ 3302:171f5664d129 libavformat

split swf de/muxer
author bcoudurier
date Tue, 20 May 2008 23:31:10 +0000
parents swf.c@6f61c3b36632
children 811758d926fd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 /*
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
2 * Flash Compatible Streaming Format
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 * Copyright (c) 2000 Fabrice Bellard.
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
4 * Copyright (c) 2003 Tinic Uro.
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
5 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1305
diff changeset
6 * This file is part of FFmpeg.
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1305
diff changeset
7 *
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1305
diff changeset
8 * FFmpeg is free software; you can redistribute it and/or
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
9 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
10 * License as published by the Free Software Foundation; either
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1305
diff changeset
11 * version 2.1 of the License, or (at your option) any later version.
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
12 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1305
diff changeset
13 * FFmpeg is distributed in the hope that it will be useful,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
17 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1305
diff changeset
19 * License along with FFmpeg; if not, write to the Free Software
896
edbe5c3717f9 Update licensing information: The FSF changed postal address.
diego
parents: 887
diff changeset
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
21 */
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 2959
diff changeset
22
3302
171f5664d129 split swf de/muxer
bcoudurier
parents: 3286
diff changeset
23 #include "swf.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
24
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
25 /*********************************************/
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
26 /* Extract FLV encoded frame and MP3 from swf
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
27 Note that the detection of the real frame
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
28 is inaccurate at this point as it can be
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 858
diff changeset
29 quite tricky to determine, you almost certainly
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
30 will get a bad audio/video sync */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
31
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
32 static int get_swf_tag(ByteIOContext *pb, int *len_ptr)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34 int tag, len;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 858
diff changeset
35
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
36 if (url_feof(pb))
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
37 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
38
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
39 tag = get_le16(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
40 len = tag & 0x3f;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
41 tag = tag >> 6;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
42 if (len == 0x3f) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
43 len = get_le32(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
44 }
806
e1007d19f28d tell the user if compressed swf found
alex
parents: 775
diff changeset
45 // av_log(NULL, AV_LOG_DEBUG, "Tag: %d - Len: %d\n", tag, len);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
46 *len_ptr = len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
47 return tag;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
48 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
49
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
50
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
51 static int swf_probe(AVProbeData *p)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
52 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
53 /* check file header */
806
e1007d19f28d tell the user if compressed swf found
alex
parents: 775
diff changeset
54 if ((p->buf[0] == 'F' || p->buf[0] == 'C') && p->buf[1] == 'W' &&
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
55 p->buf[2] == 'S')
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
56 return AVPROBE_SCORE_MAX;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
57 else
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
58 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
60
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
61 static int swf_read_header(AVFormatContext *s, AVFormatParameters *ap)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
62 {
1641
ea284c26b0f4 priv_data is allocated internally
bcoudurier
parents: 1640
diff changeset
63 SWFContext *swf = s->priv_data;
2771
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2402
diff changeset
64 ByteIOContext *pb = s->pb;
2310
91a6c2b29b7b remove now useless vars
bcoudurier
parents: 2309
diff changeset
65 int nbits, len, tag;
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
66
806
e1007d19f28d tell the user if compressed swf found
alex
parents: 775
diff changeset
67 tag = get_be32(pb) & 0xffffff00;
e1007d19f28d tell the user if compressed swf found
alex
parents: 775
diff changeset
68
2309
15c426951f7b cosmetics, braces/parenthesis style
bcoudurier
parents: 2308
diff changeset
69 if (tag == MKBETAG('C', 'W', 'S', 0)) {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
70 av_log(s, AV_LOG_ERROR, "Compressed SWF format not supported\n");
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2164
diff changeset
71 return AVERROR(EIO);
806
e1007d19f28d tell the user if compressed swf found
alex
parents: 775
diff changeset
72 }
e1007d19f28d tell the user if compressed swf found
alex
parents: 775
diff changeset
73 if (tag != MKBETAG('F', 'W', 'S', 0))
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2164
diff changeset
74 return AVERROR(EIO);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
75 get_le32(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
76 /* skip rectangle size */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
77 nbits = get_byte(pb) >> 3;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
78 len = (4 * nbits - 3 + 7) / 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
79 url_fskip(pb, len);
1889
e81bae269ae1 fix pts handling
bcoudurier
parents: 1882
diff changeset
80 swf->frame_rate = get_le16(pb); /* 8.8 fixed */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
81 get_le16(pb); /* frame count */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 858
diff changeset
82
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
83 swf->samples_per_frame = 0;
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
84 s->ctx_flags |= AVFMTCTX_NOHEADER;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
85 return 0;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
86 }
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
87
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
88 static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
89 {
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
90 SWFContext *swf = s->priv_data;
2771
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2402
diff changeset
91 ByteIOContext *pb = s->pb;
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
92 AVStream *vst = NULL, *ast = NULL, *st = 0;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
93 int tag, len, i, frame, v;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
94
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 for(;;) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
96 tag = get_swf_tag(pb, &len);
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
97 if (tag < 0)
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
98 return AVERROR(EIO);
2309
15c426951f7b cosmetics, braces/parenthesis style
bcoudurier
parents: 2308
diff changeset
99 if (tag == TAG_VIDEOSTREAM && !vst) {
1637
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
100 int ch_id = get_le16(pb);
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
101 get_le16(pb);
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
102 get_le16(pb);
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
103 get_le16(pb);
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
104 get_byte(pb);
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
105 /* Check for FLV1 */
1637
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
106 vst = av_new_stream(s, ch_id);
2913
f05588003063 check av_new_stream return value
bcoudurier
parents: 2771
diff changeset
107 if (!vst)
f05588003063 check av_new_stream return value
bcoudurier
parents: 2771
diff changeset
108 return -1;
1635
59d2c40950ca always export videostreams
bcoudurier
parents: 1623
diff changeset
109 vst->codec->codec_type = CODEC_TYPE_VIDEO;
59d2c40950ca always export videostreams
bcoudurier
parents: 1623
diff changeset
110 vst->codec->codec_id = codec_get_id(swf_codec_tags, get_byte(pb));
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
111 av_set_pts_info(vst, 64, 256, swf->frame_rate);
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
112 vst->codec->time_base = (AVRational){ 256, swf->frame_rate };
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
113 len -= 10;
2309
15c426951f7b cosmetics, braces/parenthesis style
bcoudurier
parents: 2308
diff changeset
114 } else if ((tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2) && !ast) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
115 /* streaming found */
1642
8b62e4e73069 simplify
bcoudurier
parents: 1641
diff changeset
116 int sample_rate_code;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
117 get_byte(pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
118 v = get_byte(pb);
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
119 swf->samples_per_frame = get_le16(pb);
1638
0c6b7ac24cd7 swf can contain only one audio track, simplify
bcoudurier
parents: 1637
diff changeset
120 ast = av_new_stream(s, -1); /* -1 to avoid clash with video stream ch_id */
2913
f05588003063 check av_new_stream return value
bcoudurier
parents: 2771
diff changeset
121 if (!ast)
f05588003063 check av_new_stream return value
bcoudurier
parents: 2771
diff changeset
122 return -1;
1638
0c6b7ac24cd7 swf can contain only one audio track, simplify
bcoudurier
parents: 1637
diff changeset
123 swf->audio_stream_index = ast->index;
1636
783969dab069 always export audiostreams
bcoudurier
parents: 1635
diff changeset
124 ast->codec->channels = 1 + (v&1);
783969dab069 always export audiostreams
bcoudurier
parents: 1635
diff changeset
125 ast->codec->codec_type = CODEC_TYPE_AUDIO;
1833
09a67819763e support for adpcm swf, pcm
bcoudurier
parents: 1827
diff changeset
126 ast->codec->codec_id = codec_get_id(swf_audio_codec_tags, (v>>4) & 15);
2023
a3e79d6e4e3c add an enum for need_parsing
aurel
parents: 2001
diff changeset
127 ast->need_parsing = AVSTREAM_PARSE_FULL;
1642
8b62e4e73069 simplify
bcoudurier
parents: 1641
diff changeset
128 sample_rate_code= (v>>2) & 3;
8b62e4e73069 simplify
bcoudurier
parents: 1641
diff changeset
129 if (!sample_rate_code)
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2164
diff changeset
130 return AVERROR(EIO);
1642
8b62e4e73069 simplify
bcoudurier
parents: 1641
diff changeset
131 ast->codec->sample_rate = 11025 << (sample_rate_code-1);
1890
04f9a3ae30af seems safer to set pts timebase to sample rate, fix some mp3
bcoudurier
parents: 1889
diff changeset
132 av_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
133 len -= 4;
2308
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
134 } else if (tag == TAG_VIDEOFRAME) {
1637
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
135 int ch_id = get_le16(pb);
1639
4740223bfd8e simplify
bcoudurier
parents: 1638
diff changeset
136 len -= 2;
2309
15c426951f7b cosmetics, braces/parenthesis style
bcoudurier
parents: 2308
diff changeset
137 for(i=0; i<s->nb_streams; i++) {
887
d70e50f1495f COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 885
diff changeset
138 st = s->streams[i];
1637
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
139 if (st->codec->codec_type == CODEC_TYPE_VIDEO && st->id == ch_id) {
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
140 frame = get_le16(pb);
1639
4740223bfd8e simplify
bcoudurier
parents: 1638
diff changeset
141 av_get_packet(pb, pkt, len-2);
1889
e81bae269ae1 fix pts handling
bcoudurier
parents: 1882
diff changeset
142 pkt->pts = frame;
1637
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
143 pkt->stream_index = st->index;
50bbf9658436 use ch_id as AVStream id and simplify
bcoudurier
parents: 1636
diff changeset
144 return pkt->size;
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
145 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 858
diff changeset
146 }
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
147 } else if (tag == TAG_STREAMBLOCK) {
1638
0c6b7ac24cd7 swf can contain only one audio track, simplify
bcoudurier
parents: 1637
diff changeset
148 st = s->streams[swf->audio_stream_index];
0c6b7ac24cd7 swf can contain only one audio track, simplify
bcoudurier
parents: 1637
diff changeset
149 if (st->codec->codec_id == CODEC_ID_MP3) {
0c6b7ac24cd7 swf can contain only one audio track, simplify
bcoudurier
parents: 1637
diff changeset
150 url_fskip(pb, 4);
0c6b7ac24cd7 swf can contain only one audio track, simplify
bcoudurier
parents: 1637
diff changeset
151 av_get_packet(pb, pkt, len-4);
1833
09a67819763e support for adpcm swf, pcm
bcoudurier
parents: 1827
diff changeset
152 } else { // ADPCM, PCM
09a67819763e support for adpcm swf, pcm
bcoudurier
parents: 1827
diff changeset
153 av_get_packet(pb, pkt, len);
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
154 }
1833
09a67819763e support for adpcm swf, pcm
bcoudurier
parents: 1827
diff changeset
155 pkt->stream_index = st->index;
09a67819763e support for adpcm swf, pcm
bcoudurier
parents: 1827
diff changeset
156 return pkt->size;
1640
ec1236a03504 enable mjpeg in swf
bcoudurier
parents: 1639
diff changeset
157 } else if (tag == TAG_JPEG2) {
ec1236a03504 enable mjpeg in swf
bcoudurier
parents: 1639
diff changeset
158 for (i=0; i<s->nb_streams; i++) {
ec1236a03504 enable mjpeg in swf
bcoudurier
parents: 1639
diff changeset
159 st = s->streams[i];
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
160 if (st->id == -2)
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
161 break;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
162 }
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
163 if (i == s->nb_streams) {
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
164 vst = av_new_stream(s, -2); /* -2 to avoid clash with video stream and audio stream */
2913
f05588003063 check av_new_stream return value
bcoudurier
parents: 2771
diff changeset
165 if (!vst)
f05588003063 check av_new_stream return value
bcoudurier
parents: 2771
diff changeset
166 return -1;
2307
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
167 vst->codec->codec_type = CODEC_TYPE_VIDEO;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
168 vst->codec->codec_id = CODEC_ID_MJPEG;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
169 av_set_pts_info(vst, 64, 256, swf->frame_rate);
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
170 vst->codec->time_base = (AVRational){ 256, swf->frame_rate };
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
171 st = vst;
d5508f387614 add streams on the fly, swf is a streaming format and has no real header, correctly detect audio in RamboMJPEGAVP6_112K.swf now
bcoudurier
parents: 2289
diff changeset
172 }
2308
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
173 get_le16(pb); /* BITMAP_ID */
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
174 av_new_packet(pkt, len-2);
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
175 get_buffer(pb, pkt->data, 4);
2402
8decf7585a94 support swink created files which have soi/eoi broken tags reversed
bcoudurier
parents: 2310
diff changeset
176 if (AV_RB32(pkt->data) == 0xffd8ffd9 ||
8decf7585a94 support swink created files which have soi/eoi broken tags reversed
bcoudurier
parents: 2310
diff changeset
177 AV_RB32(pkt->data) == 0xffd9ffd8) {
2308
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
178 /* old SWF files containing SOI/EOI as data start */
2402
8decf7585a94 support swink created files which have soi/eoi broken tags reversed
bcoudurier
parents: 2310
diff changeset
179 /* files created by swink have reversed tag */
2308
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
180 pkt->size -= 4;
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
181 get_buffer(pb, pkt->data, pkt->size);
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
182 } else {
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
183 get_buffer(pb, pkt->data + 4, pkt->size - 4);
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
184 }
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
185 pkt->stream_index = st->index;
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
186 return pkt->size;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
187 }
1639
4740223bfd8e simplify
bcoudurier
parents: 1638
diff changeset
188 url_fskip(pb, len);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
189 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
190 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
191 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
192
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
193 static int swf_read_close(AVFormatContext *s)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
194 {
2308
c12d367e9246 cosmetics, indentation
bcoudurier
parents: 2307
diff changeset
195 return 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
196 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
197
1169
d18cc9a1fd02 allow individual selection of muxers and demuxers
mru
parents: 1167
diff changeset
198 AVInputFormat swf_demuxer = {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
199 "swf",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
200 "Flash format",
359
e9232aa21976 - made --extra-cflags option work on darwin
michael
parents: 325
diff changeset
201 sizeof(SWFContext),
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
202 swf_probe,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
203 swf_read_header,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
204 swf_read_packet,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
205 swf_read_close,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
206 };