3 * Copyright (c) 2003 The FFmpeg Project
5 * This demuxer will generate a 1 byte extradata for VP6F content.
7 * - upper 4bits: difference between encoded width and visible width
8 * - lower 4bits: difference between encoded height and visible height
10 * This file is part of FFmpeg.
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.
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.
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
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 "libavcodec/bytestream.h"
34 #include "libavcodec/mpeg4audio.h"
37 #include "avio_internal.h"
40 #define VALIDATE_INDEX_TS_THRESH 2500
42 typedef struct FLVContext {
43 const AVClass *class; ///< Class for private options.
44 int trust_metadata; ///< configure streams according onMetaData
45 int wrong_dts; ///< wrong dts due to negative cts
46 uint8_t *new_extradata[FLV_STREAM_TYPE_NB];
47 int new_extradata_size[FLV_STREAM_TYPE_NB];
59 static int probe(AVProbeData *p, int live)
61 const uint8_t *d = p->buf;
62 unsigned offset = AV_RB32(d + 5);
67 d[3] < 5 && d[5] == 0 &&
68 offset + 100 < p->buf_size &&
70 int is_live = !memcmp(d + offset + 40, "NGINX RTMP", 10);
73 return AVPROBE_SCORE_MAX;
78 static int flv_probe(AVProbeData *p)
83 static int live_flv_probe(AVProbeData *p)
88 static AVStream *create_stream(AVFormatContext *s, int codec_type)
90 AVStream *st = avformat_new_stream(s, NULL);
93 st->codec->codec_type = codec_type;
94 if (s->nb_streams>=3 ||( s->nb_streams==2
95 && s->streams[0]->codec->codec_type != AVMEDIA_TYPE_SUBTITLE
96 && s->streams[1]->codec->codec_type != AVMEDIA_TYPE_SUBTITLE))
97 s->ctx_flags &= ~AVFMTCTX_NOHEADER;
99 avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
103 static int flv_same_audio_codec(AVCodecContext *acodec, int flags)
105 int bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
106 int flv_codecid = flags & FLV_AUDIO_CODECID_MASK;
109 if (!acodec->codec_id && !acodec->codec_tag)
112 if (acodec->bits_per_coded_sample != bits_per_coded_sample)
115 switch (flv_codecid) {
116 // no distinction between S16 and S8 PCM codec flags
117 case FLV_CODECID_PCM:
118 codec_id = bits_per_coded_sample == 8
121 : AV_CODEC_ID_PCM_S16BE;
123 : AV_CODEC_ID_PCM_S16LE;
125 return codec_id == acodec->codec_id;
126 case FLV_CODECID_PCM_LE:
127 codec_id = bits_per_coded_sample == 8
129 : AV_CODEC_ID_PCM_S16LE;
130 return codec_id == acodec->codec_id;
131 case FLV_CODECID_AAC:
132 return acodec->codec_id == AV_CODEC_ID_AAC;
133 case FLV_CODECID_ADPCM:
134 return acodec->codec_id == AV_CODEC_ID_ADPCM_SWF;
135 case FLV_CODECID_SPEEX:
136 return acodec->codec_id == AV_CODEC_ID_SPEEX;
137 case FLV_CODECID_MP3:
138 return acodec->codec_id == AV_CODEC_ID_MP3;
139 case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
140 case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
141 case FLV_CODECID_NELLYMOSER:
142 return acodec->codec_id == AV_CODEC_ID_NELLYMOSER;
143 case FLV_CODECID_PCM_MULAW:
144 return acodec->sample_rate == 8000 &&
145 acodec->codec_id == AV_CODEC_ID_PCM_MULAW;
146 case FLV_CODECID_PCM_ALAW:
147 return acodec->sample_rate == 8000 &&
148 acodec->codec_id == AV_CODEC_ID_PCM_ALAW;
150 return acodec->codec_tag == (flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
154 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream,
155 AVCodecContext *acodec, int flv_codecid)
157 switch (flv_codecid) {
158 // no distinction between S16 and S8 PCM codec flags
159 case FLV_CODECID_PCM:
160 acodec->codec_id = acodec->bits_per_coded_sample == 8
163 : AV_CODEC_ID_PCM_S16BE;
165 : AV_CODEC_ID_PCM_S16LE;
168 case FLV_CODECID_PCM_LE:
169 acodec->codec_id = acodec->bits_per_coded_sample == 8
171 : AV_CODEC_ID_PCM_S16LE;
173 case FLV_CODECID_AAC:
174 acodec->codec_id = AV_CODEC_ID_AAC;
176 case FLV_CODECID_ADPCM:
177 acodec->codec_id = AV_CODEC_ID_ADPCM_SWF;
179 case FLV_CODECID_SPEEX:
180 acodec->codec_id = AV_CODEC_ID_SPEEX;
181 acodec->sample_rate = 16000;
183 case FLV_CODECID_MP3:
184 acodec->codec_id = AV_CODEC_ID_MP3;
185 astream->need_parsing = AVSTREAM_PARSE_FULL;
187 case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
188 // in case metadata does not otherwise declare samplerate
189 acodec->sample_rate = 8000;
190 acodec->codec_id = AV_CODEC_ID_NELLYMOSER;
192 case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
193 acodec->sample_rate = 16000;
194 acodec->codec_id = AV_CODEC_ID_NELLYMOSER;
196 case FLV_CODECID_NELLYMOSER:
197 acodec->codec_id = AV_CODEC_ID_NELLYMOSER;
199 case FLV_CODECID_PCM_MULAW:
200 acodec->sample_rate = 8000;
201 acodec->codec_id = AV_CODEC_ID_PCM_MULAW;
203 case FLV_CODECID_PCM_ALAW:
204 acodec->sample_rate = 8000;
205 acodec->codec_id = AV_CODEC_ID_PCM_ALAW;
208 avpriv_request_sample(s, "Audio codec (%x)",
209 flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
210 acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
214 static int flv_same_video_codec(AVCodecContext *vcodec, int flags)
216 int flv_codecid = flags & FLV_VIDEO_CODECID_MASK;
218 if (!vcodec->codec_id && !vcodec->codec_tag)
221 switch (flv_codecid) {
222 case FLV_CODECID_H263:
223 return vcodec->codec_id == AV_CODEC_ID_FLV1;
224 case FLV_CODECID_SCREEN:
225 return vcodec->codec_id == AV_CODEC_ID_FLASHSV;
226 case FLV_CODECID_SCREEN2:
227 return vcodec->codec_id == AV_CODEC_ID_FLASHSV2;
228 case FLV_CODECID_VP6:
229 return vcodec->codec_id == AV_CODEC_ID_VP6F;
230 case FLV_CODECID_VP6A:
231 return vcodec->codec_id == AV_CODEC_ID_VP6A;
232 case FLV_CODECID_H264:
233 return vcodec->codec_id == AV_CODEC_ID_H264;
235 return vcodec->codec_tag == flv_codecid;
239 static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream,
240 int flv_codecid, int read)
242 AVCodecContext *vcodec = vstream->codec;
243 switch (flv_codecid) {
244 case FLV_CODECID_H263:
245 vcodec->codec_id = AV_CODEC_ID_FLV1;
247 case FLV_CODECID_REALH263:
248 vcodec->codec_id = AV_CODEC_ID_H263;
249 break; // Really mean it this time
250 case FLV_CODECID_SCREEN:
251 vcodec->codec_id = AV_CODEC_ID_FLASHSV;
253 case FLV_CODECID_SCREEN2:
254 vcodec->codec_id = AV_CODEC_ID_FLASHSV2;
256 case FLV_CODECID_VP6:
257 vcodec->codec_id = AV_CODEC_ID_VP6F;
258 case FLV_CODECID_VP6A:
259 if (flv_codecid == FLV_CODECID_VP6A)
260 vcodec->codec_id = AV_CODEC_ID_VP6A;
262 if (vcodec->extradata_size != 1) {
263 ff_alloc_extradata(vcodec, 1);
265 if (vcodec->extradata)
266 vcodec->extradata[0] = avio_r8(s->pb);
270 return 1; // 1 byte body size adjustment for flv_read_packet()
271 case FLV_CODECID_H264:
272 vcodec->codec_id = AV_CODEC_ID_H264;
273 vstream->need_parsing = AVSTREAM_PARSE_HEADERS;
274 return 3; // not 4, reading packet type will consume one byte
275 case FLV_CODECID_MPEG4:
276 vcodec->codec_id = AV_CODEC_ID_MPEG4;
279 avpriv_request_sample(s, "Video codec (%x)", flv_codecid);
280 vcodec->codec_tag = flv_codecid;
286 static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize)
288 int length = avio_rb16(ioc);
289 if (length >= buffsize) {
290 avio_skip(ioc, length);
294 avio_read(ioc, buffer, length);
296 buffer[length] = '\0';
301 static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc,
302 AVStream *vstream, int64_t max_pos)
304 FLVContext *flv = s->priv_data;
305 unsigned int timeslen = 0, fileposlen = 0, i;
307 int64_t *times = NULL;
308 int64_t *filepositions = NULL;
309 int ret = AVERROR(ENOSYS);
310 int64_t initial_pos = avio_tell(ioc);
312 if (vstream->nb_index_entries>0) {
313 av_log(s, AV_LOG_WARNING, "Skipping duplicate index\n");
317 if (s->flags & AVFMT_FLAG_IGNIDX)
320 while (avio_tell(ioc) < max_pos - 2 &&
321 amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
322 int64_t **current_array;
323 unsigned int arraylen;
325 // Expect array object in context
326 if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
329 arraylen = avio_rb32(ioc);
333 if (!strcmp(KEYFRAMES_TIMESTAMP_TAG , str_val) && !times) {
334 current_array = ×
336 } else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) &&
338 current_array = &filepositions;
339 fileposlen = arraylen;
341 // unexpected metatag inside keyframes, will not use such
342 // metadata for indexing
345 if (!(*current_array = av_mallocz(sizeof(**current_array) * arraylen))) {
346 ret = AVERROR(ENOMEM);
350 for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
351 if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
353 current_array[0][i] = av_int2double(avio_rb64(ioc));
355 if (times && filepositions) {
356 // All done, exiting at a position allowing amf_parse_object
357 // to finish parsing the object
363 if (timeslen == fileposlen && fileposlen>1 && max_pos <= filepositions[0]) {
364 for (i = 0; i < fileposlen; i++) {
365 av_add_index_entry(vstream, filepositions[i], times[i] * 1000,
366 0, 0, AVINDEX_KEYFRAME);
368 flv->validate_index[i].pos = filepositions[i];
369 flv->validate_index[i].dts = times[i] * 1000;
370 flv->validate_count = i + 1;
375 av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
380 av_freep(&filepositions);
381 avio_seek(ioc, initial_pos, SEEK_SET);
385 static int amf_parse_object(AVFormatContext *s, AVStream *astream,
386 AVStream *vstream, const char *key,
387 int64_t max_pos, int depth)
389 AVCodecContext *acodec, *vcodec;
390 FLVContext *flv = s->priv_data;
392 AMFDataType amf_type;
398 amf_type = avio_r8(ioc);
401 case AMF_DATA_TYPE_NUMBER:
402 num_val = av_int2double(avio_rb64(ioc));
404 case AMF_DATA_TYPE_BOOL:
405 num_val = avio_r8(ioc);
407 case AMF_DATA_TYPE_STRING:
408 if (amf_get_string(ioc, str_val, sizeof(str_val)) < 0) {
409 av_log(s, AV_LOG_ERROR, "AMF_DATA_TYPE_STRING parsing failed\n");
413 case AMF_DATA_TYPE_OBJECT:
414 if ((vstream || astream) && key &&
416 !strcmp(KEYFRAMES_TAG, key) && depth == 1)
417 if (parse_keyframes_index(s, ioc, vstream ? vstream : astream,
419 av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
421 while (avio_tell(ioc) < max_pos - 2 &&
422 amf_get_string(ioc, str_val, sizeof(str_val)) > 0)
423 if (amf_parse_object(s, astream, vstream, str_val, max_pos,
425 return -1; // if we couldn't skip, bomb out.
426 if (avio_r8(ioc) != AMF_END_OF_OBJECT) {
427 av_log(s, AV_LOG_ERROR, "Missing AMF_END_OF_OBJECT in AMF_DATA_TYPE_OBJECT\n");
431 case AMF_DATA_TYPE_NULL:
432 case AMF_DATA_TYPE_UNDEFINED:
433 case AMF_DATA_TYPE_UNSUPPORTED:
434 break; // these take up no additional space
435 case AMF_DATA_TYPE_MIXEDARRAY:
438 avio_skip(ioc, 4); // skip 32-bit max array index
439 while (avio_tell(ioc) < max_pos - 2 &&
440 amf_get_string(ioc, str_val, sizeof(str_val)) > 0)
441 // this is the only case in which we would want a nested
442 // parse to not skip over the object
443 if (amf_parse_object(s, astream, vstream, str_val, max_pos,
447 if (v != AMF_END_OF_OBJECT) {
448 av_log(s, AV_LOG_ERROR, "Missing AMF_END_OF_OBJECT in AMF_DATA_TYPE_MIXEDARRAY, found %d\n", v);
453 case AMF_DATA_TYPE_ARRAY:
455 unsigned int arraylen, i;
457 arraylen = avio_rb32(ioc);
458 for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++)
459 if (amf_parse_object(s, NULL, NULL, NULL, max_pos,
461 return -1; // if we couldn't skip, bomb out.
464 case AMF_DATA_TYPE_DATE:
465 avio_skip(ioc, 8 + 2); // timestamp (double) and UTC offset (int16)
467 default: // unsupported type, we couldn't skip
468 av_log(s, AV_LOG_ERROR, "unsupported amf type %d\n", amf_type);
473 acodec = astream ? astream->codec : NULL;
474 vcodec = vstream ? vstream->codec : NULL;
476 // stream info doesn't live any deeper than the first object
478 if (amf_type == AMF_DATA_TYPE_NUMBER ||
479 amf_type == AMF_DATA_TYPE_BOOL) {
480 if (!strcmp(key, "duration"))
481 s->duration = num_val * AV_TIME_BASE;
482 else if (!strcmp(key, "videodatarate") && vcodec &&
483 0 <= (int)(num_val * 1024.0))
484 vcodec->bit_rate = num_val * 1024.0;
485 else if (!strcmp(key, "audiodatarate") && acodec &&
486 0 <= (int)(num_val * 1024.0))
487 acodec->bit_rate = num_val * 1024.0;
488 else if (!strcmp(key, "datastream")) {
489 AVStream *st = create_stream(s, AVMEDIA_TYPE_SUBTITLE);
491 return AVERROR(ENOMEM);
492 st->codec->codec_id = AV_CODEC_ID_TEXT;
493 } else if (flv->trust_metadata) {
494 if (!strcmp(key, "videocodecid") && vcodec) {
495 flv_set_video_codec(s, vstream, num_val, 0);
496 } else if (!strcmp(key, "audiocodecid") && acodec) {
497 int id = ((int)num_val) << FLV_AUDIO_CODECID_OFFSET;
498 flv_set_audio_codec(s, astream, acodec, id);
499 } else if (!strcmp(key, "audiosamplerate") && acodec) {
500 acodec->sample_rate = num_val;
501 } else if (!strcmp(key, "audiosamplesize") && acodec) {
502 acodec->bits_per_coded_sample = num_val;
503 } else if (!strcmp(key, "stereo") && acodec) {
504 acodec->channels = num_val + 1;
505 acodec->channel_layout = acodec->channels == 2 ?
506 AV_CH_LAYOUT_STEREO :
508 } else if (!strcmp(key, "width") && vcodec) {
509 vcodec->width = num_val;
510 } else if (!strcmp(key, "height") && vcodec) {
511 vcodec->height = num_val;
517 if (amf_type == AMF_DATA_TYPE_OBJECT && s->nb_streams == 1 &&
518 ((!acodec && !strcmp(key, "audiocodecid")) ||
519 (!vcodec && !strcmp(key, "videocodecid"))))
520 s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
522 if (!strcmp(key, "duration") ||
523 !strcmp(key, "filesize") ||
524 !strcmp(key, "width") ||
525 !strcmp(key, "height") ||
526 !strcmp(key, "videodatarate") ||
527 !strcmp(key, "framerate") ||
528 !strcmp(key, "videocodecid") ||
529 !strcmp(key, "audiodatarate") ||
530 !strcmp(key, "audiosamplerate") ||
531 !strcmp(key, "audiosamplesize") ||
532 !strcmp(key, "stereo") ||
533 !strcmp(key, "audiocodecid") ||
534 !strcmp(key, "datastream"))
537 s->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
538 if (amf_type == AMF_DATA_TYPE_BOOL) {
539 av_strlcpy(str_val, num_val > 0 ? "true" : "false",
541 av_dict_set(&s->metadata, key, str_val, 0);
542 } else if (amf_type == AMF_DATA_TYPE_NUMBER) {
543 snprintf(str_val, sizeof(str_val), "%.f", num_val);
544 av_dict_set(&s->metadata, key, str_val, 0);
545 } else if (amf_type == AMF_DATA_TYPE_STRING)
546 av_dict_set(&s->metadata, key, str_val, 0);
552 #define TYPE_ONTEXTDATA 1
553 #define TYPE_ONCAPTION 2
554 #define TYPE_ONCAPTIONINFO 3
555 #define TYPE_UNKNOWN 9
557 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos)
560 AVStream *stream, *astream, *vstream;
561 AVStream av_unused *dstream;
564 // only needs to hold the string "onMetaData".
565 // Anything longer is something we don't want.
573 // first object needs to be "onMetaData" string
575 if (type != AMF_DATA_TYPE_STRING ||
576 amf_get_string(ioc, buffer, sizeof(buffer)) < 0)
579 if (!strcmp(buffer, "onTextData"))
580 return TYPE_ONTEXTDATA;
582 if (!strcmp(buffer, "onCaption"))
583 return TYPE_ONCAPTION;
585 if (!strcmp(buffer, "onCaptionInfo"))
586 return TYPE_ONCAPTIONINFO;
588 if (strcmp(buffer, "onMetaData") && strcmp(buffer, "onCuePoint")) {
589 av_log(s, AV_LOG_DEBUG, "Unknown type %s\n", buffer);
593 // find the streams now so that amf_parse_object doesn't need to do
594 // the lookup every time it is called.
595 for (i = 0; i < s->nb_streams; i++) {
596 stream = s->streams[i];
597 if (stream->codec->codec_type == AVMEDIA_TYPE_VIDEO)
599 else if (stream->codec->codec_type == AVMEDIA_TYPE_AUDIO)
601 else if (stream->codec->codec_type == AVMEDIA_TYPE_SUBTITLE)
605 // parse the second object (we want a mixed array)
606 if (amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
612 static int flv_read_header(AVFormatContext *s)
617 flags = avio_r8(s->pb);
619 s->ctx_flags |= AVFMTCTX_NOHEADER;
621 if (flags & FLV_HEADER_FLAG_HASVIDEO)
622 if (!create_stream(s, AVMEDIA_TYPE_VIDEO))
623 return AVERROR(ENOMEM);
624 if (flags & FLV_HEADER_FLAG_HASAUDIO)
625 if (!create_stream(s, AVMEDIA_TYPE_AUDIO))
626 return AVERROR(ENOMEM);
627 // Flag doesn't indicate whether or not there is script-data present. Must
628 // create that stream if it's encountered.
630 offset = avio_rb32(s->pb);
631 avio_seek(s->pb, offset, SEEK_SET);
639 static int flv_read_close(AVFormatContext *s)
642 FLVContext *flv = s->priv_data;
643 for (i=0; i<FLV_STREAM_TYPE_NB; i++)
644 av_freep(&flv->new_extradata[i]);
648 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
650 av_freep(&st->codec->extradata);
651 if (ff_get_extradata(st->codec, s->pb, size) < 0)
652 return AVERROR(ENOMEM);
656 static int flv_queue_extradata(FLVContext *flv, AVIOContext *pb, int stream,
659 av_free(flv->new_extradata[stream]);
660 flv->new_extradata[stream] = av_mallocz(size +
661 AV_INPUT_BUFFER_PADDING_SIZE);
662 if (!flv->new_extradata[stream])
663 return AVERROR(ENOMEM);
664 flv->new_extradata_size[stream] = size;
665 avio_read(pb, flv->new_extradata[stream], size);
669 static void clear_index_entries(AVFormatContext *s, int64_t pos)
672 av_log(s, AV_LOG_WARNING,
673 "Found invalid index entries, clearing the index.\n");
674 for (i = 0; i < s->nb_streams; i++) {
675 AVStream *st = s->streams[i];
676 /* Remove all index entries that point to >= pos */
678 for (j = 0; j < st->nb_index_entries; j++)
679 if (st->index_entries[j].pos < pos)
680 st->index_entries[out++] = st->index_entries[j];
681 st->nb_index_entries = out;
685 static int amf_skip_tag(AVIOContext *pb, AMFDataType type)
687 int nb = -1, ret, parse_name = 1;
690 case AMF_DATA_TYPE_NUMBER:
693 case AMF_DATA_TYPE_BOOL:
696 case AMF_DATA_TYPE_STRING:
697 avio_skip(pb, avio_rb16(pb));
699 case AMF_DATA_TYPE_ARRAY:
701 case AMF_DATA_TYPE_MIXEDARRAY:
703 case AMF_DATA_TYPE_OBJECT:
704 while(!pb->eof_reached && (nb-- > 0 || type != AMF_DATA_TYPE_ARRAY)) {
706 int size = avio_rb16(pb);
713 if ((ret = amf_skip_tag(pb, avio_r8(pb))) < 0)
717 case AMF_DATA_TYPE_NULL:
718 case AMF_DATA_TYPE_OBJECT_END:
721 return AVERROR_INVALIDDATA;
726 static int flv_data_packet(AVFormatContext *s, AVPacket *pkt,
727 int64_t dts, int64_t next)
729 AVIOContext *pb = s->pb;
732 int ret = AVERROR_INVALIDDATA;
736 switch (avio_r8(pb)) {
737 case AMF_DATA_TYPE_ARRAY:
739 case AMF_DATA_TYPE_MIXEDARRAY:
740 avio_seek(pb, 4, SEEK_CUR);
741 case AMF_DATA_TYPE_OBJECT:
747 while (array || (ret = amf_get_string(pb, buf, sizeof(buf))) > 0) {
748 AMFDataType type = avio_r8(pb);
749 if (type == AMF_DATA_TYPE_STRING && (array || !strcmp(buf, "text"))) {
750 length = avio_rb16(pb);
751 ret = av_get_packet(pb, pkt, length);
757 if ((ret = amf_skip_tag(pb, type)) < 0)
763 ret = AVERROR_INVALIDDATA;
767 for (i = 0; i < s->nb_streams; i++) {
769 if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE)
773 if (i == s->nb_streams) {
774 st = create_stream(s, AVMEDIA_TYPE_SUBTITLE);
776 return AVERROR(ENOMEM);
777 st->codec->codec_id = AV_CODEC_ID_TEXT;
784 pkt->stream_index = st->index;
785 pkt->flags |= AV_PKT_FLAG_KEY;
788 avio_seek(s->pb, next + 4, SEEK_SET);
793 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
795 FLVContext *flv = s->priv_data;
796 int ret, i, size, flags;
797 enum FlvTagType type;
799 int64_t next, pos, meta_pos;
800 int64_t dts, pts = AV_NOPTS_VALUE;
801 int av_uninit(channels);
802 int av_uninit(sample_rate);
806 /* pkt size is repeated at end. skip it */
807 for (;; last = avio_rb32(s->pb)) {
808 pos = avio_tell(s->pb);
809 type = (avio_r8(s->pb) & 0x1F);
810 size = avio_rb24(s->pb);
811 dts = avio_rb24(s->pb);
812 dts |= avio_r8(s->pb) << 24;
813 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));
814 if (avio_feof(s->pb))
816 avio_skip(s->pb, 3); /* stream id, always 0 */
819 if (flv->validate_next < flv->validate_count) {
820 int64_t validate_pos = flv->validate_index[flv->validate_next].pos;
821 if (pos == validate_pos) {
822 if (FFABS(dts - flv->validate_index[flv->validate_next].dts) <=
823 VALIDATE_INDEX_TS_THRESH) {
824 flv->validate_next++;
826 clear_index_entries(s, validate_pos);
827 flv->validate_count = 0;
829 } else if (pos > validate_pos) {
830 clear_index_entries(s, validate_pos);
831 flv->validate_count = 0;
836 ret = AVERROR(EAGAIN);
840 next = size + avio_tell(s->pb);
842 if (type == FLV_TAG_TYPE_AUDIO) {
843 stream_type = FLV_STREAM_TYPE_AUDIO;
844 flags = avio_r8(s->pb);
846 } else if (type == FLV_TAG_TYPE_VIDEO) {
847 stream_type = FLV_STREAM_TYPE_VIDEO;
848 flags = avio_r8(s->pb);
850 if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_VIDEO_INFO_CMD)
852 } else if (type == FLV_TAG_TYPE_META) {
853 stream_type=FLV_STREAM_TYPE_DATA;
854 if (size > 13 + 1 + 4) { // Header-type metadata stuff
856 meta_pos = avio_tell(s->pb);
857 type = flv_read_metabody(s, next);
858 if (type == 0 && dts == 0 || type < 0 || type == TYPE_UNKNOWN) {
859 if (type < 0 && flv->validate_count &&
860 flv->validate_index[0].pos > next &&
861 flv->validate_index[0].pos - 4 < next
863 av_log(s, AV_LOG_WARNING, "Adjusting next position due to index mismatch\n");
864 next = flv->validate_index[0].pos - 4;
867 } else if (type == TYPE_ONTEXTDATA) {
868 avpriv_request_sample(s, "OnTextData packet");
869 return flv_data_packet(s, pkt, dts, next);
870 } else if (type == TYPE_ONCAPTION) {
871 return flv_data_packet(s, pkt, dts, next);
873 avio_seek(s->pb, meta_pos, SEEK_SET);
876 av_log(s, AV_LOG_DEBUG,
877 "Skipping flv packet: type %d, size %d, flags %d.\n",
880 avio_seek(s->pb, next, SEEK_SET);
881 ret = AVERROR(EAGAIN);
885 /* skip empty data packets */
887 ret = AVERROR(EAGAIN);
891 /* now find stream */
892 for (i = 0; i < s->nb_streams; i++) {
894 if (stream_type == FLV_STREAM_TYPE_AUDIO) {
895 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
896 (s->audio_codec_id || flv_same_audio_codec(st->codec, flags)))
898 } else if (stream_type == FLV_STREAM_TYPE_VIDEO) {
899 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
900 (s->video_codec_id || flv_same_video_codec(st->codec, flags)))
902 } else if (stream_type == FLV_STREAM_TYPE_DATA) {
903 if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE)
907 if (i == s->nb_streams) {
908 static const enum AVMediaType stream_types[] = {AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_SUBTITLE};
909 av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
910 st = create_stream(s, stream_types[stream_type]);
912 return AVERROR(ENOMEM);
915 av_log(s, AV_LOG_TRACE, "%d %X %d \n", stream_type, flags, st->discard);
917 if (s->pb->seekable &&
918 ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY ||
919 stream_type == FLV_STREAM_TYPE_AUDIO))
920 av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
922 if ( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
923 ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
924 || st->discard >= AVDISCARD_ALL
926 avio_seek(s->pb, next, SEEK_SET);
927 ret = AVERROR(EAGAIN);
933 // if not streamed and no duration from metadata then seek to end to find
934 // the duration from the timestamps
935 if (s->pb->seekable && (!s->duration || s->duration == AV_NOPTS_VALUE) && !flv->searched_for_end) {
937 const int64_t pos = avio_tell(s->pb);
938 // Read the last 4 bytes of the file, this should be the size of the
939 // previous FLV tag. Use the timestamp of its payload as duration.
940 int64_t fsize = avio_size(s->pb);
942 avio_seek(s->pb, fsize - 4, SEEK_SET);
943 size = avio_rb32(s->pb);
944 // Seek to the start of the last FLV tag at position (fsize - 4 - size)
945 // but skip the byte indicating the type.
946 avio_seek(s->pb, fsize - 3 - size, SEEK_SET);
947 if (size == avio_rb24(s->pb) + 11) {
948 uint32_t ts = avio_rb24(s->pb);
949 ts |= avio_r8(s->pb) << 24;
951 s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
952 else if (fsize >= 8 && fsize - 8 >= size) {
958 avio_seek(s->pb, pos, SEEK_SET);
959 flv->searched_for_end = 1;
962 if (stream_type == FLV_STREAM_TYPE_AUDIO) {
963 int bits_per_coded_sample;
964 channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
965 sample_rate = 44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >>
966 FLV_AUDIO_SAMPLERATE_OFFSET) >> 3;
967 bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
968 if (!st->codec->channels || !st->codec->sample_rate ||
969 !st->codec->bits_per_coded_sample) {
970 st->codec->channels = channels;
971 st->codec->channel_layout = channels == 1
973 : AV_CH_LAYOUT_STEREO;
974 st->codec->sample_rate = sample_rate;
975 st->codec->bits_per_coded_sample = bits_per_coded_sample;
977 if (!st->codec->codec_id) {
978 flv_set_audio_codec(s, st, st->codec,
979 flags & FLV_AUDIO_CODECID_MASK);
980 flv->last_sample_rate =
981 sample_rate = st->codec->sample_rate;
983 channels = st->codec->channels;
985 AVCodecContext ctx = {0};
986 ctx.sample_rate = sample_rate;
987 ctx.bits_per_coded_sample = bits_per_coded_sample;
988 flv_set_audio_codec(s, st, &ctx, flags & FLV_AUDIO_CODECID_MASK);
989 sample_rate = ctx.sample_rate;
991 } else if (stream_type == FLV_STREAM_TYPE_VIDEO) {
992 size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK, 1);
993 } else if (stream_type == FLV_STREAM_TYPE_DATA) {
994 st->codec->codec_id = AV_CODEC_ID_TEXT;
997 if (st->codec->codec_id == AV_CODEC_ID_AAC ||
998 st->codec->codec_id == AV_CODEC_ID_H264 ||
999 st->codec->codec_id == AV_CODEC_ID_MPEG4) {
1000 int type = avio_r8(s->pb);
1002 if (st->codec->codec_id == AV_CODEC_ID_H264 || st->codec->codec_id == AV_CODEC_ID_MPEG4) {
1004 int32_t cts = (avio_rb24(s->pb) + 0xff800000) ^ 0xff800000;
1006 if (cts < 0) { // dts might be wrong
1007 if (!flv->wrong_dts)
1008 av_log(s, AV_LOG_WARNING,
1009 "Negative cts, previous timestamps might be wrong.\n");
1011 } else if (FFABS(dts - pts) > 1000*60*15) {
1012 av_log(s, AV_LOG_WARNING,
1013 "invalid timestamps %"PRId64" %"PRId64"\n", dts, pts);
1014 dts = pts = AV_NOPTS_VALUE;
1017 if (type == 0 && (!st->codec->extradata || st->codec->codec_id == AV_CODEC_ID_AAC ||
1018 st->codec->codec_id == AV_CODEC_ID_H264)) {
1019 AVDictionaryEntry *t;
1021 if (st->codec->extradata) {
1022 if ((ret = flv_queue_extradata(flv, s->pb, stream_type, size)) < 0)
1024 ret = AVERROR(EAGAIN);
1027 if ((ret = flv_get_extradata(s, st, size)) < 0)
1030 /* Workaround for buggy Omnia A/XE encoder */
1031 t = av_dict_get(s->metadata, "Encoder", NULL, 0);
1032 if (st->codec->codec_id == AV_CODEC_ID_AAC && t && !strcmp(t->value, "Omnia A/XE"))
1033 st->codec->extradata_size = 2;
1035 if (st->codec->codec_id == AV_CODEC_ID_AAC && 0) {
1036 MPEG4AudioConfig cfg;
1038 if (avpriv_mpeg4audio_get_config(&cfg, st->codec->extradata,
1039 st->codec->extradata_size * 8, 1) >= 0) {
1040 st->codec->channels = cfg.channels;
1041 st->codec->channel_layout = 0;
1042 if (cfg.ext_sample_rate)
1043 st->codec->sample_rate = cfg.ext_sample_rate;
1045 st->codec->sample_rate = cfg.sample_rate;
1046 av_log(s, AV_LOG_TRACE, "mp4a config channels %d sample rate %d\n",
1047 st->codec->channels, st->codec->sample_rate);
1051 ret = AVERROR(EAGAIN);
1056 /* skip empty data packets */
1058 ret = AVERROR(EAGAIN);
1062 ret = av_get_packet(s->pb, pkt, size);
1066 pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
1067 pkt->stream_index = st->index;
1068 if (flv->new_extradata[stream_type]) {
1069 uint8_t *side = av_packet_new_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
1070 flv->new_extradata_size[stream_type]);
1072 memcpy(side, flv->new_extradata[stream_type],
1073 flv->new_extradata_size[stream_type]);
1074 av_freep(&flv->new_extradata[stream_type]);
1075 flv->new_extradata_size[stream_type] = 0;
1078 if (stream_type == FLV_STREAM_TYPE_AUDIO &&
1079 (sample_rate != flv->last_sample_rate ||
1080 channels != flv->last_channels)) {
1081 flv->last_sample_rate = sample_rate;
1082 flv->last_channels = channels;
1083 ff_add_param_change(pkt, channels, 0, sample_rate, 0, 0);
1086 if ( stream_type == FLV_STREAM_TYPE_AUDIO ||
1087 ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
1088 stream_type == FLV_STREAM_TYPE_DATA)
1089 pkt->flags |= AV_PKT_FLAG_KEY;
1092 avio_skip(s->pb, 4);
1096 static int flv_read_seek(AVFormatContext *s, int stream_index,
1097 int64_t ts, int flags)
1099 FLVContext *flv = s->priv_data;
1100 flv->validate_count = 0;
1101 return avio_seek_time(s->pb, stream_index, ts, flags);
1104 #define OFFSET(x) offsetof(FLVContext, x)
1105 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1106 static const AVOption options[] = {
1107 { "flv_metadata", "Allocate streams according to the onMetaData array", OFFSET(trust_metadata), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VD },
1111 static const AVClass flv_class = {
1112 .class_name = "flvdec",
1113 .item_name = av_default_item_name,
1115 .version = LIBAVUTIL_VERSION_INT,
1118 AVInputFormat ff_flv_demuxer = {
1120 .long_name = NULL_IF_CONFIG_SMALL("FLV (Flash Video)"),
1121 .priv_data_size = sizeof(FLVContext),
1122 .read_probe = flv_probe,
1123 .read_header = flv_read_header,
1124 .read_packet = flv_read_packet,
1125 .read_seek = flv_read_seek,
1126 .read_close = flv_read_close,
1127 .extensions = "flv",
1128 .priv_class = &flv_class,
1131 static const AVClass live_flv_class = {
1132 .class_name = "live_flvdec",
1133 .item_name = av_default_item_name,
1135 .version = LIBAVUTIL_VERSION_INT,
1138 AVInputFormat ff_live_flv_demuxer = {
1140 .long_name = NULL_IF_CONFIG_SMALL("live RTMP FLV (Flash Video)"),
1141 .priv_data_size = sizeof(FLVContext),
1142 .read_probe = live_flv_probe,
1143 .read_header = flv_read_header,
1144 .read_packet = flv_read_packet,
1145 .read_seek = flv_read_seek,
1146 .read_close = flv_read_close,
1147 .extensions = "flv",
1148 .priv_class = &live_flv_class,
1149 .flags = AVFMT_TS_DISCONT