]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
avformat: Forward errors where possible
[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 4 bits: difference between encoded width and visible width
8  *  - lower 4 bits: 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/channel_layout.h"
29 #include "libavutil/dict.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/intfloat.h"
32 #include "libavutil/mathematics.h"
33 #include "libavutil/time_internal.h"
34 #include "libavcodec/bytestream.h"
35 #include "avformat.h"
36 #include "internal.h"
37 #include "avio_internal.h"
38 #include "flv.h"
39
40 #define VALIDATE_INDEX_TS_THRESH 2500
41
42 #define RESYNC_BUFFER_SIZE (1<<20)
43
44 typedef struct FLVContext {
45     const AVClass *class; ///< Class for private options.
46     int trust_metadata;   ///< configure streams according onMetaData
47     int trust_datasize;   ///< trust data size of FLVTag
48     int dump_full_metadata;   ///< Dump full metadata of the onMetadata
49     int wrong_dts;        ///< wrong dts due to negative cts
50     uint8_t *new_extradata[FLV_STREAM_TYPE_NB];
51     int new_extradata_size[FLV_STREAM_TYPE_NB];
52     int last_sample_rate;
53     int last_channels;
54     struct {
55         int64_t dts;
56         int64_t pos;
57     } validate_index[2];
58     int validate_next;
59     int validate_count;
60     int searched_for_end;
61
62     uint8_t resync_buffer[2*RESYNC_BUFFER_SIZE];
63
64     int broken_sizes;
65     int sum_flv_tag_size;
66
67     int last_keyframe_stream_index;
68     int keyframe_count;
69     int64_t video_bit_rate;
70     int64_t audio_bit_rate;
71     int64_t *keyframe_times;
72     int64_t *keyframe_filepositions;
73     int missing_streams;
74     AVRational framerate;
75     int64_t last_ts;
76     int64_t time_offset;
77     int64_t time_pos;
78 } FLVContext;
79
80 /* AMF date type */
81 typedef struct amf_date {
82     double   milliseconds;
83     int16_t  timezone;
84 } amf_date;
85
86 static int probe(const AVProbeData *p, int live)
87 {
88     const uint8_t *d = p->buf;
89     unsigned offset = AV_RB32(d + 5);
90
91     if (d[0] == 'F' &&
92         d[1] == 'L' &&
93         d[2] == 'V' &&
94         d[3] < 5 && d[5] == 0 &&
95         offset + 100 < p->buf_size &&
96         offset > 8) {
97         int is_live = !memcmp(d + offset + 40, "NGINX RTMP", 10);
98
99         if (live == is_live)
100             return AVPROBE_SCORE_MAX;
101     }
102     return 0;
103 }
104
105 static int flv_probe(const AVProbeData *p)
106 {
107     return probe(p, 0);
108 }
109
110 static int live_flv_probe(const AVProbeData *p)
111 {
112     return probe(p, 1);
113 }
114
115 static int kux_probe(const AVProbeData *p)
116 {
117     const uint8_t *d = p->buf;
118
119     if (d[0] == 'K' &&
120         d[1] == 'D' &&
121         d[2] == 'K' &&
122         d[3] == 0 &&
123         d[4] == 0) {
124         return AVPROBE_SCORE_EXTENSION + 1;
125     }
126     return 0;
127 }
128
129 static void add_keyframes_index(AVFormatContext *s)
130 {
131     FLVContext *flv   = s->priv_data;
132     AVStream *stream  = NULL;
133     unsigned int i    = 0;
134
135     if (flv->last_keyframe_stream_index < 0) {
136         av_log(s, AV_LOG_DEBUG, "keyframe stream hasn't been created\n");
137         return;
138     }
139
140     av_assert0(flv->last_keyframe_stream_index <= s->nb_streams);
141     stream = s->streams[flv->last_keyframe_stream_index];
142
143     if (stream->nb_index_entries == 0) {
144         for (i = 0; i < flv->keyframe_count; i++) {
145             av_log(s, AV_LOG_TRACE, "keyframe filepositions = %"PRId64" times = %"PRId64"\n",
146                    flv->keyframe_filepositions[i], flv->keyframe_times[i] * 1000);
147             av_add_index_entry(stream, flv->keyframe_filepositions[i],
148                 flv->keyframe_times[i] * 1000, 0, 0, AVINDEX_KEYFRAME);
149         }
150     } else
151         av_log(s, AV_LOG_WARNING, "Skipping duplicate index\n");
152
153     if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
154         av_freep(&flv->keyframe_times);
155         av_freep(&flv->keyframe_filepositions);
156         flv->keyframe_count = 0;
157     }
158 }
159
160 static AVStream *create_stream(AVFormatContext *s, int codec_type)
161 {
162     FLVContext *flv   = s->priv_data;
163     AVStream *st = avformat_new_stream(s, NULL);
164     if (!st)
165         return NULL;
166     st->codecpar->codec_type = codec_type;
167     if (s->nb_streams>=3 ||(   s->nb_streams==2
168                            && s->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE
169                            && s->streams[1]->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE
170                            && s->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_DATA
171                            && s->streams[1]->codecpar->codec_type != AVMEDIA_TYPE_DATA))
172         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
173     if (codec_type == AVMEDIA_TYPE_AUDIO) {
174         st->codecpar->bit_rate = flv->audio_bit_rate;
175         flv->missing_streams &= ~FLV_HEADER_FLAG_HASAUDIO;
176     }
177     if (codec_type == AVMEDIA_TYPE_VIDEO) {
178         st->codecpar->bit_rate = flv->video_bit_rate;
179         flv->missing_streams &= ~FLV_HEADER_FLAG_HASVIDEO;
180         st->avg_frame_rate = flv->framerate;
181     }
182
183
184     avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
185     flv->last_keyframe_stream_index = s->nb_streams - 1;
186     add_keyframes_index(s);
187     return st;
188 }
189
190 static int flv_same_audio_codec(AVCodecParameters *apar, int flags)
191 {
192     int bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
193     int flv_codecid           = flags & FLV_AUDIO_CODECID_MASK;
194     int codec_id;
195
196     if (!apar->codec_id && !apar->codec_tag)
197         return 1;
198
199     if (apar->bits_per_coded_sample != bits_per_coded_sample)
200         return 0;
201
202     switch (flv_codecid) {
203     // no distinction between S16 and S8 PCM codec flags
204     case FLV_CODECID_PCM:
205         codec_id = bits_per_coded_sample == 8
206                    ? AV_CODEC_ID_PCM_U8
207 #if HAVE_BIGENDIAN
208                    : AV_CODEC_ID_PCM_S16BE;
209 #else
210                    : AV_CODEC_ID_PCM_S16LE;
211 #endif
212         return codec_id == apar->codec_id;
213     case FLV_CODECID_PCM_LE:
214         codec_id = bits_per_coded_sample == 8
215                    ? AV_CODEC_ID_PCM_U8
216                    : AV_CODEC_ID_PCM_S16LE;
217         return codec_id == apar->codec_id;
218     case FLV_CODECID_AAC:
219         return apar->codec_id == AV_CODEC_ID_AAC;
220     case FLV_CODECID_ADPCM:
221         return apar->codec_id == AV_CODEC_ID_ADPCM_SWF;
222     case FLV_CODECID_SPEEX:
223         return apar->codec_id == AV_CODEC_ID_SPEEX;
224     case FLV_CODECID_MP3:
225         return apar->codec_id == AV_CODEC_ID_MP3;
226     case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
227     case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
228     case FLV_CODECID_NELLYMOSER:
229         return apar->codec_id == AV_CODEC_ID_NELLYMOSER;
230     case FLV_CODECID_PCM_MULAW:
231         return apar->sample_rate == 8000 &&
232                apar->codec_id    == AV_CODEC_ID_PCM_MULAW;
233     case FLV_CODECID_PCM_ALAW:
234         return apar->sample_rate == 8000 &&
235                apar->codec_id    == AV_CODEC_ID_PCM_ALAW;
236     default:
237         return apar->codec_tag == (flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
238     }
239 }
240
241 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream,
242                                 AVCodecParameters *apar, int flv_codecid)
243 {
244     switch (flv_codecid) {
245     // no distinction between S16 and S8 PCM codec flags
246     case FLV_CODECID_PCM:
247         apar->codec_id = apar->bits_per_coded_sample == 8
248                            ? AV_CODEC_ID_PCM_U8
249 #if HAVE_BIGENDIAN
250                            : AV_CODEC_ID_PCM_S16BE;
251 #else
252                            : AV_CODEC_ID_PCM_S16LE;
253 #endif
254         break;
255     case FLV_CODECID_PCM_LE:
256         apar->codec_id = apar->bits_per_coded_sample == 8
257                            ? AV_CODEC_ID_PCM_U8
258                            : AV_CODEC_ID_PCM_S16LE;
259         break;
260     case FLV_CODECID_AAC:
261         apar->codec_id = AV_CODEC_ID_AAC;
262         break;
263     case FLV_CODECID_ADPCM:
264         apar->codec_id = AV_CODEC_ID_ADPCM_SWF;
265         break;
266     case FLV_CODECID_SPEEX:
267         apar->codec_id    = AV_CODEC_ID_SPEEX;
268         apar->sample_rate = 16000;
269         break;
270     case FLV_CODECID_MP3:
271         apar->codec_id      = AV_CODEC_ID_MP3;
272         astream->need_parsing = AVSTREAM_PARSE_FULL;
273         break;
274     case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
275         // in case metadata does not otherwise declare samplerate
276         apar->sample_rate = 8000;
277         apar->codec_id    = AV_CODEC_ID_NELLYMOSER;
278         break;
279     case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
280         apar->sample_rate = 16000;
281         apar->codec_id    = AV_CODEC_ID_NELLYMOSER;
282         break;
283     case FLV_CODECID_NELLYMOSER:
284         apar->codec_id = AV_CODEC_ID_NELLYMOSER;
285         break;
286     case FLV_CODECID_PCM_MULAW:
287         apar->sample_rate = 8000;
288         apar->codec_id    = AV_CODEC_ID_PCM_MULAW;
289         break;
290     case FLV_CODECID_PCM_ALAW:
291         apar->sample_rate = 8000;
292         apar->codec_id    = AV_CODEC_ID_PCM_ALAW;
293         break;
294     default:
295         avpriv_request_sample(s, "Audio codec (%x)",
296                flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
297         apar->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
298     }
299 }
300
301 static int flv_same_video_codec(AVCodecParameters *vpar, int flags)
302 {
303     int flv_codecid = flags & FLV_VIDEO_CODECID_MASK;
304
305     if (!vpar->codec_id && !vpar->codec_tag)
306         return 1;
307
308     switch (flv_codecid) {
309     case FLV_CODECID_H263:
310         return vpar->codec_id == AV_CODEC_ID_FLV1;
311     case FLV_CODECID_SCREEN:
312         return vpar->codec_id == AV_CODEC_ID_FLASHSV;
313     case FLV_CODECID_SCREEN2:
314         return vpar->codec_id == AV_CODEC_ID_FLASHSV2;
315     case FLV_CODECID_VP6:
316         return vpar->codec_id == AV_CODEC_ID_VP6F;
317     case FLV_CODECID_VP6A:
318         return vpar->codec_id == AV_CODEC_ID_VP6A;
319     case FLV_CODECID_H264:
320         return vpar->codec_id == AV_CODEC_ID_H264;
321     default:
322         return vpar->codec_tag == flv_codecid;
323     }
324 }
325
326 static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream,
327                                int flv_codecid, int read)
328 {
329     int ret = 0;
330     AVCodecParameters *par = vstream->codecpar;
331     enum AVCodecID old_codec_id = vstream->codecpar->codec_id;
332     switch (flv_codecid) {
333     case FLV_CODECID_H263:
334         par->codec_id = AV_CODEC_ID_FLV1;
335         break;
336     case FLV_CODECID_REALH263:
337         par->codec_id = AV_CODEC_ID_H263;
338         break; // Really mean it this time
339     case FLV_CODECID_SCREEN:
340         par->codec_id = AV_CODEC_ID_FLASHSV;
341         break;
342     case FLV_CODECID_SCREEN2:
343         par->codec_id = AV_CODEC_ID_FLASHSV2;
344         break;
345     case FLV_CODECID_VP6:
346         par->codec_id = AV_CODEC_ID_VP6F;
347     case FLV_CODECID_VP6A:
348         if (flv_codecid == FLV_CODECID_VP6A)
349             par->codec_id = AV_CODEC_ID_VP6A;
350         if (read) {
351             if (par->extradata_size != 1) {
352                 ff_alloc_extradata(par, 1);
353             }
354             if (par->extradata)
355                 par->extradata[0] = avio_r8(s->pb);
356             else
357                 avio_skip(s->pb, 1);
358         }
359         ret = 1;     // 1 byte body size adjustment for flv_read_packet()
360         break;
361     case FLV_CODECID_H264:
362         par->codec_id = AV_CODEC_ID_H264;
363         vstream->need_parsing = AVSTREAM_PARSE_HEADERS;
364         ret = 3;     // not 4, reading packet type will consume one byte
365         break;
366     case FLV_CODECID_MPEG4:
367         par->codec_id = AV_CODEC_ID_MPEG4;
368         ret = 3;
369         break;
370     default:
371         avpriv_request_sample(s, "Video codec (%x)", flv_codecid);
372         par->codec_tag = flv_codecid;
373     }
374
375     if (!vstream->internal->need_context_update && par->codec_id != old_codec_id) {
376         avpriv_request_sample(s, "Changing the codec id midstream");
377         return AVERROR_PATCHWELCOME;
378     }
379
380     return ret;
381 }
382
383 static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize)
384 {
385     int length = avio_rb16(ioc);
386     if (length >= buffsize) {
387         avio_skip(ioc, length);
388         return -1;
389     }
390
391     avio_read(ioc, buffer, length);
392
393     buffer[length] = '\0';
394
395     return length;
396 }
397
398 static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, int64_t max_pos)
399 {
400     FLVContext *flv       = s->priv_data;
401     unsigned int timeslen = 0, fileposlen = 0, i;
402     char str_val[256];
403     int64_t *times         = NULL;
404     int64_t *filepositions = NULL;
405     int ret                = AVERROR(ENOSYS);
406     int64_t initial_pos    = avio_tell(ioc);
407
408     if (flv->keyframe_count > 0) {
409         av_log(s, AV_LOG_DEBUG, "keyframes have been parsed\n");
410         return 0;
411     }
412     av_assert0(!flv->keyframe_times);
413     av_assert0(!flv->keyframe_filepositions);
414
415     if (s->flags & AVFMT_FLAG_IGNIDX)
416         return 0;
417
418     while (avio_tell(ioc) < max_pos - 2 &&
419            amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
420         int64_t **current_array;
421         unsigned int arraylen;
422
423         // Expect array object in context
424         if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
425             break;
426
427         arraylen = avio_rb32(ioc);
428         if (arraylen>>28)
429             break;
430
431         if       (!strcmp(KEYFRAMES_TIMESTAMP_TAG , str_val) && !times) {
432             current_array = &times;
433             timeslen      = arraylen;
434         } else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) &&
435                    !filepositions) {
436             current_array = &filepositions;
437             fileposlen    = arraylen;
438         } else
439             // unexpected metatag inside keyframes, will not use such
440             // metadata for indexing
441             break;
442
443         if (!(*current_array = av_mallocz(sizeof(**current_array) * arraylen))) {
444             ret = AVERROR(ENOMEM);
445             goto finish;
446         }
447
448         for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
449             if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
450                 goto invalid;
451             current_array[0][i] = av_int2double(avio_rb64(ioc));
452         }
453         if (times && filepositions) {
454             // All done, exiting at a position allowing amf_parse_object
455             // to finish parsing the object
456             ret = 0;
457             break;
458         }
459     }
460
461     if (timeslen == fileposlen && fileposlen>1 && max_pos <= filepositions[0]) {
462         for (i = 0; i < FFMIN(2,fileposlen); i++) {
463             flv->validate_index[i].pos = filepositions[i];
464             flv->validate_index[i].dts = times[i] * 1000;
465             flv->validate_count        = i + 1;
466         }
467         flv->keyframe_times = times;
468         flv->keyframe_filepositions = filepositions;
469         flv->keyframe_count = timeslen;
470         times = NULL;
471         filepositions = NULL;
472     } else {
473 invalid:
474         av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
475     }
476
477 finish:
478     av_freep(&times);
479     av_freep(&filepositions);
480     avio_seek(ioc, initial_pos, SEEK_SET);
481     return ret;
482 }
483
484 static int amf_parse_object(AVFormatContext *s, AVStream *astream,
485                             AVStream *vstream, const char *key,
486                             int64_t max_pos, int depth)
487 {
488     AVCodecParameters *apar, *vpar;
489     FLVContext *flv = s->priv_data;
490     AVIOContext *ioc;
491     AMFDataType amf_type;
492     char str_val[1024];
493     double num_val;
494     amf_date date;
495
496     num_val  = 0;
497     ioc      = s->pb;
498     amf_type = avio_r8(ioc);
499
500     switch (amf_type) {
501     case AMF_DATA_TYPE_NUMBER:
502         num_val = av_int2double(avio_rb64(ioc));
503         break;
504     case AMF_DATA_TYPE_BOOL:
505         num_val = avio_r8(ioc);
506         break;
507     case AMF_DATA_TYPE_STRING:
508         if (amf_get_string(ioc, str_val, sizeof(str_val)) < 0) {
509             av_log(s, AV_LOG_ERROR, "AMF_DATA_TYPE_STRING parsing failed\n");
510             return -1;
511         }
512         break;
513     case AMF_DATA_TYPE_OBJECT:
514         if (key &&
515             (ioc->seekable & AVIO_SEEKABLE_NORMAL) &&
516             !strcmp(KEYFRAMES_TAG, key) && depth == 1)
517             if (parse_keyframes_index(s, ioc,
518                                       max_pos) < 0)
519                 av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
520             else
521                 add_keyframes_index(s);
522         while (avio_tell(ioc) < max_pos - 2 &&
523                amf_get_string(ioc, str_val, sizeof(str_val)) > 0)
524             if (amf_parse_object(s, astream, vstream, str_val, max_pos,
525                                  depth + 1) < 0)
526                 return -1;     // if we couldn't skip, bomb out.
527         if (avio_r8(ioc) != AMF_END_OF_OBJECT) {
528             av_log(s, AV_LOG_ERROR, "Missing AMF_END_OF_OBJECT in AMF_DATA_TYPE_OBJECT\n");
529             return -1;
530         }
531         break;
532     case AMF_DATA_TYPE_NULL:
533     case AMF_DATA_TYPE_UNDEFINED:
534     case AMF_DATA_TYPE_UNSUPPORTED:
535         break;     // these take up no additional space
536     case AMF_DATA_TYPE_MIXEDARRAY:
537     {
538         unsigned v;
539         avio_skip(ioc, 4);     // skip 32-bit max array index
540         while (avio_tell(ioc) < max_pos - 2 &&
541                amf_get_string(ioc, str_val, sizeof(str_val)) > 0)
542             // this is the only case in which we would want a nested
543             // parse to not skip over the object
544             if (amf_parse_object(s, astream, vstream, str_val, max_pos,
545                                  depth + 1) < 0)
546                 return -1;
547         v = avio_r8(ioc);
548         if (v != AMF_END_OF_OBJECT) {
549             av_log(s, AV_LOG_ERROR, "Missing AMF_END_OF_OBJECT in AMF_DATA_TYPE_MIXEDARRAY, found %d\n", v);
550             return -1;
551         }
552         break;
553     }
554     case AMF_DATA_TYPE_ARRAY:
555     {
556         unsigned int arraylen, i;
557
558         arraylen = avio_rb32(ioc);
559         for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++)
560             if (amf_parse_object(s, NULL, NULL, NULL, max_pos,
561                                  depth + 1) < 0)
562                 return -1;      // if we couldn't skip, bomb out.
563     }
564     break;
565     case AMF_DATA_TYPE_DATE:
566         // timestamp (double) and UTC offset (int16)
567         date.milliseconds = av_int2double(avio_rb64(ioc));
568         date.timezone = avio_rb16(ioc);
569         break;
570     default:                    // unsupported type, we couldn't skip
571         av_log(s, AV_LOG_ERROR, "unsupported amf type %d\n", amf_type);
572         return -1;
573     }
574
575     if (key) {
576         apar = astream ? astream->codecpar : NULL;
577         vpar = vstream ? vstream->codecpar : NULL;
578
579         // stream info doesn't live any deeper than the first object
580         if (depth == 1) {
581             if (amf_type == AMF_DATA_TYPE_NUMBER ||
582                 amf_type == AMF_DATA_TYPE_BOOL) {
583                 if (!strcmp(key, "duration"))
584                     s->duration = num_val * AV_TIME_BASE;
585                 else if (!strcmp(key, "videodatarate") &&
586                          0 <= (int)(num_val * 1024.0))
587                     flv->video_bit_rate = num_val * 1024.0;
588                 else if (!strcmp(key, "audiodatarate") &&
589                          0 <= (int)(num_val * 1024.0))
590                     flv->audio_bit_rate = num_val * 1024.0;
591                 else if (!strcmp(key, "datastream")) {
592                     AVStream *st = create_stream(s, AVMEDIA_TYPE_SUBTITLE);
593                     if (!st)
594                         return AVERROR(ENOMEM);
595                     st->codecpar->codec_id = AV_CODEC_ID_TEXT;
596                 } else if (!strcmp(key, "framerate")) {
597                     flv->framerate = av_d2q(num_val, 1000);
598                     if (vstream)
599                         vstream->avg_frame_rate = flv->framerate;
600                 } else if (flv->trust_metadata) {
601                     if (!strcmp(key, "videocodecid") && vpar) {
602                         int ret = flv_set_video_codec(s, vstream, num_val, 0);
603                         if (ret < 0)
604                             return ret;
605                     } else if (!strcmp(key, "audiocodecid") && apar) {
606                         int id = ((int)num_val) << FLV_AUDIO_CODECID_OFFSET;
607                         flv_set_audio_codec(s, astream, apar, id);
608                     } else if (!strcmp(key, "audiosamplerate") && apar) {
609                         apar->sample_rate = num_val;
610                     } else if (!strcmp(key, "audiosamplesize") && apar) {
611                         apar->bits_per_coded_sample = num_val;
612                     } else if (!strcmp(key, "stereo") && apar) {
613                         apar->channels       = num_val + 1;
614                         apar->channel_layout = apar->channels == 2 ?
615                                                AV_CH_LAYOUT_STEREO :
616                                                AV_CH_LAYOUT_MONO;
617                     } else if (!strcmp(key, "width") && vpar) {
618                         vpar->width = num_val;
619                     } else if (!strcmp(key, "height") && vpar) {
620                         vpar->height = num_val;
621                     }
622                 }
623             }
624             if (amf_type == AMF_DATA_TYPE_STRING) {
625                 if (!strcmp(key, "encoder")) {
626                     int version = -1;
627                     if (1 == sscanf(str_val, "Open Broadcaster Software v0.%d", &version)) {
628                         if (version > 0 && version <= 655)
629                             flv->broken_sizes = 1;
630                     }
631                 } else if (!strcmp(key, "metadatacreator")) {
632                     if (   !strcmp (str_val, "MEGA")
633                         || !strncmp(str_val, "FlixEngine", 10))
634                         flv->broken_sizes = 1;
635                 }
636             }
637         }
638
639         if (amf_type == AMF_DATA_TYPE_OBJECT && s->nb_streams == 1 &&
640            ((!apar && !strcmp(key, "audiocodecid")) ||
641             (!vpar && !strcmp(key, "videocodecid"))))
642                 s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
643
644         if ((!strcmp(key, "duration")        ||
645             !strcmp(key, "filesize")        ||
646             !strcmp(key, "width")           ||
647             !strcmp(key, "height")          ||
648             !strcmp(key, "videodatarate")   ||
649             !strcmp(key, "framerate")       ||
650             !strcmp(key, "videocodecid")    ||
651             !strcmp(key, "audiodatarate")   ||
652             !strcmp(key, "audiosamplerate") ||
653             !strcmp(key, "audiosamplesize") ||
654             !strcmp(key, "stereo")          ||
655             !strcmp(key, "audiocodecid")    ||
656             !strcmp(key, "datastream")) && !flv->dump_full_metadata)
657             return 0;
658
659         s->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
660         if (amf_type == AMF_DATA_TYPE_BOOL) {
661             av_strlcpy(str_val, num_val > 0 ? "true" : "false",
662                        sizeof(str_val));
663             av_dict_set(&s->metadata, key, str_val, 0);
664         } else if (amf_type == AMF_DATA_TYPE_NUMBER) {
665             snprintf(str_val, sizeof(str_val), "%.f", num_val);
666             av_dict_set(&s->metadata, key, str_val, 0);
667         } else if (amf_type == AMF_DATA_TYPE_STRING) {
668             av_dict_set(&s->metadata, key, str_val, 0);
669         } else if (amf_type == AMF_DATA_TYPE_DATE) {
670             time_t time;
671             struct tm t;
672             char datestr[128];
673             time =  date.milliseconds / 1000; // to seconds
674             localtime_r(&time, &t);
675             strftime(datestr, sizeof(datestr), "%a, %d %b %Y %H:%M:%S %z", &t);
676
677             av_dict_set(&s->metadata, key, datestr, 0);
678         }
679     }
680
681     return 0;
682 }
683
684 #define TYPE_ONTEXTDATA 1
685 #define TYPE_ONCAPTION 2
686 #define TYPE_ONCAPTIONINFO 3
687 #define TYPE_UNKNOWN 9
688
689 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos)
690 {
691     FLVContext *flv = s->priv_data;
692     AMFDataType type;
693     AVStream *stream, *astream, *vstream;
694     AVStream av_unused *dstream;
695     AVIOContext *ioc;
696     int i;
697     char buffer[32];
698
699     astream = NULL;
700     vstream = NULL;
701     dstream = NULL;
702     ioc     = s->pb;
703
704     // first object needs to be "onMetaData" string
705     type = avio_r8(ioc);
706     if (type != AMF_DATA_TYPE_STRING ||
707         amf_get_string(ioc, buffer, sizeof(buffer)) < 0)
708         return TYPE_UNKNOWN;
709
710     if (!strcmp(buffer, "onTextData"))
711         return TYPE_ONTEXTDATA;
712
713     if (!strcmp(buffer, "onCaption"))
714         return TYPE_ONCAPTION;
715
716     if (!strcmp(buffer, "onCaptionInfo"))
717         return TYPE_ONCAPTIONINFO;
718
719     if (strcmp(buffer, "onMetaData") && strcmp(buffer, "onCuePoint")) {
720         av_log(s, AV_LOG_DEBUG, "Unknown type %s\n", buffer);
721         return TYPE_UNKNOWN;
722     }
723
724     // find the streams now so that amf_parse_object doesn't need to do
725     // the lookup every time it is called.
726     for (i = 0; i < s->nb_streams; i++) {
727         stream = s->streams[i];
728         if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
729             vstream = stream;
730             flv->last_keyframe_stream_index = i;
731         } else if (stream->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
732             astream = stream;
733             if (flv->last_keyframe_stream_index == -1)
734                 flv->last_keyframe_stream_index = i;
735         }
736         else if (stream->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE)
737             dstream = stream;
738     }
739
740     // parse the second object (we want a mixed array)
741     if (amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
742         return -1;
743
744     return 0;
745 }
746
747 static int flv_read_header(AVFormatContext *s)
748 {
749     int flags;
750     FLVContext *flv = s->priv_data;
751     int offset;
752     int pre_tag_size = 0;
753
754     /* Actual FLV data at 0xe40000 in KUX file */
755     if(!strcmp(s->iformat->name, "kux"))
756         avio_skip(s->pb, 0xe40000);
757
758     avio_skip(s->pb, 4);
759     flags = avio_r8(s->pb);
760
761     flv->missing_streams = flags & (FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO);
762
763     s->ctx_flags |= AVFMTCTX_NOHEADER;
764
765     offset = avio_rb32(s->pb);
766     avio_seek(s->pb, offset, SEEK_SET);
767
768     /* Annex E. The FLV File Format
769      * E.3 TheFLVFileBody
770      *     Field               Type    Comment
771      *     PreviousTagSize0    UI32    Always 0
772      * */
773     pre_tag_size = avio_rb32(s->pb);
774     if (pre_tag_size) {
775         av_log(s, AV_LOG_WARNING, "Read FLV header error, input file is not a standard flv format, first PreviousTagSize0 always is 0\n");
776     }
777
778     s->start_time = 0;
779     flv->sum_flv_tag_size = 0;
780     flv->last_keyframe_stream_index = -1;
781
782     return 0;
783 }
784
785 static int flv_read_close(AVFormatContext *s)
786 {
787     int i;
788     FLVContext *flv = s->priv_data;
789     for (i=0; i<FLV_STREAM_TYPE_NB; i++)
790         av_freep(&flv->new_extradata[i]);
791     av_freep(&flv->keyframe_times);
792     av_freep(&flv->keyframe_filepositions);
793     return 0;
794 }
795
796 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
797 {
798     int ret;
799     if (!size)
800         return 0;
801
802     av_freep(&st->codecpar->extradata);
803     if ((ret = ff_get_extradata(s, st->codecpar, s->pb, size)) < 0)
804         return ret;
805     st->internal->need_context_update = 1;
806     return 0;
807 }
808
809 static int flv_queue_extradata(FLVContext *flv, AVIOContext *pb, int stream,
810                                int size)
811 {
812     if (!size)
813         return 0;
814
815     av_free(flv->new_extradata[stream]);
816     flv->new_extradata[stream] = av_mallocz(size +
817                                             AV_INPUT_BUFFER_PADDING_SIZE);
818     if (!flv->new_extradata[stream])
819         return AVERROR(ENOMEM);
820     flv->new_extradata_size[stream] = size;
821     avio_read(pb, flv->new_extradata[stream], size);
822     return 0;
823 }
824
825 static void clear_index_entries(AVFormatContext *s, int64_t pos)
826 {
827     int i, j, out;
828     av_log(s, AV_LOG_WARNING,
829            "Found invalid index entries, clearing the index.\n");
830     for (i = 0; i < s->nb_streams; i++) {
831         AVStream *st = s->streams[i];
832         /* Remove all index entries that point to >= pos */
833         out = 0;
834         for (j = 0; j < st->nb_index_entries; j++)
835             if (st->index_entries[j].pos < pos)
836                 st->index_entries[out++] = st->index_entries[j];
837         st->nb_index_entries = out;
838     }
839 }
840
841 static int amf_skip_tag(AVIOContext *pb, AMFDataType type)
842 {
843     int nb = -1, ret, parse_name = 1;
844
845     switch (type) {
846     case AMF_DATA_TYPE_NUMBER:
847         avio_skip(pb, 8);
848         break;
849     case AMF_DATA_TYPE_BOOL:
850         avio_skip(pb, 1);
851         break;
852     case AMF_DATA_TYPE_STRING:
853         avio_skip(pb, avio_rb16(pb));
854         break;
855     case AMF_DATA_TYPE_ARRAY:
856         parse_name = 0;
857     case AMF_DATA_TYPE_MIXEDARRAY:
858         nb = avio_rb32(pb);
859     case AMF_DATA_TYPE_OBJECT:
860         while(!pb->eof_reached && (nb-- > 0 || type != AMF_DATA_TYPE_ARRAY)) {
861             if (parse_name) {
862                 int size = avio_rb16(pb);
863                 if (!size) {
864                     avio_skip(pb, 1);
865                     break;
866                 }
867                 avio_skip(pb, size);
868             }
869             if ((ret = amf_skip_tag(pb, avio_r8(pb))) < 0)
870                 return ret;
871         }
872         break;
873     case AMF_DATA_TYPE_NULL:
874     case AMF_DATA_TYPE_OBJECT_END:
875         break;
876     default:
877         return AVERROR_INVALIDDATA;
878     }
879     return 0;
880 }
881
882 static int flv_data_packet(AVFormatContext *s, AVPacket *pkt,
883                            int64_t dts, int64_t next)
884 {
885     AVIOContext *pb = s->pb;
886     AVStream *st    = NULL;
887     char buf[20];
888     int ret = AVERROR_INVALIDDATA;
889     int i, length = -1;
890     int array = 0;
891
892     switch (avio_r8(pb)) {
893     case AMF_DATA_TYPE_ARRAY:
894         array = 1;
895     case AMF_DATA_TYPE_MIXEDARRAY:
896         avio_seek(pb, 4, SEEK_CUR);
897     case AMF_DATA_TYPE_OBJECT:
898         break;
899     default:
900         goto skip;
901     }
902
903     while (array || (ret = amf_get_string(pb, buf, sizeof(buf))) > 0) {
904         AMFDataType type = avio_r8(pb);
905         if (type == AMF_DATA_TYPE_STRING && (array || !strcmp(buf, "text"))) {
906             length = avio_rb16(pb);
907             ret    = av_get_packet(pb, pkt, length);
908             if (ret < 0)
909                 goto skip;
910             else
911                 break;
912         } else {
913             if ((ret = amf_skip_tag(pb, type)) < 0)
914                 goto skip;
915         }
916     }
917
918     if (length < 0) {
919         ret = AVERROR_INVALIDDATA;
920         goto skip;
921     }
922
923     for (i = 0; i < s->nb_streams; i++) {
924         st = s->streams[i];
925         if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE)
926             break;
927     }
928
929     if (i == s->nb_streams) {
930         st = create_stream(s, AVMEDIA_TYPE_SUBTITLE);
931         if (!st)
932             return AVERROR(ENOMEM);
933         st->codecpar->codec_id = AV_CODEC_ID_TEXT;
934     }
935
936     pkt->dts  = dts;
937     pkt->pts  = dts;
938     pkt->size = ret;
939
940     pkt->stream_index = st->index;
941     pkt->flags       |= AV_PKT_FLAG_KEY;
942
943 skip:
944     avio_seek(s->pb, next + 4, SEEK_SET);
945
946     return ret;
947 }
948
949 static int resync(AVFormatContext *s)
950 {
951     FLVContext *flv = s->priv_data;
952     int64_t i;
953     int64_t pos = avio_tell(s->pb);
954
955     for (i=0; !avio_feof(s->pb); i++) {
956         int j  = i & (RESYNC_BUFFER_SIZE-1);
957         int j1 = j + RESYNC_BUFFER_SIZE;
958         flv->resync_buffer[j ] =
959         flv->resync_buffer[j1] = avio_r8(s->pb);
960
961         if (i >= 8 && pos) {
962             uint8_t *d = flv->resync_buffer + j1 - 8;
963             if (d[0] == 'F' &&
964                 d[1] == 'L' &&
965                 d[2] == 'V' &&
966                 d[3] < 5 && d[5] == 0) {
967                 av_log(s, AV_LOG_WARNING, "Concatenated FLV detected, might fail to demux, decode and seek %"PRId64"\n", flv->last_ts);
968                 flv->time_offset = flv->last_ts + 1;
969                 flv->time_pos    = avio_tell(s->pb);
970             }
971         }
972
973         if (i > 22) {
974             unsigned lsize2 = AV_RB32(flv->resync_buffer + j1 - 4);
975             if (lsize2 >= 11 && lsize2 + 8LL < FFMIN(i, RESYNC_BUFFER_SIZE)) {
976                 unsigned  size2 = AV_RB24(flv->resync_buffer + j1 - lsize2 + 1 - 4);
977                 unsigned lsize1 = AV_RB32(flv->resync_buffer + j1 - lsize2 - 8);
978                 if (lsize1 >= 11 && lsize1 + 8LL + lsize2 < FFMIN(i, RESYNC_BUFFER_SIZE)) {
979                     unsigned  size1 = AV_RB24(flv->resync_buffer + j1 - lsize1 + 1 - lsize2 - 8);
980                     if (size1 == lsize1 - 11 && size2  == lsize2 - 11) {
981                         avio_seek(s->pb, pos + i - lsize1 - lsize2 - 8, SEEK_SET);
982                         return 1;
983                     }
984                 }
985             }
986         }
987     }
988     return AVERROR_EOF;
989 }
990
991 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
992 {
993     FLVContext *flv = s->priv_data;
994     int ret, i, size, flags;
995     enum FlvTagType type;
996     int stream_type=-1;
997     int64_t next, pos, meta_pos;
998     int64_t dts, pts = AV_NOPTS_VALUE;
999     int av_uninit(channels);
1000     int av_uninit(sample_rate);
1001     AVStream *st    = NULL;
1002     int last = -1;
1003     int orig_size;
1004
1005 retry:
1006     /* pkt size is repeated at end. skip it */
1007     pos  = avio_tell(s->pb);
1008     type = (avio_r8(s->pb) & 0x1F);
1009     orig_size =
1010     size = avio_rb24(s->pb);
1011     flv->sum_flv_tag_size += size + 11;
1012     dts  = avio_rb24(s->pb);
1013     dts |= (unsigned)avio_r8(s->pb) << 24;
1014     av_log(s, AV_LOG_TRACE, "type:%d, size:%d, last:%d, dts:%"PRId64" pos:%"PRId64"\n", type, size, last, dts, avio_tell(s->pb));
1015     if (avio_feof(s->pb))
1016         return AVERROR_EOF;
1017     avio_skip(s->pb, 3); /* stream id, always 0 */
1018     flags = 0;
1019
1020     if (flv->validate_next < flv->validate_count) {
1021         int64_t validate_pos = flv->validate_index[flv->validate_next].pos;
1022         if (pos == validate_pos) {
1023             if (FFABS(dts - flv->validate_index[flv->validate_next].dts) <=
1024                 VALIDATE_INDEX_TS_THRESH) {
1025                 flv->validate_next++;
1026             } else {
1027                 clear_index_entries(s, validate_pos);
1028                 flv->validate_count = 0;
1029             }
1030         } else if (pos > validate_pos) {
1031             clear_index_entries(s, validate_pos);
1032             flv->validate_count = 0;
1033         }
1034     }
1035
1036     if (size == 0) {
1037         ret = FFERROR_REDO;
1038         goto leave;
1039     }
1040
1041     next = size + avio_tell(s->pb);
1042
1043     if (type == FLV_TAG_TYPE_AUDIO) {
1044         stream_type = FLV_STREAM_TYPE_AUDIO;
1045         flags    = avio_r8(s->pb);
1046         size--;
1047     } else if (type == FLV_TAG_TYPE_VIDEO) {
1048         stream_type = FLV_STREAM_TYPE_VIDEO;
1049         flags    = avio_r8(s->pb);
1050         size--;
1051         if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_VIDEO_INFO_CMD)
1052             goto skip;
1053     } else if (type == FLV_TAG_TYPE_META) {
1054         stream_type=FLV_STREAM_TYPE_SUBTITLE;
1055         if (size > 13 + 1 + 4) { // Header-type metadata stuff
1056             int type;
1057             meta_pos = avio_tell(s->pb);
1058             type = flv_read_metabody(s, next);
1059             if (type == 0 && dts == 0 || type < 0) {
1060                 if (type < 0 && flv->validate_count &&
1061                     flv->validate_index[0].pos     > next &&
1062                     flv->validate_index[0].pos - 4 < next
1063                 ) {
1064                     av_log(s, AV_LOG_WARNING, "Adjusting next position due to index mismatch\n");
1065                     next = flv->validate_index[0].pos - 4;
1066                 }
1067                 goto skip;
1068             } else if (type == TYPE_ONTEXTDATA) {
1069                 avpriv_request_sample(s, "OnTextData packet");
1070                 return flv_data_packet(s, pkt, dts, next);
1071             } else if (type == TYPE_ONCAPTION) {
1072                 return flv_data_packet(s, pkt, dts, next);
1073             } else if (type == TYPE_UNKNOWN) {
1074                 stream_type = FLV_STREAM_TYPE_DATA;
1075             }
1076             avio_seek(s->pb, meta_pos, SEEK_SET);
1077         }
1078     } else {
1079         av_log(s, AV_LOG_DEBUG,
1080                "Skipping flv packet: type %d, size %d, flags %d.\n",
1081                type, size, flags);
1082 skip:
1083         if (avio_seek(s->pb, next, SEEK_SET) != next) {
1084             // This can happen if flv_read_metabody above read past
1085             // next, on a non-seekable input, and the preceding data has
1086             // been flushed out from the IO buffer.
1087             av_log(s, AV_LOG_ERROR, "Unable to seek to the next packet\n");
1088             return AVERROR_INVALIDDATA;
1089         }
1090         ret = FFERROR_REDO;
1091         goto leave;
1092     }
1093
1094     /* skip empty data packets */
1095     if (!size) {
1096         ret = FFERROR_REDO;
1097         goto leave;
1098     }
1099
1100     /* now find stream */
1101     for (i = 0; i < s->nb_streams; i++) {
1102         st = s->streams[i];
1103         if (stream_type == FLV_STREAM_TYPE_AUDIO) {
1104             if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
1105                 (s->audio_codec_id || flv_same_audio_codec(st->codecpar, flags)))
1106                 break;
1107         } else if (stream_type == FLV_STREAM_TYPE_VIDEO) {
1108             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
1109                 (s->video_codec_id || flv_same_video_codec(st->codecpar, flags)))
1110                 break;
1111         } else if (stream_type == FLV_STREAM_TYPE_SUBTITLE) {
1112             if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE)
1113                 break;
1114         } else if (stream_type == FLV_STREAM_TYPE_DATA) {
1115             if (st->codecpar->codec_type == AVMEDIA_TYPE_DATA)
1116                 break;
1117         }
1118     }
1119     if (i == s->nb_streams) {
1120         static const enum AVMediaType stream_types[] = {AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_SUBTITLE, AVMEDIA_TYPE_DATA};
1121         st = create_stream(s, stream_types[stream_type]);
1122         if (!st)
1123             return AVERROR(ENOMEM);
1124
1125     }
1126     av_log(s, AV_LOG_TRACE, "%d %X %d \n", stream_type, flags, st->discard);
1127
1128     if (flv->time_pos <= pos) {
1129         dts += flv->time_offset;
1130     }
1131
1132     if ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
1133         ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY ||
1134          stream_type == FLV_STREAM_TYPE_AUDIO))
1135         av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
1136
1137     if (  (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
1138           ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
1139           || st->discard >= AVDISCARD_ALL
1140     ) {
1141         avio_seek(s->pb, next, SEEK_SET);
1142         ret = FFERROR_REDO;
1143         goto leave;
1144     }
1145
1146     // if not streamed and no duration from metadata then seek to end to find
1147     // the duration from the timestamps
1148     if ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
1149         (!s->duration || s->duration == AV_NOPTS_VALUE) &&
1150         !flv->searched_for_end) {
1151         int size;
1152         const int64_t pos   = avio_tell(s->pb);
1153         // Read the last 4 bytes of the file, this should be the size of the
1154         // previous FLV tag. Use the timestamp of its payload as duration.
1155         int64_t fsize       = avio_size(s->pb);
1156 retry_duration:
1157         avio_seek(s->pb, fsize - 4, SEEK_SET);
1158         size = avio_rb32(s->pb);
1159         if (size > 0 && size < fsize) {
1160             // Seek to the start of the last FLV tag at position (fsize - 4 - size)
1161             // but skip the byte indicating the type.
1162             avio_seek(s->pb, fsize - 3 - size, SEEK_SET);
1163             if (size == avio_rb24(s->pb) + 11) {
1164                 uint32_t ts = avio_rb24(s->pb);
1165                 ts         |= avio_r8(s->pb) << 24;
1166                 if (ts)
1167                     s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
1168                 else if (fsize >= 8 && fsize - 8 >= size) {
1169                     fsize -= size+4;
1170                     goto retry_duration;
1171                 }
1172             }
1173         }
1174
1175         avio_seek(s->pb, pos, SEEK_SET);
1176         flv->searched_for_end = 1;
1177     }
1178
1179     if (stream_type == FLV_STREAM_TYPE_AUDIO) {
1180         int bits_per_coded_sample;
1181         channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
1182         sample_rate = 44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >>
1183                                 FLV_AUDIO_SAMPLERATE_OFFSET) >> 3;
1184         bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
1185         if (!st->codecpar->channels || !st->codecpar->sample_rate ||
1186             !st->codecpar->bits_per_coded_sample) {
1187             st->codecpar->channels              = channels;
1188             st->codecpar->channel_layout        = channels == 1
1189                                                ? AV_CH_LAYOUT_MONO
1190                                                : AV_CH_LAYOUT_STEREO;
1191             st->codecpar->sample_rate           = sample_rate;
1192             st->codecpar->bits_per_coded_sample = bits_per_coded_sample;
1193         }
1194         if (!st->codecpar->codec_id) {
1195             flv_set_audio_codec(s, st, st->codecpar,
1196                                 flags & FLV_AUDIO_CODECID_MASK);
1197             flv->last_sample_rate =
1198             sample_rate           = st->codecpar->sample_rate;
1199             flv->last_channels    =
1200             channels              = st->codecpar->channels;
1201         } else {
1202             AVCodecParameters *par = avcodec_parameters_alloc();
1203             if (!par) {
1204                 ret = AVERROR(ENOMEM);
1205                 goto leave;
1206             }
1207             par->sample_rate = sample_rate;
1208             par->bits_per_coded_sample = bits_per_coded_sample;
1209             flv_set_audio_codec(s, st, par, flags & FLV_AUDIO_CODECID_MASK);
1210             sample_rate = par->sample_rate;
1211             avcodec_parameters_free(&par);
1212         }
1213     } else if (stream_type == FLV_STREAM_TYPE_VIDEO) {
1214         int ret = flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK, 1);
1215         if (ret < 0)
1216             return ret;
1217         size -= ret;
1218     } else if (stream_type == FLV_STREAM_TYPE_SUBTITLE) {
1219         st->codecpar->codec_id = AV_CODEC_ID_TEXT;
1220     } else if (stream_type == FLV_STREAM_TYPE_DATA) {
1221         st->codecpar->codec_id = AV_CODEC_ID_NONE; // Opaque AMF data
1222     }
1223
1224     if (st->codecpar->codec_id == AV_CODEC_ID_AAC ||
1225         st->codecpar->codec_id == AV_CODEC_ID_H264 ||
1226         st->codecpar->codec_id == AV_CODEC_ID_MPEG4) {
1227         int type = avio_r8(s->pb);
1228         size--;
1229
1230         if (size < 0) {
1231             ret = AVERROR_INVALIDDATA;
1232             goto leave;
1233         }
1234
1235         if (st->codecpar->codec_id == AV_CODEC_ID_H264 || st->codecpar->codec_id == AV_CODEC_ID_MPEG4) {
1236             // sign extension
1237             int32_t cts = (avio_rb24(s->pb) + 0xff800000) ^ 0xff800000;
1238             pts = dts + cts;
1239             if (cts < 0) { // dts might be wrong
1240                 if (!flv->wrong_dts)
1241                     av_log(s, AV_LOG_WARNING,
1242                         "Negative cts, previous timestamps might be wrong.\n");
1243                 flv->wrong_dts = 1;
1244             } else if (FFABS(dts - pts) > 1000*60*15) {
1245                 av_log(s, AV_LOG_WARNING,
1246                        "invalid timestamps %"PRId64" %"PRId64"\n", dts, pts);
1247                 dts = pts = AV_NOPTS_VALUE;
1248             }
1249         }
1250         if (type == 0 && (!st->codecpar->extradata || st->codecpar->codec_id == AV_CODEC_ID_AAC ||
1251             st->codecpar->codec_id == AV_CODEC_ID_H264)) {
1252             AVDictionaryEntry *t;
1253
1254             if (st->codecpar->extradata) {
1255                 if ((ret = flv_queue_extradata(flv, s->pb, stream_type, size)) < 0)
1256                     return ret;
1257                 ret = FFERROR_REDO;
1258                 goto leave;
1259             }
1260             if ((ret = flv_get_extradata(s, st, size)) < 0)
1261                 return ret;
1262
1263             /* Workaround for buggy Omnia A/XE encoder */
1264             t = av_dict_get(s->metadata, "Encoder", NULL, 0);
1265             if (st->codecpar->codec_id == AV_CODEC_ID_AAC && t && !strcmp(t->value, "Omnia A/XE"))
1266                 st->codecpar->extradata_size = 2;
1267
1268             ret = FFERROR_REDO;
1269             goto leave;
1270         }
1271     }
1272
1273     /* skip empty data packets */
1274     if (!size) {
1275         ret = FFERROR_REDO;
1276         goto leave;
1277     }
1278
1279     ret = av_get_packet(s->pb, pkt, size);
1280     if (ret < 0)
1281         return ret;
1282     pkt->dts          = dts;
1283     pkt->pts          = pts == AV_NOPTS_VALUE ? dts : pts;
1284     pkt->stream_index = st->index;
1285     pkt->pos          = pos;
1286     if (flv->new_extradata[stream_type]) {
1287         uint8_t *side = av_packet_new_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
1288                                                 flv->new_extradata_size[stream_type]);
1289         if (side) {
1290             memcpy(side, flv->new_extradata[stream_type],
1291                    flv->new_extradata_size[stream_type]);
1292             av_freep(&flv->new_extradata[stream_type]);
1293             flv->new_extradata_size[stream_type] = 0;
1294         }
1295     }
1296     if (stream_type == FLV_STREAM_TYPE_AUDIO &&
1297                     (sample_rate != flv->last_sample_rate ||
1298                      channels    != flv->last_channels)) {
1299         flv->last_sample_rate = sample_rate;
1300         flv->last_channels    = channels;
1301         ff_add_param_change(pkt, channels, 0, sample_rate, 0, 0);
1302     }
1303
1304     if (    stream_type == FLV_STREAM_TYPE_AUDIO ||
1305             ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
1306             stream_type == FLV_STREAM_TYPE_SUBTITLE ||
1307             stream_type == FLV_STREAM_TYPE_DATA)
1308         pkt->flags |= AV_PKT_FLAG_KEY;
1309
1310 leave:
1311     last = avio_rb32(s->pb);
1312     if (!flv->trust_datasize) {
1313         if (last != orig_size + 11 && last != orig_size + 10 &&
1314             !avio_feof(s->pb) &&
1315             (last != orig_size || !last) && last != flv->sum_flv_tag_size &&
1316             !flv->broken_sizes) {
1317             av_log(s, AV_LOG_ERROR, "Packet mismatch %d %d %d\n", last, orig_size + 11, flv->sum_flv_tag_size);
1318             avio_seek(s->pb, pos + 1, SEEK_SET);
1319             ret = resync(s);
1320             av_packet_unref(pkt);
1321             if (ret >= 0) {
1322                 goto retry;
1323             }
1324         }
1325     }
1326
1327     if (ret >= 0)
1328         flv->last_ts = pkt->dts;
1329
1330     return ret;
1331 }
1332
1333 static int flv_read_seek(AVFormatContext *s, int stream_index,
1334                          int64_t ts, int flags)
1335 {
1336     FLVContext *flv = s->priv_data;
1337     flv->validate_count = 0;
1338     return avio_seek_time(s->pb, stream_index, ts, flags);
1339 }
1340
1341 #define OFFSET(x) offsetof(FLVContext, x)
1342 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1343 static const AVOption options[] = {
1344     { "flv_metadata", "Allocate streams according to the onMetaData array", OFFSET(trust_metadata), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VD },
1345     { "flv_full_metadata", "Dump full metadata of the onMetadata", OFFSET(dump_full_metadata), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VD },
1346     { "flv_ignore_prevtag", "Ignore the Size of previous tag", OFFSET(trust_datasize), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VD },
1347     { "missing_streams", "", OFFSET(missing_streams), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 0xFF, VD | AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
1348     { NULL }
1349 };
1350
1351 static const AVClass flv_class = {
1352     .class_name = "flvdec",
1353     .item_name  = av_default_item_name,
1354     .option     = options,
1355     .version    = LIBAVUTIL_VERSION_INT,
1356 };
1357
1358 AVInputFormat ff_flv_demuxer = {
1359     .name           = "flv",
1360     .long_name      = NULL_IF_CONFIG_SMALL("FLV (Flash Video)"),
1361     .priv_data_size = sizeof(FLVContext),
1362     .read_probe     = flv_probe,
1363     .read_header    = flv_read_header,
1364     .read_packet    = flv_read_packet,
1365     .read_seek      = flv_read_seek,
1366     .read_close     = flv_read_close,
1367     .extensions     = "flv",
1368     .priv_class     = &flv_class,
1369 };
1370
1371 static const AVClass live_flv_class = {
1372     .class_name = "live_flvdec",
1373     .item_name  = av_default_item_name,
1374     .option     = options,
1375     .version    = LIBAVUTIL_VERSION_INT,
1376 };
1377
1378 AVInputFormat ff_live_flv_demuxer = {
1379     .name           = "live_flv",
1380     .long_name      = NULL_IF_CONFIG_SMALL("live RTMP FLV (Flash Video)"),
1381     .priv_data_size = sizeof(FLVContext),
1382     .read_probe     = live_flv_probe,
1383     .read_header    = flv_read_header,
1384     .read_packet    = flv_read_packet,
1385     .read_seek      = flv_read_seek,
1386     .read_close     = flv_read_close,
1387     .extensions     = "flv",
1388     .priv_class     = &live_flv_class,
1389     .flags          = AVFMT_TS_DISCONT
1390 };
1391
1392 static const AVClass kux_class = {
1393     .class_name = "kuxdec",
1394     .item_name  = av_default_item_name,
1395     .option     = options,
1396     .version    = LIBAVUTIL_VERSION_INT,
1397 };
1398
1399 AVInputFormat ff_kux_demuxer = {
1400     .name           = "kux",
1401     .long_name      = NULL_IF_CONFIG_SMALL("KUX (YouKu)"),
1402     .priv_data_size = sizeof(FLVContext),
1403     .read_probe     = kux_probe,
1404     .read_header    = flv_read_header,
1405     .read_packet    = flv_read_packet,
1406     .read_seek      = flv_read_seek,
1407     .read_close     = flv_read_close,
1408     .extensions     = "kux",
1409     .priv_class     = &kux_class,
1410 };