ffmpeg / libavformat / flvdec.c @ ff1ec0c3
History | View | Annotate | Download (20 KB)
1 | d4f5d74a | Garrick Meeker | /*
|
---|---|---|---|
2 | 7fbde343 | Aurelien Jacobs | * FLV demuxer
|
3 | 2912e87a | Mans Rullgard | * Copyright (c) 2003 The Libav Project
|
4 | d4f5d74a | Garrick Meeker | *
|
5 | 7b94177e | Diego Biurrun | * This demuxer will generate a 1 byte extradata for VP6F content.
|
6 | * It is composed of:
|
||
7 | * - upper 4bits: difference between encoded width and visible width
|
||
8 | * - lower 4bits: difference between encoded height and visible height
|
||
9 | *
|
||
10 | 2912e87a | Mans Rullgard | * This file is part of Libav.
|
11 | b78e7197 | Diego Biurrun | *
|
12 | 2912e87a | Mans Rullgard | * Libav is free software; you can redistribute it and/or
|
13 | d4f5d74a | Garrick Meeker | * modify it under the terms of the GNU Lesser General Public
|
14 | * License as published by the Free Software Foundation; either
|
||
15 | b78e7197 | Diego Biurrun | * version 2.1 of the License, or (at your option) any later version.
|
16 | d4f5d74a | Garrick Meeker | *
|
17 | 2912e87a | Mans Rullgard | * Libav is distributed in the hope that it will be useful,
|
18 | d4f5d74a | Garrick Meeker | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
20 | * Lesser General Public License for more details.
|
||
21 | *
|
||
22 | * You should have received a copy of the GNU Lesser General Public
|
||
23 | 2912e87a | Mans Rullgard | * License along with Libav; if not, write to the Free Software
|
24 | 5509bffa | Diego Biurrun | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
25 | d4f5d74a | Garrick Meeker | */
|
26 | d2718187 | Baptiste Coudurier | |
27 | df2bd71a | Aurelien Jacobs | #include "libavutil/avstring.h" |
28 | c1c206b3 | Justin Ruggles | #include "libavcodec/bytestream.h" |
29 | d2718187 | Baptiste Coudurier | #include "libavcodec/mpeg4audio.h" |
30 | d4f5d74a | Garrick Meeker | #include "avformat.h" |
31 | 933e90a6 | Anton Khirnov | #include "avio_internal.h" |
32 | 6cac3a3b | Allan Hsu | #include "flv.h" |
33 | d4f5d74a | Garrick Meeker | |
34 | cb7e2c1c | Kharkov Alexander | #define KEYFRAMES_TAG "keyframes" |
35 | #define KEYFRAMES_TIMESTAMP_TAG "times" |
||
36 | #define KEYFRAMES_BYTEOFFSET_TAG "filepositions" |
||
37 | |||
38 | ebd61055 | Baptiste Coudurier | typedef struct { |
39 | int wrong_dts; ///< wrong dts due to negative cts |
||
40 | } FLVContext; |
||
41 | |||
42 | d4f5d74a | Garrick Meeker | static int flv_probe(AVProbeData *p) |
43 | { |
||
44 | const uint8_t *d;
|
||
45 | |||
46 | d = p->buf; |
||
47 | 37e34df5 | Michael Niedermayer | if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) { |
48 | 74248229 | Michael Niedermayer | return AVPROBE_SCORE_MAX;
|
49 | d4f5d74a | Garrick Meeker | } |
50 | return 0; |
||
51 | } |
||
52 | |||
53 | 428cc588 | Allan Hsu | static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) { |
54 | AVCodecContext *acodec = astream->codec; |
||
55 | switch(flv_codecid) {
|
||
56 | //no distinction between S16 and S8 PCM codec flags
|
||
57 | 44de39f9 | Michael Niedermayer | case FLV_CODECID_PCM:
|
58 | 8e9efe43 | Daniel Verkamp | acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 :
|
59 | 63613fe6 | Måns Rullgård | #if HAVE_BIGENDIAN
|
60 | 58293e57 | Michael Niedermayer | CODEC_ID_PCM_S16BE; |
61 | #else
|
||
62 | CODEC_ID_PCM_S16LE; |
||
63 | #endif
|
||
64 | break;
|
||
65 | 428cc588 | Allan Hsu | case FLV_CODECID_PCM_LE:
|
66 | 8e9efe43 | Daniel Verkamp | acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 : CODEC_ID_PCM_S16LE; break; |
67 | 04fd3e81 | Baptiste Coudurier | case FLV_CODECID_AAC : acodec->codec_id = CODEC_ID_AAC; break; |
68 | 428cc588 | Allan Hsu | case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF; break; |
69 | f96d0eef | Baptiste Coudurier | case FLV_CODECID_SPEEX:
|
70 | acodec->codec_id = CODEC_ID_SPEEX; |
||
71 | acodec->sample_rate = 16000;
|
||
72 | break;
|
||
73 | 57004ff1 | Aurelien Jacobs | case FLV_CODECID_MP3 : acodec->codec_id = CODEC_ID_MP3 ; astream->need_parsing = AVSTREAM_PARSE_FULL; break; |
74 | 88cb61bb | Alexander Wichers | case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
|
75 | 428cc588 | Allan Hsu | acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate |
76 | caa7ad5d | Thierry Foucu | acodec->codec_id = CODEC_ID_NELLYMOSER; |
77 | break;
|
||
78 | case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
|
||
79 | acodec->sample_rate = 16000;
|
||
80 | acodec->codec_id = CODEC_ID_NELLYMOSER; |
||
81 | break;
|
||
82 | 428cc588 | Allan Hsu | case FLV_CODECID_NELLYMOSER:
|
83 | 636b13c5 | Benjamin Larsson | acodec->codec_id = CODEC_ID_NELLYMOSER; |
84 | break;
|
||
85 | 428cc588 | Allan Hsu | default:
|
86 | av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
|
||
87 | acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET; |
||
88 | } |
||
89 | } |
||
90 | |||
91 | static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) { |
||
92 | AVCodecContext *vcodec = vstream->codec; |
||
93 | switch(flv_codecid) {
|
||
94 | case FLV_CODECID_H263 : vcodec->codec_id = CODEC_ID_FLV1 ; break; |
||
95 | case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break; |
||
96 | 0aa6a518 | Daniel Verkamp | case FLV_CODECID_SCREEN2: vcodec->codec_id = CODEC_ID_FLASHSV2; break; |
97 | 428cc588 | Allan Hsu | case FLV_CODECID_VP6 : vcodec->codec_id = CODEC_ID_VP6F ;
|
98 | 99904603 | Aurelien Jacobs | case FLV_CODECID_VP6A :
|
99 | if(flv_codecid == FLV_CODECID_VP6A)
|
||
100 | vcodec->codec_id = CODEC_ID_VP6A; |
||
101 | 428cc588 | Allan Hsu | if(vcodec->extradata_size != 1) { |
102 | vcodec->extradata_size = 1;
|
||
103 | vcodec->extradata = av_malloc(1);
|
||
104 | } |
||
105 | b7effd4e | Anton Khirnov | vcodec->extradata[0] = avio_r8(s->pb);
|
106 | 428cc588 | Allan Hsu | return 1; // 1 byte body size adjustment for flv_read_packet() |
107 | 04fd3e81 | Baptiste Coudurier | case FLV_CODECID_H264:
|
108 | vcodec->codec_id = CODEC_ID_H264; |
||
109 | return 3; // not 4, reading packet type will consume one byte |
||
110 | 428cc588 | Allan Hsu | default:
|
111 | av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
|
||
112 | vcodec->codec_tag = flv_codecid; |
||
113 | } |
||
114 | |||
115 | return 0; |
||
116 | } |
||
117 | |||
118 | ae628ec1 | Anton Khirnov | static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize) { |
119 | b7effd4e | Anton Khirnov | int length = avio_rb16(ioc);
|
120 | cc38e063 | Michael Niedermayer | if(length >= buffsize) {
|
121 | 45a8a02a | Anton Khirnov | avio_skip(ioc, length); |
122 | cc38e063 | Michael Niedermayer | return -1; |
123 | } |
||
124 | 896bcd2e | Michael Niedermayer | |
125 | b7effd4e | Anton Khirnov | avio_read(ioc, buffer, length); |
126 | 896bcd2e | Michael Niedermayer | |
127 | cc38e063 | Michael Niedermayer | buffer[length] = '\0';
|
128 | 896bcd2e | Michael Niedermayer | |
129 | cc38e063 | Michael Niedermayer | return length;
|
130 | 896bcd2e | Michael Niedermayer | } |
131 | |||
132 | cb7e2c1c | Kharkov Alexander | static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream *vstream, int64_t max_pos) { |
133 | unsigned int arraylen = 0, timeslen = 0, fileposlen = 0, i; |
||
134 | double num_val;
|
||
135 | char str_val[256]; |
||
136 | int64_t *times = NULL;
|
||
137 | int64_t *filepositions = NULL;
|
||
138 | int ret = 0; |
||
139 | b5304f7b | Kharkov Alexander | int64_t initial_pos = avio_tell(ioc); |
140 | cb7e2c1c | Kharkov Alexander | |
141 | while (avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) { |
||
142 | int64_t* current_array; |
||
143 | |||
144 | // Expect array object in context
|
||
145 | if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
|
||
146 | break;
|
||
147 | |||
148 | arraylen = avio_rb32(ioc); |
||
149 | /*
|
||
150 | * Expect only 'times' or 'filepositions' sub-arrays in other case refuse to use such metadata
|
||
151 | * for indexing
|
||
152 | */
|
||
153 | if (!strcmp(KEYFRAMES_TIMESTAMP_TAG, str_val) && !times) {
|
||
154 | if (!(times = av_mallocz(sizeof(*times) * arraylen))) { |
||
155 | ret = AVERROR(ENOMEM); |
||
156 | goto finish;
|
||
157 | } |
||
158 | timeslen = arraylen; |
||
159 | current_array = times; |
||
160 | } else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) && !filepositions) { |
||
161 | if (!(filepositions = av_mallocz(sizeof(*filepositions) * arraylen))) { |
||
162 | ret = AVERROR(ENOMEM); |
||
163 | goto finish;
|
||
164 | } |
||
165 | fileposlen = arraylen; |
||
166 | current_array = filepositions; |
||
167 | } else // unexpected metatag inside keyframes, will not use such metadata for indexing |
||
168 | break;
|
||
169 | |||
170 | for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) { |
||
171 | if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
|
||
172 | goto finish;
|
||
173 | num_val = av_int2dbl(avio_rb64(ioc)); |
||
174 | current_array[i] = num_val; |
||
175 | } |
||
176 | } |
||
177 | |||
178 | if (timeslen == fileposlen)
|
||
179 | for(i = 0; i < arraylen; i++) |
||
180 | av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME); |
||
181 | else
|
||
182 | av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
|
||
183 | |||
184 | finish:
|
||
185 | av_freep(×); |
||
186 | av_freep(&filepositions); |
||
187 | b5304f7b | Kharkov Alexander | avio_seek(ioc, initial_pos, SEEK_SET); |
188 | cb7e2c1c | Kharkov Alexander | return ret;
|
189 | } |
||
190 | |||
191 | 4fe8a452 | Pascal Massimino | static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) { |
192 | 428cc588 | Allan Hsu | AVCodecContext *acodec, *vcodec; |
193 | ae628ec1 | Anton Khirnov | AVIOContext *ioc; |
194 | 428cc588 | Allan Hsu | AMFDataType amf_type; |
195 | cc38e063 | Michael Niedermayer | char str_val[256]; |
196 | 428cc588 | Allan Hsu | double num_val;
|
197 | |||
198 | num_val = 0;
|
||
199 | 899681cd | Björn Axelsson | ioc = s->pb; |
200 | 428cc588 | Allan Hsu | |
201 | b7effd4e | Anton Khirnov | amf_type = avio_r8(ioc); |
202 | 428cc588 | Allan Hsu | |
203 | switch(amf_type) {
|
||
204 | case AMF_DATA_TYPE_NUMBER:
|
||
205 | b7effd4e | Anton Khirnov | num_val = av_int2dbl(avio_rb64(ioc)); break;
|
206 | 428cc588 | Allan Hsu | case AMF_DATA_TYPE_BOOL:
|
207 | b7effd4e | Anton Khirnov | num_val = avio_r8(ioc); break;
|
208 | 428cc588 | Allan Hsu | case AMF_DATA_TYPE_STRING:
|
209 | cc38e063 | Michael Niedermayer | if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0) |
210 | 428cc588 | Allan Hsu | return -1; |
211 | break;
|
||
212 | case AMF_DATA_TYPE_OBJECT: {
|
||
213 | unsigned int keylen; |
||
214 | |||
215 | e3c007bb | Justin Ruggles | if (key && !strcmp(KEYFRAMES_TAG, key) && depth == 1) |
216 | cb7e2c1c | Kharkov Alexander | if (parse_keyframes_index(s, ioc, vstream, max_pos) < 0) |
217 | return -1; |
||
218 | |||
219 | a2704c97 | Anton Khirnov | while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) { |
220 | 45a8a02a | Anton Khirnov | avio_skip(ioc, keylen); //skip key string
|
221 | 428cc588 | Allan Hsu | if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0) |
222 | return -1; //if we couldn't skip, bomb out. |
||
223 | } |
||
224 | b7effd4e | Anton Khirnov | if(avio_r8(ioc) != AMF_END_OF_OBJECT)
|
225 | 428cc588 | Allan Hsu | return -1; |
226 | } |
||
227 | break;
|
||
228 | case AMF_DATA_TYPE_NULL:
|
||
229 | case AMF_DATA_TYPE_UNDEFINED:
|
||
230 | case AMF_DATA_TYPE_UNSUPPORTED:
|
||
231 | break; //these take up no additional space |
||
232 | case AMF_DATA_TYPE_MIXEDARRAY:
|
||
233 | 45a8a02a | Anton Khirnov | avio_skip(ioc, 4); //skip 32-bit max array index |
234 | a2704c97 | Anton Khirnov | while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) { |
235 | 428cc588 | Allan Hsu | //this is the only case in which we would want a nested parse to not skip over the object
|
236 | cc38e063 | Michael Niedermayer | if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0) |
237 | 428cc588 | Allan Hsu | return -1; |
238 | } |
||
239 | b7effd4e | Anton Khirnov | if(avio_r8(ioc) != AMF_END_OF_OBJECT)
|
240 | 428cc588 | Allan Hsu | return -1; |
241 | break;
|
||
242 | case AMF_DATA_TYPE_ARRAY: {
|
||
243 | unsigned int arraylen, i; |
||
244 | |||
245 | b7effd4e | Anton Khirnov | arraylen = avio_rb32(ioc); |
246 | a2704c97 | Anton Khirnov | for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) { |
247 | 428cc588 | Allan Hsu | if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0) |
248 | return -1; //if we couldn't skip, bomb out. |
||
249 | } |
||
250 | } |
||
251 | break;
|
||
252 | case AMF_DATA_TYPE_DATE:
|
||
253 | 45a8a02a | Anton Khirnov | avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16) |
254 | 428cc588 | Allan Hsu | break;
|
255 | default: //unsupported type, we couldn't skip |
||
256 | return -1; |
||
257 | } |
||
258 | |||
259 | if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL |
||
260 | acodec = astream ? astream->codec : NULL;
|
||
261 | vcodec = vstream ? vstream->codec : NULL;
|
||
262 | |||
263 | if(amf_type == AMF_DATA_TYPE_BOOL) {
|
||
264 | cc38e063 | Michael Niedermayer | av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val)); |
265 | 2ef6c124 | Stefano Sabatini | av_metadata_set2(&s->metadata, key, str_val, 0);
|
266 | 428cc588 | Allan Hsu | } else if(amf_type == AMF_DATA_TYPE_NUMBER) { |
267 | cc38e063 | Michael Niedermayer | snprintf(str_val, sizeof(str_val), "%.f", num_val); |
268 | 2ef6c124 | Stefano Sabatini | av_metadata_set2(&s->metadata, key, str_val, 0);
|
269 | 428cc588 | Allan Hsu | if(!strcmp(key, "duration")) s->duration = num_val * AV_TIME_BASE; |
270 | 9a354fe3 | Stefan de Konink | else if(!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0)) |
271 | vcodec->bit_rate = num_val * 1024.0; |
||
272 | 7e939205 | Howard Chu | else if(!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0)) |
273 | acodec->bit_rate = num_val * 1024.0; |
||
274 | df2bd71a | Aurelien Jacobs | } else if (amf_type == AMF_DATA_TYPE_STRING) |
275 | 2ef6c124 | Stefano Sabatini | av_metadata_set2(&s->metadata, key, str_val, 0);
|
276 | 428cc588 | Allan Hsu | } |
277 | |||
278 | return 0; |
||
279 | } |
||
280 | |||
281 | 4fe8a452 | Pascal Massimino | static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) { |
282 | 428cc588 | Allan Hsu | AMFDataType type; |
283 | AVStream *stream, *astream, *vstream; |
||
284 | ae628ec1 | Anton Khirnov | AVIOContext *ioc; |
285 | 4eec2606 | Michael Niedermayer | int i;
|
286 | cc38e063 | Michael Niedermayer | char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want. |
287 | 428cc588 | Allan Hsu | |
288 | astream = NULL;
|
||
289 | vstream = NULL;
|
||
290 | 899681cd | Björn Axelsson | ioc = s->pb; |
291 | 428cc588 | Allan Hsu | |
292 | //first object needs to be "onMetaData" string
|
||
293 | b7effd4e | Anton Khirnov | type = avio_r8(ioc); |
294 | cc38e063 | Michael Niedermayer | if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData")) |
295 | 428cc588 | Allan Hsu | return -1; |
296 | |||
297 | //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
|
||
298 | for(i = 0; i < s->nb_streams; i++) { |
||
299 | stream = s->streams[i]; |
||
300 | 72415b2a | Stefano Sabatini | if (stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
|
301 | else if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream; |
||
302 | 428cc588 | Allan Hsu | } |
303 | |||
304 | //parse the second object (we want a mixed array)
|
||
305 | cc38e063 | Michael Niedermayer | if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0) |
306 | 428cc588 | Allan Hsu | return -1; |
307 | |||
308 | return 0; |
||
309 | } |
||
310 | |||
311 | 6f910bcf | Michael Niedermayer | static AVStream *create_stream(AVFormatContext *s, int is_audio){ |
312 | AVStream *st = av_new_stream(s, is_audio); |
||
313 | if (!st)
|
||
314 | return NULL; |
||
315 | 72415b2a | Stefano Sabatini | st->codec->codec_type = is_audio ? AVMEDIA_TYPE_AUDIO : AVMEDIA_TYPE_VIDEO; |
316 | 19719bc6 | Baptiste Coudurier | av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */ |
317 | 6f910bcf | Michael Niedermayer | return st;
|
318 | } |
||
319 | |||
320 | d4f5d74a | Garrick Meeker | static int flv_read_header(AVFormatContext *s, |
321 | AVFormatParameters *ap) |
||
322 | { |
||
323 | 15f14fc7 | Michael Niedermayer | int offset, flags;
|
324 | d4f5d74a | Garrick Meeker | |
325 | 45a8a02a | Anton Khirnov | avio_skip(s->pb, 4);
|
326 | b7effd4e | Anton Khirnov | flags = avio_r8(s->pb); |
327 | 031311cb | Alex Beregszaszi | /* old flvtool cleared this field */
|
328 | /* FIXME: better fix needed */
|
||
329 | if (!flags) {
|
||
330 | flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO; |
||
331 | av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
|
||
332 | } |
||
333 | d4f5d74a | Garrick Meeker | |
334 | b41497e9 | Michael Niedermayer | if((flags & (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
|
335 | != (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO)) |
||
336 | s->ctx_flags |= AVFMTCTX_NOHEADER; |
||
337 | |||
338 | 4eb0c665 | Michael Niedermayer | if(flags & FLV_HEADER_FLAG_HASVIDEO){
|
339 | 6f910bcf | Michael Niedermayer | if(!create_stream(s, 0)) |
340 | 769e10f0 | Panagiotis Issaris | return AVERROR(ENOMEM);
|
341 | 4eb0c665 | Michael Niedermayer | } |
342 | if(flags & FLV_HEADER_FLAG_HASAUDIO){
|
||
343 | 6f910bcf | Michael Niedermayer | if(!create_stream(s, 1)) |
344 | 769e10f0 | Panagiotis Issaris | return AVERROR(ENOMEM);
|
345 | 4eb0c665 | Michael Niedermayer | } |
346 | |||
347 | b7effd4e | Anton Khirnov | offset = avio_rb32(s->pb); |
348 | 6b4aa5da | Anton Khirnov | avio_seek(s->pb, offset, SEEK_SET); |
349 | 45a8a02a | Anton Khirnov | avio_skip(s->pb, 4);
|
350 | d4f5d74a | Garrick Meeker | |
351 | aeb20f7f | Nazo | s->start_time = 0;
|
352 | |||
353 | d4f5d74a | Garrick Meeker | return 0; |
354 | } |
||
355 | |||
356 | 04fd3e81 | Baptiste Coudurier | static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size) |
357 | { |
||
358 | av_free(st->codec->extradata); |
||
359 | st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE); |
||
360 | if (!st->codec->extradata)
|
||
361 | return AVERROR(ENOMEM);
|
||
362 | st->codec->extradata_size = size; |
||
363 | b7effd4e | Anton Khirnov | avio_read(s->pb, st->codec->extradata, st->codec->extradata_size); |
364 | 04fd3e81 | Baptiste Coudurier | return 0; |
365 | } |
||
366 | |||
367 | d4f5d74a | Garrick Meeker | static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) |
368 | { |
||
369 | ebd61055 | Baptiste Coudurier | FLVContext *flv = s->priv_data; |
370 | 4fe8a452 | Pascal Massimino | int ret, i, type, size, flags, is_audio;
|
371 | int64_t next, pos; |
||
372 | ebd61055 | Baptiste Coudurier | int64_t dts, pts = AV_NOPTS_VALUE; |
373 | 923bd441 | Alex Beregszaszi | AVStream *st = NULL;
|
374 | 115329f1 | Diego Biurrun | |
375 | 45a8a02a | Anton Khirnov | for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */ |
376 | a2704c97 | Anton Khirnov | pos = avio_tell(s->pb); |
377 | b7effd4e | Anton Khirnov | type = avio_r8(s->pb); |
378 | size = avio_rb24(s->pb); |
||
379 | dts = avio_rb24(s->pb); |
||
380 | dts |= avio_r8(s->pb) << 24;
|
||
381 | 7ef94d22 | Baptiste Coudurier | // av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, dts:%d\n", type, size, dts);
|
382 | 66e5b1df | Anton Khirnov | if (s->pb->eof_reached)
|
383 | 0e9602ef | Peter Ross | return AVERROR_EOF;
|
384 | 45a8a02a | Anton Khirnov | avio_skip(s->pb, 3); /* stream id, always 0 */ |
385 | d4f5d74a | Garrick Meeker | flags = 0;
|
386 | 115329f1 | Diego Biurrun | |
387 | 068f2a22 | Michael Niedermayer | if(size == 0) |
388 | continue;
|
||
389 | 115329f1 | Diego Biurrun | |
390 | a2704c97 | Anton Khirnov | next= size + avio_tell(s->pb); |
391 | dd9f5916 | Michael Niedermayer | |
392 | 6cac3a3b | Allan Hsu | if (type == FLV_TAG_TYPE_AUDIO) {
|
393 | 068f2a22 | Michael Niedermayer | is_audio=1;
|
394 | b7effd4e | Anton Khirnov | flags = avio_r8(s->pb); |
395 | 6298eb81 | Baptiste Coudurier | size--; |
396 | 6cac3a3b | Allan Hsu | } else if (type == FLV_TAG_TYPE_VIDEO) { |
397 | 068f2a22 | Michael Niedermayer | is_audio=0;
|
398 | b7effd4e | Anton Khirnov | flags = avio_r8(s->pb); |
399 | 6298eb81 | Baptiste Coudurier | size--; |
400 | 3d9aecb0 | Baptiste Coudurier | if ((flags & 0xf0) == 0x50) /* video info / command frame */ |
401 | goto skip;
|
||
402 | d4f5d74a | Garrick Meeker | } else {
|
403 | 09e54e1f | Aurelien Jacobs | if (type == FLV_TAG_TYPE_META && size > 13+1+4) |
404 | 428cc588 | Allan Hsu | flv_read_metabody(s, next); |
405 | else /* skip packet */ |
||
406 | e1d8d7bb | Art Clarke | av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
|
407 | 3d9aecb0 | Baptiste Coudurier | skip:
|
408 | 6b4aa5da | Anton Khirnov | avio_seek(s->pb, next, SEEK_SET); |
409 | ded01499 | Michael Niedermayer | continue;
|
410 | d4f5d74a | Garrick Meeker | } |
411 | |||
412 | ae58b54b | Baptiste Coudurier | /* skip empty data packets */
|
413 | if (!size)
|
||
414 | continue;
|
||
415 | |||
416 | d4f5d74a | Garrick Meeker | /* now find stream */
|
417 | for(i=0;i<s->nb_streams;i++) { |
||
418 | st = s->streams[i]; |
||
419 | 068f2a22 | Michael Niedermayer | if (st->id == is_audio)
|
420 | break;
|
||
421 | d4f5d74a | Garrick Meeker | } |
422 | 068f2a22 | Michael Niedermayer | if(i == s->nb_streams){
|
423 | c1023470 | Benoit Fouet | av_log(s, AV_LOG_ERROR, "invalid stream\n");
|
424 | c8652b57 | Michael Niedermayer | st= create_stream(s, is_audio); |
425 | a33cfa30 | Michael Niedermayer | s->ctx_flags &= ~AVFMTCTX_NOHEADER; |
426 | 6ed08157 | Michael Niedermayer | } |
427 | c1023470 | Benoit Fouet | // av_log(s, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
|
428 | 6cac3a3b | Allan Hsu | if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || is_audio))
|
429 | ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && !is_audio)) |
||
430 | f3356e9c | Michael Niedermayer | || st->discard >= AVDISCARD_ALL |
431 | ){ |
||
432 | 6b4aa5da | Anton Khirnov | avio_seek(s->pb, next, SEEK_SET); |
433 | ded01499 | Michael Niedermayer | continue;
|
434 | b9866ebc | Michael Niedermayer | } |
435 | 6cac3a3b | Allan Hsu | if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
|
436 | 7ef94d22 | Baptiste Coudurier | av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
|
437 | 068f2a22 | Michael Niedermayer | break;
|
438 | } |
||
439 | |||
440 | 15f14fc7 | Michael Niedermayer | // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
|
441 | 8978feda | Anton Khirnov | if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
|
442 | 15f14fc7 | Michael Niedermayer | int size;
|
443 | a2704c97 | Anton Khirnov | const int64_t pos= avio_tell(s->pb);
|
444 | 76aa876e | Anton Khirnov | const int64_t fsize= avio_size(s->pb);
|
445 | 6b4aa5da | Anton Khirnov | avio_seek(s->pb, fsize-4, SEEK_SET);
|
446 | b7effd4e | Anton Khirnov | size= avio_rb32(s->pb); |
447 | 6b4aa5da | Anton Khirnov | avio_seek(s->pb, fsize-3-size, SEEK_SET);
|
448 | b7effd4e | Anton Khirnov | if(size == avio_rb24(s->pb) + 11){ |
449 | uint32_t ts = avio_rb24(s->pb); |
||
450 | ts |= avio_r8(s->pb) << 24;
|
||
451 | b126dee9 | Martin Storsjö | s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
|
452 | 15f14fc7 | Michael Niedermayer | } |
453 | 6b4aa5da | Anton Khirnov | avio_seek(s->pb, pos, SEEK_SET); |
454 | 15f14fc7 | Michael Niedermayer | } |
455 | |||
456 | 068f2a22 | Michael Niedermayer | if(is_audio){
|
457 | 2f3d7ea9 | Michael Niedermayer | if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
|
458 | 6cac3a3b | Allan Hsu | st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1; |
459 | 7f8cd075 | Baptiste Coudurier | st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3); |
460 | dd1c8f3e | Luca Abeni | st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8; |
461 | 2f3d7ea9 | Michael Niedermayer | } |
462 | if(!st->codec->codec_id){
|
||
463 | 428cc588 | Allan Hsu | flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK); |
464 | 068f2a22 | Michael Niedermayer | } |
465 | }else{
|
||
466 | 428cc588 | Allan Hsu | size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK); |
467 | bb01a3f0 | Michael Niedermayer | } |
468 | |||
469 | 04fd3e81 | Baptiste Coudurier | if (st->codec->codec_id == CODEC_ID_AAC ||
|
470 | st->codec->codec_id == CODEC_ID_H264) { |
||
471 | b7effd4e | Anton Khirnov | int type = avio_r8(s->pb);
|
472 | 04fd3e81 | Baptiste Coudurier | size--; |
473 | if (st->codec->codec_id == CODEC_ID_H264) {
|
||
474 | b7effd4e | Anton Khirnov | int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension |
475 | ebd61055 | Baptiste Coudurier | pts = dts + cts; |
476 | if (cts < 0) { // dts are wrong |
||
477 | flv->wrong_dts = 1;
|
||
478 | av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
|
||
479 | } |
||
480 | if (flv->wrong_dts)
|
||
481 | dts = AV_NOPTS_VALUE; |
||
482 | 04fd3e81 | Baptiste Coudurier | } |
483 | if (type == 0) { |
||
484 | 6298eb81 | Baptiste Coudurier | if ((ret = flv_get_extradata(s, st, size)) < 0) |
485 | 04fd3e81 | Baptiste Coudurier | return ret;
|
486 | d2718187 | Baptiste Coudurier | if (st->codec->codec_id == CODEC_ID_AAC) {
|
487 | MPEG4AudioConfig cfg; |
||
488 | ff_mpeg4audio_get_config(&cfg, st->codec->extradata, |
||
489 | st->codec->extradata_size); |
||
490 | 5aea268d | Alex Converse | st->codec->channels = cfg.channels; |
491 | 7d6096e4 | Baptiste Coudurier | if (cfg.ext_sample_rate)
|
492 | st->codec->sample_rate = cfg.ext_sample_rate; |
||
493 | else
|
||
494 | st->codec->sample_rate = cfg.sample_rate; |
||
495 | dfd2a005 | Luca Barbato | av_dlog(s, "mp4a config channels %d sample rate %d\n",
|
496 | d2718187 | Baptiste Coudurier | st->codec->channels, st->codec->sample_rate); |
497 | } |
||
498 | |||
499 | 527c2e64 | Howard Chu | ret = AVERROR(EAGAIN); |
500 | goto leave;
|
||
501 | 04fd3e81 | Baptiste Coudurier | } |
502 | } |
||
503 | |||
504 | fcb4228c | Baptiste Coudurier | /* skip empty data packets */
|
505 | 527c2e64 | Howard Chu | if (!size) {
|
506 | ret = AVERROR(EAGAIN); |
||
507 | goto leave;
|
||
508 | } |
||
509 | fcb4228c | Baptiste Coudurier | |
510 | 6298eb81 | Baptiste Coudurier | ret= av_get_packet(s->pb, pkt, size); |
511 | 634b927f | Michael Niedermayer | if (ret < 0) { |
512 | 6f3e0b21 | Panagiotis Issaris | return AVERROR(EIO);
|
513 | d4f5d74a | Garrick Meeker | } |
514 | /* note: we need to modify the packet size here to handle the last
|
||
515 | packet */
|
||
516 | pkt->size = ret; |
||
517 | 7ef94d22 | Baptiste Coudurier | pkt->dts = dts; |
518 | ebd61055 | Baptiste Coudurier | pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts; |
519 | d4f5d74a | Garrick Meeker | pkt->stream_index = st->index; |
520 | 115329f1 | Diego Biurrun | |
521 | 6cac3a3b | Allan Hsu | if (is_audio || ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY))
|
522 | cc947f04 | Jean-Daniel Dupas | pkt->flags |= AV_PKT_FLAG_KEY; |
523 | 115329f1 | Diego Biurrun | |
524 | 527c2e64 | Howard Chu | leave:
|
525 | 45a8a02a | Anton Khirnov | avio_skip(s->pb, 4);
|
526 | d4f5d74a | Garrick Meeker | return ret;
|
527 | } |
||
528 | |||
529 | fc8fa007 | Howard Chu | static int flv_read_seek(AVFormatContext *s, int stream_index, |
530 | int64_t ts, int flags)
|
||
531 | { |
||
532 | ff1ec0c3 | Anton Khirnov | return avio_seek_time(s->pb, stream_index, ts, flags);
|
533 | fc8fa007 | Howard Chu | } |
534 | |||
535 | #if 0 /* don't know enough to implement this */
|
||
536 | static int flv_read_seek2(AVFormatContext *s, int stream_index,
|
||
537 | int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
|
||
538 | {
|
||
539 | int ret = AVERROR(ENOSYS);
|
||
540 | |||
541 | if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
|
||
542 | |||
543 | 8978feda | Anton Khirnov | if (!s->pb->seekable) {
|
544 | fc8fa007 | Howard Chu | if (stream_index < 0) {
|
545 | stream_index = av_find_default_stream_index(s);
|
||
546 | if (stream_index < 0)
|
||
547 | return -1;
|
||
548 | |||
549 | /* timestamp for default must be expressed in AV_TIME_BASE units */
|
||
550 | ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
|
||
551 | flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
|
||
552 | }
|
||
553 | ff1ec0c3 | Anton Khirnov | ret = avio_seek_time(s->pb, stream_index, ts, flags);
|
554 | fc8fa007 | Howard Chu | }
|
555 | |||
556 | if (ret == AVERROR(ENOSYS))
|
||
557 | ret = av_seek_frame(s, stream_index, ts, flags);
|
||
558 | return ret;
|
||
559 | }
|
||
560 | #endif
|
||
561 | |||
562 | c6610a21 | Diego Elio Pettenò | AVInputFormat ff_flv_demuxer = { |
563 | d4f5d74a | Garrick Meeker | "flv",
|
564 | bde15e74 | Stefano Sabatini | NULL_IF_CONFIG_SMALL("FLV format"),
|
565 | ebd61055 | Baptiste Coudurier | sizeof(FLVContext),
|
566 | d4f5d74a | Garrick Meeker | flv_probe, |
567 | flv_read_header, |
||
568 | flv_read_packet, |
||
569 | fc8fa007 | Howard Chu | .read_seek = flv_read_seek, |
570 | #if 0
|
||
571 | .read_seek2 = flv_read_seek2,
|
||
572 | #endif
|
||
573 | d4f5d74a | Garrick Meeker | .extensions = "flv",
|
574 | .value = CODEC_ID_FLV1, |
||
575 | }; |