]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
avio: replace ETIMEDOUT by EIO
[ffmpeg] / libavformat / flvdec.c
1 /*
2  * FLV demuxer
3  * Copyright (c) 2003 The FFmpeg Project
4  *
5  * 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  * This file is part of FFmpeg.
11  *
12  * FFmpeg is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public
14  * License as published by the Free Software Foundation; either
15  * version 2.1 of the License, or (at your option) any later version.
16  *
17  * FFmpeg is distributed in the hope that it will be useful,
18  * 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  * License along with FFmpeg; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25  */
26
27 #include "libavutil/avstring.h"
28 #include "libavutil/dict.h"
29 #include "libavutil/opt.h"
30 #include "libavutil/intfloat.h"
31 #include "libavutil/mathematics.h"
32 #include "libavcodec/bytestream.h"
33 #include "libavcodec/mpeg4audio.h"
34 #include "avformat.h"
35 #include "internal.h"
36 #include "avio_internal.h"
37 #include "flv.h"
38
39 #define VALIDATE_INDEX_TS_THRESH 2500
40
41 typedef struct {
42     const AVClass *class; ///< Class for private options.
43     int trust_metadata; ///< configure streams according onMetaData
44     int wrong_dts; ///< wrong dts due to negative cts
45     uint8_t *new_extradata[FLV_STREAM_TYPE_NB];
46     int      new_extradata_size[FLV_STREAM_TYPE_NB];
47     int      last_sample_rate;
48     int      last_channels;
49     struct {
50         int64_t dts;
51         int64_t pos;
52     } validate_index[2];
53     int validate_next;
54     int validate_count;
55     int searched_for_end;
56 } FLVContext;
57
58 static int flv_probe(AVProbeData *p)
59 {
60     const uint8_t *d;
61
62     d = p->buf;
63     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) {
64         return AVPROBE_SCORE_MAX;
65     }
66     return 0;
67 }
68
69 static AVStream *create_stream(AVFormatContext *s, int codec_type)
70 {
71     AVStream *st = avformat_new_stream(s, NULL);
72     if (!st)
73         return NULL;
74     st->codec->codec_type = codec_type;
75     if(s->nb_streams>=3 ||(   s->nb_streams==2
76                            && s->streams[0]->codec->codec_type != AVMEDIA_TYPE_DATA
77                            && s->streams[1]->codec->codec_type != AVMEDIA_TYPE_DATA))
78         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
79
80     avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
81     return st;
82 }
83 static int flv_same_audio_codec(AVCodecContext *acodec, int flags)
84 {
85     int bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
86     int flv_codecid = flags & FLV_AUDIO_CODECID_MASK;
87     int codec_id;
88
89     if (!acodec->codec_id && !acodec->codec_tag)
90         return 1;
91
92     if (acodec->bits_per_coded_sample != bits_per_coded_sample)
93         return 0;
94
95     switch(flv_codecid) {
96         //no distinction between S16 and S8 PCM codec flags
97     case FLV_CODECID_PCM:
98         codec_id = bits_per_coded_sample == 8 ? AV_CODEC_ID_PCM_U8 :
99 #if HAVE_BIGENDIAN
100                             AV_CODEC_ID_PCM_S16BE;
101 #else
102                             AV_CODEC_ID_PCM_S16LE;
103 #endif
104         return codec_id == acodec->codec_id;
105     case FLV_CODECID_PCM_LE:
106         codec_id = bits_per_coded_sample == 8 ? AV_CODEC_ID_PCM_U8 : AV_CODEC_ID_PCM_S16LE;
107         return codec_id == acodec->codec_id;
108     case FLV_CODECID_AAC:
109         return acodec->codec_id == AV_CODEC_ID_AAC;
110     case FLV_CODECID_ADPCM:
111         return acodec->codec_id == AV_CODEC_ID_ADPCM_SWF;
112     case FLV_CODECID_SPEEX:
113         return acodec->codec_id == AV_CODEC_ID_SPEEX;
114     case FLV_CODECID_MP3:
115         return acodec->codec_id == AV_CODEC_ID_MP3;
116     case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
117     case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
118     case FLV_CODECID_NELLYMOSER:
119         return acodec->codec_id == AV_CODEC_ID_NELLYMOSER;
120     case FLV_CODECID_PCM_MULAW:
121         return acodec->sample_rate == 8000 &&
122                acodec->codec_id == AV_CODEC_ID_PCM_MULAW;
123     case FLV_CODECID_PCM_ALAW:
124         return acodec->sample_rate = 8000 &&
125                acodec->codec_id == AV_CODEC_ID_PCM_ALAW;
126     default:
127         return acodec->codec_tag == (flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
128     }
129 }
130
131 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, AVCodecContext *acodec, int flv_codecid) {
132     switch(flv_codecid) {
133         //no distinction between S16 and S8 PCM codec flags
134         case FLV_CODECID_PCM:
135             acodec->codec_id = acodec->bits_per_coded_sample == 8 ? AV_CODEC_ID_PCM_U8 :
136 #if HAVE_BIGENDIAN
137                                 AV_CODEC_ID_PCM_S16BE;
138 #else
139                                 AV_CODEC_ID_PCM_S16LE;
140 #endif
141             break;
142         case FLV_CODECID_PCM_LE:
143             acodec->codec_id = acodec->bits_per_coded_sample == 8 ? AV_CODEC_ID_PCM_U8 : AV_CODEC_ID_PCM_S16LE; break;
144         case FLV_CODECID_AAC  : acodec->codec_id = AV_CODEC_ID_AAC;                                    break;
145         case FLV_CODECID_ADPCM: acodec->codec_id = AV_CODEC_ID_ADPCM_SWF;                              break;
146         case FLV_CODECID_SPEEX:
147             acodec->codec_id = AV_CODEC_ID_SPEEX;
148             acodec->sample_rate = 16000;
149             break;
150         case FLV_CODECID_MP3  : acodec->codec_id = AV_CODEC_ID_MP3      ; astream->need_parsing = AVSTREAM_PARSE_FULL; break;
151         case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
152             acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate
153             acodec->codec_id = AV_CODEC_ID_NELLYMOSER;
154             break;
155         case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
156             acodec->sample_rate = 16000;
157             acodec->codec_id = AV_CODEC_ID_NELLYMOSER;
158             break;
159         case FLV_CODECID_NELLYMOSER:
160             acodec->codec_id = AV_CODEC_ID_NELLYMOSER;
161             break;
162         case FLV_CODECID_PCM_MULAW:
163             acodec->sample_rate = 8000;
164             acodec->codec_id = AV_CODEC_ID_PCM_MULAW;
165             break;
166         case FLV_CODECID_PCM_ALAW:
167             acodec->sample_rate = 8000;
168             acodec->codec_id = AV_CODEC_ID_PCM_ALAW;
169             break;
170         default:
171             av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
172             acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
173     }
174 }
175
176 static int flv_same_video_codec(AVCodecContext *vcodec, int flags)
177 {
178     int flv_codecid = flags & FLV_VIDEO_CODECID_MASK;
179
180     if (!vcodec->codec_id && !vcodec->codec_tag)
181         return 1;
182
183     switch (flv_codecid) {
184         case FLV_CODECID_H263:
185             return vcodec->codec_id == AV_CODEC_ID_FLV1;
186         case FLV_CODECID_SCREEN:
187             return vcodec->codec_id == AV_CODEC_ID_FLASHSV;
188         case FLV_CODECID_SCREEN2:
189             return vcodec->codec_id == AV_CODEC_ID_FLASHSV2;
190         case FLV_CODECID_VP6:
191             return vcodec->codec_id == AV_CODEC_ID_VP6F;
192         case FLV_CODECID_VP6A:
193             return vcodec->codec_id == AV_CODEC_ID_VP6A;
194         case FLV_CODECID_H264:
195             return vcodec->codec_id == AV_CODEC_ID_H264;
196         default:
197             return vcodec->codec_tag == flv_codecid;
198     }
199 }
200
201 static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) {
202     AVCodecContext *vcodec = vstream->codec;
203     switch(flv_codecid) {
204         case FLV_CODECID_H263  : vcodec->codec_id = AV_CODEC_ID_FLV1   ; break;
205         case FLV_CODECID_REALH263: vcodec->codec_id = AV_CODEC_ID_H263 ; break; // Really mean it this time
206         case FLV_CODECID_SCREEN: vcodec->codec_id = AV_CODEC_ID_FLASHSV; break;
207         case FLV_CODECID_SCREEN2: vcodec->codec_id = AV_CODEC_ID_FLASHSV2; break;
208         case FLV_CODECID_VP6   : vcodec->codec_id = AV_CODEC_ID_VP6F   ;
209         case FLV_CODECID_VP6A  :
210             if(flv_codecid == FLV_CODECID_VP6A)
211                 vcodec->codec_id = AV_CODEC_ID_VP6A;
212             if(vcodec->extradata_size != 1) {
213                 vcodec->extradata_size = 1;
214                 vcodec->extradata = av_malloc(1 + FF_INPUT_BUFFER_PADDING_SIZE);
215             }
216             vcodec->extradata[0] = avio_r8(s->pb);
217             return 1; // 1 byte body size adjustment for flv_read_packet()
218         case FLV_CODECID_H264:
219             vcodec->codec_id = AV_CODEC_ID_H264;
220             return 3; // not 4, reading packet type will consume one byte
221         case FLV_CODECID_MPEG4:
222             vcodec->codec_id = AV_CODEC_ID_MPEG4;
223             return 3;
224         default:
225             av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
226             vcodec->codec_tag = flv_codecid;
227     }
228
229     return 0;
230 }
231
232 static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize) {
233     int length = avio_rb16(ioc);
234     if(length >= buffsize) {
235         avio_skip(ioc, length);
236         return -1;
237     }
238
239     avio_read(ioc, buffer, length);
240
241     buffer[length] = '\0';
242
243     return length;
244 }
245
246 static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream *vstream, int64_t max_pos) {
247     FLVContext *flv = s->priv_data;
248     unsigned int timeslen = 0, fileposlen = 0, i;
249     char str_val[256];
250     int64_t *times = NULL;
251     int64_t *filepositions = NULL;
252     int ret = AVERROR(ENOSYS);
253     int64_t initial_pos = avio_tell(ioc);
254
255     if(vstream->nb_index_entries>0){
256         av_log(s, AV_LOG_WARNING, "Skiping duplicate index\n");
257         return 0;
258     }
259
260     if (s->flags & AVFMT_FLAG_IGNIDX)
261         return 0;
262
263     while (avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
264         int64_t** current_array;
265         unsigned int arraylen;
266
267         // Expect array object in context
268         if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
269             break;
270
271         arraylen = avio_rb32(ioc);
272         if(arraylen>>28)
273             break;
274
275         if       (!strcmp(KEYFRAMES_TIMESTAMP_TAG , str_val) && !times){
276             current_array= &times;
277             timeslen= arraylen;
278         }else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) && !filepositions){
279             current_array= &filepositions;
280             fileposlen= arraylen;
281         }else // unexpected metatag inside keyframes, will not use such metadata for indexing
282             break;
283
284         if (!(*current_array = av_mallocz(sizeof(**current_array) * arraylen))) {
285             ret = AVERROR(ENOMEM);
286             goto finish;
287         }
288
289         for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
290             if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
291                 goto invalid;
292             current_array[0][i] = av_int2double(avio_rb64(ioc));
293         }
294         if (times && filepositions) {
295             // All done, exiting at a position allowing amf_parse_object
296             // to finish parsing the object
297             ret = 0;
298             break;
299         }
300     }
301
302     if (timeslen == fileposlen && fileposlen>1 && max_pos <= filepositions[0]) {
303         for (i = 0; i < fileposlen; i++) {
304             av_add_index_entry(vstream, filepositions[i], times[i]*1000,
305                                0, 0, AVINDEX_KEYFRAME);
306             if (i < 2) {
307                 flv->validate_index[i].pos = filepositions[i];
308                 flv->validate_index[i].dts = times[i] * 1000;
309                 flv->validate_count = i + 1;
310             }
311         }
312     } else {
313 invalid:
314         av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
315     }
316
317 finish:
318     av_freep(&times);
319     av_freep(&filepositions);
320     avio_seek(ioc, initial_pos, SEEK_SET);
321     return ret;
322 }
323
324 static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
325     AVCodecContext *acodec, *vcodec;
326     FLVContext *flv = s->priv_data;
327     AVIOContext *ioc;
328     AMFDataType amf_type;
329     char str_val[256];
330     double num_val;
331
332     num_val = 0;
333     ioc = s->pb;
334
335     amf_type = avio_r8(ioc);
336
337     switch(amf_type) {
338         case AMF_DATA_TYPE_NUMBER:
339             num_val = av_int2double(avio_rb64(ioc)); break;
340         case AMF_DATA_TYPE_BOOL:
341             num_val = avio_r8(ioc); break;
342         case AMF_DATA_TYPE_STRING:
343             if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
344                 return -1;
345             break;
346         case AMF_DATA_TYPE_OBJECT:
347             if ((vstream || astream) && ioc->seekable && key && !strcmp(KEYFRAMES_TAG, key) && depth == 1)
348                 if (parse_keyframes_index(s, ioc, vstream ? vstream : astream,
349                                           max_pos) < 0)
350                     av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
351
352             while (avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
353                 if (amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
354                     return -1; //if we couldn't skip, bomb out.
355             }
356             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
357                 return -1;
358             break;
359         case AMF_DATA_TYPE_NULL:
360         case AMF_DATA_TYPE_UNDEFINED:
361         case AMF_DATA_TYPE_UNSUPPORTED:
362             break; //these take up no additional space
363         case AMF_DATA_TYPE_MIXEDARRAY:
364             avio_skip(ioc, 4); //skip 32-bit max array index
365             while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
366                 //this is the only case in which we would want a nested parse to not skip over the object
367                 if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
368                     return -1;
369             }
370             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
371                 return -1;
372             break;
373         case AMF_DATA_TYPE_ARRAY: {
374             unsigned int arraylen, i;
375
376             arraylen = avio_rb32(ioc);
377             for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
378                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
379                     return -1; //if we couldn't skip, bomb out.
380             }
381         }
382             break;
383         case AMF_DATA_TYPE_DATE:
384             avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
385             break;
386         default: //unsupported type, we couldn't skip
387             return -1;
388     }
389
390     if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
391         acodec = astream ? astream->codec : NULL;
392         vcodec = vstream ? vstream->codec : NULL;
393
394         if (amf_type == AMF_DATA_TYPE_NUMBER) {
395             if (!strcmp(key, "duration"))
396                 s->duration = num_val * AV_TIME_BASE;
397             else if (!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
398                 vcodec->bit_rate = num_val * 1024.0;
399             else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
400                 acodec->bit_rate = num_val * 1024.0;
401             else if (!strcmp(key, "datastream")) {
402                 AVStream *st = create_stream(s, AVMEDIA_TYPE_DATA);
403                 if (!st)
404                     return AVERROR(ENOMEM);
405                 st->codec->codec_id = AV_CODEC_ID_TEXT;
406             } else if (flv->trust_metadata) {
407                 if (!strcmp(key, "videocodecid") && vcodec) {
408                     flv_set_video_codec(s, vstream, num_val);
409                 } else
410                 if (!strcmp(key, "audiocodecid") && acodec) {
411                     flv_set_audio_codec(s, astream, acodec, num_val);
412                 } else
413                 if (!strcmp(key, "audiosamplerate") && acodec) {
414                     acodec->sample_rate = num_val;
415                 } else
416                 if (!strcmp(key, "width") && vcodec) {
417                     vcodec->width = num_val;
418                 } else
419                 if (!strcmp(key, "height") && vcodec) {
420                     vcodec->height = num_val;
421                 }
422             }
423         }
424
425         if (amf_type == AMF_DATA_TYPE_OBJECT && s->nb_streams == 1 &&
426            ((!acodec && !strcmp(key, "audiocodecid")) ||
427             (!vcodec && !strcmp(key, "videocodecid"))))
428                 s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
429
430         if (!strcmp(key, "duration")        ||
431             !strcmp(key, "filesize")        ||
432             !strcmp(key, "width")           ||
433             !strcmp(key, "height")          ||
434             !strcmp(key, "videodatarate")   ||
435             !strcmp(key, "framerate")       ||
436             !strcmp(key, "videocodecid")    ||
437             !strcmp(key, "audiodatarate")   ||
438             !strcmp(key, "audiosamplerate") ||
439             !strcmp(key, "audiosamplesize") ||
440             !strcmp(key, "stereo")          ||
441             !strcmp(key, "audiocodecid"))
442             return 0;
443
444         if(amf_type == AMF_DATA_TYPE_BOOL) {
445             av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
446             av_dict_set(&s->metadata, key, str_val, 0);
447         } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
448             snprintf(str_val, sizeof(str_val), "%.f", num_val);
449             av_dict_set(&s->metadata, key, str_val, 0);
450         } else if (amf_type == AMF_DATA_TYPE_STRING)
451             av_dict_set(&s->metadata, key, str_val, 0);
452     }
453
454     return 0;
455 }
456
457 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
458     AMFDataType type;
459     AVStream *stream, *astream, *vstream, *dstream;
460     AVIOContext *ioc;
461     int i;
462     char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
463
464     vstream = astream = dstream = NULL;
465     ioc = s->pb;
466
467     //first object needs to be "onMetaData" string
468     type = avio_r8(ioc);
469     if (type != AMF_DATA_TYPE_STRING ||
470         amf_get_string(ioc, buffer, sizeof(buffer)) < 0)
471         return -1;
472
473     if (!strcmp(buffer, "onTextData"))
474         return 1;
475
476     if (strcmp(buffer, "onMetaData"))
477         return -1;
478
479     //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
480     for(i = 0; i < s->nb_streams; i++) {
481         stream = s->streams[i];
482         if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
483         else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
484         else if(stream->codec->codec_type == AVMEDIA_TYPE_DATA) dstream = stream;
485     }
486
487     //parse the second object (we want a mixed array)
488     if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
489         return -1;
490
491     return 0;
492 }
493
494 static int flv_read_header(AVFormatContext *s)
495 {
496     int offset, flags;
497
498     avio_skip(s->pb, 4);
499     flags = avio_r8(s->pb);
500     /* old flvtool cleared this field */
501     /* FIXME: better fix needed */
502     if (!flags) {
503         flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
504         av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
505     }
506         s->ctx_flags |= AVFMTCTX_NOHEADER;
507
508     if(flags & FLV_HEADER_FLAG_HASVIDEO){
509         if(!create_stream(s, AVMEDIA_TYPE_VIDEO))
510             return AVERROR(ENOMEM);
511     }
512     if(flags & FLV_HEADER_FLAG_HASAUDIO){
513         if(!create_stream(s, AVMEDIA_TYPE_AUDIO))
514             return AVERROR(ENOMEM);
515     }
516     // Flag doesn't indicate whether or not there is script-data present. Must
517     // create that stream if it's encountered.
518
519     offset = avio_rb32(s->pb);
520     avio_seek(s->pb, offset, SEEK_SET);
521     avio_skip(s->pb, 4);
522
523     s->start_time = 0;
524
525     return 0;
526 }
527
528 static int flv_read_close(AVFormatContext *s)
529 {
530     int i;
531     FLVContext *flv = s->priv_data;
532     for(i=0; i<FLV_STREAM_TYPE_NB; i++)
533         av_freep(&flv->new_extradata[i]);
534     return 0;
535 }
536
537 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
538 {
539     av_free(st->codec->extradata);
540     st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
541     if (!st->codec->extradata)
542         return AVERROR(ENOMEM);
543     st->codec->extradata_size = size;
544     avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
545     return 0;
546 }
547
548 static int flv_queue_extradata(FLVContext *flv, AVIOContext *pb, int stream,
549                                int size)
550 {
551     av_free(flv->new_extradata[stream]);
552     flv->new_extradata[stream] = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
553     if (!flv->new_extradata[stream])
554         return AVERROR(ENOMEM);
555     flv->new_extradata_size[stream] = size;
556     avio_read(pb, flv->new_extradata[stream], size);
557     return 0;
558 }
559
560 static void clear_index_entries(AVFormatContext *s, int64_t pos)
561 {
562     int i, j, out;
563     av_log(s, AV_LOG_WARNING, "Found invalid index entries, clearing the index.\n");
564     for (i = 0; i < s->nb_streams; i++) {
565         AVStream *st = s->streams[i];
566         /* Remove all index entries that point to >= pos */
567         out = 0;
568         for (j = 0; j < st->nb_index_entries; j++) {
569             if (st->index_entries[j].pos < pos)
570                 st->index_entries[out++] = st->index_entries[j];
571         }
572         st->nb_index_entries = out;
573     }
574 }
575
576
577 static int flv_data_packet(AVFormatContext *s, AVPacket *pkt,
578                            int64_t dts, int64_t next)
579 {
580     int ret = AVERROR_INVALIDDATA, i;
581     AVIOContext *pb = s->pb;
582     AVStream *st = NULL;
583     AMFDataType type;
584     char buf[20];
585     int length;
586
587     type = avio_r8(pb);
588     if (type == AMF_DATA_TYPE_MIXEDARRAY)
589         avio_seek(pb, 4, SEEK_CUR);
590     else if (type != AMF_DATA_TYPE_OBJECT)
591         goto out;
592
593     amf_get_string(pb, buf, sizeof(buf));
594     if (strcmp(buf, "type") || avio_r8(pb) != AMF_DATA_TYPE_STRING)
595         goto out;
596
597     amf_get_string(pb, buf, sizeof(buf));
598     //FIXME parse it as codec_id
599     amf_get_string(pb, buf, sizeof(buf));
600     if (strcmp(buf, "text") || avio_r8(pb) != AMF_DATA_TYPE_STRING)
601         goto out;
602
603     length = avio_rb16(pb);
604     ret = av_get_packet(s->pb, pkt, length);
605     if (ret < 0) {
606         ret = AVERROR(EIO);
607         goto out;
608     }
609
610     for (i = 0; i < s->nb_streams; i++) {
611         st = s->streams[i];
612         if (st->codec->codec_type == AVMEDIA_TYPE_DATA)
613             break;
614     }
615
616     if (i == s->nb_streams) {
617         st = create_stream(s, AVMEDIA_TYPE_DATA);
618         if (!st)
619             goto out;
620         st->codec->codec_id = AV_CODEC_ID_TEXT;
621     }
622
623     pkt->dts  = dts;
624     pkt->pts  = dts;
625     pkt->size = ret;
626
627     pkt->stream_index = st->index;
628     pkt->flags |= AV_PKT_FLAG_KEY;
629
630     avio_seek(s->pb, next + 4, SEEK_SET);
631 out:
632     return ret;
633 }
634
635 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
636 {
637     FLVContext *flv = s->priv_data;
638     int ret, i, type, size, flags;
639     int stream_type=-1;
640     int64_t next, pos;
641     int64_t dts, pts = AV_NOPTS_VALUE;
642     int av_uninit(channels);
643     int av_uninit(sample_rate);
644     AVStream *st = NULL;
645
646  for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
647     pos = avio_tell(s->pb);
648     type = avio_r8(s->pb);
649     size = avio_rb24(s->pb);
650     dts = avio_rb24(s->pb);
651     dts |= avio_r8(s->pb) << 24;
652     av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
653     if (url_feof(s->pb))
654         return AVERROR_EOF;
655     avio_skip(s->pb, 3); /* stream id, always 0 */
656     flags = 0;
657
658     if (flv->validate_next < flv->validate_count) {
659         int64_t validate_pos = flv->validate_index[flv->validate_next].pos;
660         if (pos == validate_pos) {
661             if (FFABS(dts - flv->validate_index[flv->validate_next].dts) <=
662                 VALIDATE_INDEX_TS_THRESH) {
663                 flv->validate_next++;
664             } else {
665                 clear_index_entries(s, validate_pos);
666                 flv->validate_count = 0;
667             }
668         } else if (pos > validate_pos) {
669             clear_index_entries(s, validate_pos);
670             flv->validate_count = 0;
671         }
672     }
673
674     if(size == 0)
675         continue;
676
677     next= size + avio_tell(s->pb);
678
679     if (type == FLV_TAG_TYPE_AUDIO) {
680         stream_type=FLV_STREAM_TYPE_AUDIO;
681         flags = avio_r8(s->pb);
682         size--;
683     } else if (type == FLV_TAG_TYPE_VIDEO) {
684         stream_type=FLV_STREAM_TYPE_VIDEO;
685         flags = avio_r8(s->pb);
686         size--;
687         if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_VIDEO_INFO_CMD)
688             goto skip;
689     } else if (type == FLV_TAG_TYPE_META) {
690         if (size > 13+1+4 && dts == 0) { // Header-type metadata stuff
691             flv_read_metabody(s, next);
692             goto skip;
693         } else if (dts != 0) { // Script-data "special" metadata frames - don't skip
694             stream_type=FLV_STREAM_TYPE_DATA;
695         } else {
696             goto skip;
697         }
698     } else {
699         av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
700     skip:
701         avio_seek(s->pb, next, SEEK_SET);
702         continue;
703     }
704
705     /* skip empty data packets */
706     if (!size)
707         continue;
708
709     /* now find stream */
710     for(i=0;i<s->nb_streams;i++) {
711         st = s->streams[i];
712         if (stream_type == FLV_STREAM_TYPE_AUDIO) {
713             if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
714                 flv_same_audio_codec(st->codec, flags)) {
715                 break;
716             }
717         } else
718         if (stream_type == FLV_STREAM_TYPE_VIDEO) {
719             if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
720                 flv_same_video_codec(st->codec, flags)) {
721                 break;
722             }
723         } else if (stream_type == FLV_STREAM_TYPE_DATA) {
724             if (st->codec->codec_type == AVMEDIA_TYPE_DATA)
725                 break;
726         }
727     }
728     if(i == s->nb_streams){
729         av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
730         st = create_stream(s,
731              (int[]){AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_DATA}[stream_type]);
732     }
733     av_dlog(s, "%d %X %d \n", stream_type, flags, st->discard);
734     if(  (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
735        ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
736        || st->discard >= AVDISCARD_ALL
737        ){
738         avio_seek(s->pb, next, SEEK_SET);
739         continue;
740     }
741     if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
742         av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
743     break;
744  }
745
746     // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
747     if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE) && !flv->searched_for_end){
748         int size;
749         const int64_t pos= avio_tell(s->pb);
750         int64_t fsize= avio_size(s->pb);
751 retry_duration:
752         avio_seek(s->pb, fsize-4, SEEK_SET);
753         size= avio_rb32(s->pb);
754         avio_seek(s->pb, fsize-3-size, SEEK_SET);
755         if(size == avio_rb24(s->pb) + 11){
756             uint32_t ts = avio_rb24(s->pb);
757             ts |= avio_r8(s->pb) << 24;
758             if(ts)
759                 s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
760             else if (fsize >= 8 && fsize - 8 >= size){
761                 fsize -= size+4;
762                 goto retry_duration;
763             }
764         }
765
766         avio_seek(s->pb, pos, SEEK_SET);
767         flv->searched_for_end = 1;
768     }
769
770     if(stream_type == FLV_STREAM_TYPE_AUDIO){
771         int bits_per_coded_sample;
772         channels    = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
773         sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
774         bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
775         if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
776             st->codec->channels              = channels;
777             st->codec->sample_rate           = sample_rate;
778             st->codec->bits_per_coded_sample = bits_per_coded_sample;
779         }
780         if(!st->codec->codec_id){
781             flv_set_audio_codec(s, st, st->codec, flags & FLV_AUDIO_CODECID_MASK);
782             flv->last_sample_rate = sample_rate = st->codec->sample_rate;
783             flv->last_channels    = channels    = st->codec->channels;
784         } else {
785             AVCodecContext ctx;
786             ctx.sample_rate = sample_rate;
787             flv_set_audio_codec(s, st, &ctx, flags & FLV_AUDIO_CODECID_MASK);
788             sample_rate = ctx.sample_rate;
789         }
790     } else if(stream_type == FLV_STREAM_TYPE_VIDEO) {
791         size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
792     }
793
794     if (st->codec->codec_id == AV_CODEC_ID_AAC ||
795         st->codec->codec_id == AV_CODEC_ID_H264 ||
796         st->codec->codec_id == AV_CODEC_ID_MPEG4) {
797         int type = avio_r8(s->pb);
798         size--;
799         if (st->codec->codec_id == AV_CODEC_ID_H264 || st->codec->codec_id == AV_CODEC_ID_MPEG4) {
800             int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
801             pts = dts + cts;
802             if (cts < 0) { // dts are wrong
803                 flv->wrong_dts = 1;
804                 av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
805             }
806             if (flv->wrong_dts)
807                 dts = AV_NOPTS_VALUE;
808         }
809         if (type == 0 && (!st->codec->extradata || st->codec->codec_id == AV_CODEC_ID_AAC)) {
810             if (st->codec->extradata) {
811                 if ((ret = flv_queue_extradata(flv, s->pb, stream_type, size)) < 0)
812                     return ret;
813                 ret = AVERROR(EAGAIN);
814                 goto leave;
815             }
816             if ((ret = flv_get_extradata(s, st, size)) < 0)
817                 return ret;
818             if (st->codec->codec_id == AV_CODEC_ID_AAC) {
819                 MPEG4AudioConfig cfg;
820                 if (avpriv_mpeg4audio_get_config(&cfg, st->codec->extradata,
821                                              st->codec->extradata_size * 8, 1) >= 0) {
822                 st->codec->channels = cfg.channels;
823                 if (cfg.ext_sample_rate)
824                     st->codec->sample_rate = cfg.ext_sample_rate;
825                 else
826                     st->codec->sample_rate = cfg.sample_rate;
827                 av_dlog(s, "mp4a config channels %d sample rate %d\n",
828                         st->codec->channels, st->codec->sample_rate);
829                 }
830             }
831
832             ret = AVERROR(EAGAIN);
833             goto leave;
834         }
835     }
836
837     /* skip empty data packets */
838     if (!size) {
839         ret = AVERROR(EAGAIN);
840         goto leave;
841     }
842
843     ret= av_get_packet(s->pb, pkt, size);
844     if (ret < 0)
845         return ret;
846     pkt->dts = dts;
847     pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
848     pkt->stream_index = st->index;
849     if (flv->new_extradata[stream_type]) {
850         uint8_t *side = av_packet_new_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
851                                                 flv->new_extradata_size[stream_type]);
852         if (side) {
853             memcpy(side, flv->new_extradata[stream_type],
854                    flv->new_extradata_size[stream_type]);
855             av_freep(&flv->new_extradata[stream_type]);
856             flv->new_extradata_size[stream_type] = 0;
857         }
858     }
859     if (stream_type == FLV_STREAM_TYPE_AUDIO && (sample_rate != flv->last_sample_rate ||
860                      channels != flv->last_channels)) {
861         flv->last_sample_rate = sample_rate;
862         flv->last_channels    = channels;
863         ff_add_param_change(pkt, channels, 0, sample_rate, 0, 0);
864     }
865
866     if (    stream_type == FLV_STREAM_TYPE_AUDIO ||
867             ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
868             stream_type == FLV_STREAM_TYPE_DATA)
869         pkt->flags |= AV_PKT_FLAG_KEY;
870
871 leave:
872     avio_skip(s->pb, 4);
873     return ret;
874 }
875
876 static int flv_read_seek(AVFormatContext *s, int stream_index,
877     int64_t ts, int flags)
878 {
879     FLVContext *flv = s->priv_data;
880     flv->validate_count = 0;
881     return avio_seek_time(s->pb, stream_index, ts, flags);
882 }
883
884 #define OFFSET(x) offsetof(FLVContext, x)
885 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
886 static const AVOption options[] = {
887     { "flv_metadata", "Allocate streams according the onMetaData array",      OFFSET(trust_metadata), AV_OPT_TYPE_INT,    { .i64 = 0 }, 0, 1, VD},
888     { NULL }
889 };
890
891 static const AVClass class = {
892     .class_name = "flvdec",
893     .item_name  = av_default_item_name,
894     .option     = options,
895     .version    = LIBAVUTIL_VERSION_INT,
896 };
897
898 AVInputFormat ff_flv_demuxer = {
899     .name           = "flv",
900     .long_name      = NULL_IF_CONFIG_SMALL("FLV (Flash Video)"),
901     .priv_data_size = sizeof(FLVContext),
902     .read_probe     = flv_probe,
903     .read_header    = flv_read_header,
904     .read_packet    = flv_read_packet,
905     .read_seek      = flv_read_seek,
906     .read_close     = flv_read_close,
907     .extensions     = "flv",
908     .priv_class     = &class,
909 };