]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
8fdc36553214e89c822d6f00dd69153b8a90b6ba
[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 "libavcodec/bytestream.h"
28 #include "libavcodec/mpeg4audio.h"
29 #include "avformat.h"
30 #include "flv.h"
31
32 typedef struct {
33     int wrong_dts; ///< wrong dts due to negative cts
34 } FLVContext;
35
36 static int flv_probe(AVProbeData *p)
37 {
38     const uint8_t *d;
39
40     d = p->buf;
41     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) {
42         return AVPROBE_SCORE_MAX;
43     }
44     return 0;
45 }
46
47 /**
48  * Builds a Speex header.
49  * This is not needed for the libavcodec libspeex decoder, but is needed for
50  * stream copy and for decoders which require a header.
51  */
52 static void flv_build_speex_header(uint8_t *extradata)
53 {
54     memset(extradata, 0, 80);
55     bytestream_put_buffer(&extradata, "Speex   ", 8);   // speex_string
56     bytestream_put_buffer(&extradata, "1.2rc1",   6);   // speex_version
57     extradata += 14;                                    // speex_version padding
58     bytestream_put_le32(&extradata,     1);             // speex_version_id
59     bytestream_put_le32(&extradata,    80);             // header_size
60     bytestream_put_le32(&extradata, 16000);             // rate
61     bytestream_put_le32(&extradata,     1);             // mode
62     bytestream_put_le32(&extradata,     4);             // mode_bitstream_version
63     bytestream_put_le32(&extradata,     1);             // nb_channels
64     bytestream_put_le32(&extradata,    -1);             // bitrate
65     bytestream_put_le32(&extradata,   320);             // frame_size
66                                                         // vbr = 0
67                                                         // frames_per_packet = 0
68                                                         // extra_headers = 0
69                                                         // reserved1 = 0
70                                                         // reserved2 = 0
71 }
72
73 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) {
74     AVCodecContext *acodec = astream->codec;
75     switch(flv_codecid) {
76         //no distinction between S16 and S8 PCM codec flags
77         case FLV_CODECID_PCM:
78             acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_S8 :
79 #ifdef WORDS_BIGENDIAN
80                                 CODEC_ID_PCM_S16BE;
81 #else
82                                 CODEC_ID_PCM_S16LE;
83 #endif
84             break;
85         case FLV_CODECID_PCM_LE:
86             acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_S8 : CODEC_ID_PCM_S16LE; break;
87         case FLV_CODECID_AAC  : acodec->codec_id = CODEC_ID_AAC;                                    break;
88         case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF;                              break;
89         case FLV_CODECID_SPEEX:
90             acodec->codec_id = CODEC_ID_SPEEX;
91             acodec->sample_rate = 16000;
92             acodec->extradata = av_mallocz(80 + FF_INPUT_BUFFER_PADDING_SIZE);
93             if (acodec->extradata) {
94                 acodec->extradata_size = 80;
95                 flv_build_speex_header(acodec->extradata);
96             } else {
97                 av_log(s, AV_LOG_WARNING, "Unable to create Speex extradata\n");
98             }
99             break;
100         case FLV_CODECID_MP3  : acodec->codec_id = CODEC_ID_MP3      ; astream->need_parsing = AVSTREAM_PARSE_FULL; break;
101         case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
102             acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate
103         case FLV_CODECID_NELLYMOSER:
104             acodec->codec_id = CODEC_ID_NELLYMOSER;
105             break;
106         default:
107             av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
108             acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
109     }
110 }
111
112 static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) {
113     AVCodecContext *vcodec = vstream->codec;
114     switch(flv_codecid) {
115         case FLV_CODECID_H263  : vcodec->codec_id = CODEC_ID_FLV1   ; break;
116         case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
117         case FLV_CODECID_VP6   : vcodec->codec_id = CODEC_ID_VP6F   ;
118         case FLV_CODECID_VP6A  :
119             if(flv_codecid == FLV_CODECID_VP6A)
120                 vcodec->codec_id = CODEC_ID_VP6A;
121             if(vcodec->extradata_size != 1) {
122                 vcodec->extradata_size = 1;
123                 vcodec->extradata = av_malloc(1);
124             }
125             vcodec->extradata[0] = get_byte(s->pb);
126             return 1; // 1 byte body size adjustment for flv_read_packet()
127         case FLV_CODECID_H264:
128             vcodec->codec_id = CODEC_ID_H264;
129             return 3; // not 4, reading packet type will consume one byte
130         default:
131             av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
132             vcodec->codec_tag = flv_codecid;
133     }
134
135     return 0;
136 }
137
138 static int amf_get_string(ByteIOContext *ioc, char *buffer, int buffsize) {
139     int length = get_be16(ioc);
140     if(length >= buffsize) {
141         url_fskip(ioc, length);
142         return -1;
143     }
144
145     get_buffer(ioc, buffer, length);
146
147     buffer[length] = '\0';
148
149     return length;
150 }
151
152 static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
153     AVCodecContext *acodec, *vcodec;
154     ByteIOContext *ioc;
155     AMFDataType amf_type;
156     char str_val[256];
157     double num_val;
158
159     num_val = 0;
160     ioc = s->pb;
161
162     amf_type = get_byte(ioc);
163
164     switch(amf_type) {
165         case AMF_DATA_TYPE_NUMBER:
166             num_val = av_int2dbl(get_be64(ioc)); break;
167         case AMF_DATA_TYPE_BOOL:
168             num_val = get_byte(ioc); break;
169         case AMF_DATA_TYPE_STRING:
170             if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
171                 return -1;
172             break;
173         case AMF_DATA_TYPE_OBJECT: {
174             unsigned int keylen;
175
176             while(url_ftell(ioc) < max_pos - 2 && (keylen = get_be16(ioc))) {
177                 url_fskip(ioc, keylen); //skip key string
178                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
179                     return -1; //if we couldn't skip, bomb out.
180             }
181             if(get_byte(ioc) != AMF_END_OF_OBJECT)
182                 return -1;
183         }
184             break;
185         case AMF_DATA_TYPE_NULL:
186         case AMF_DATA_TYPE_UNDEFINED:
187         case AMF_DATA_TYPE_UNSUPPORTED:
188             break; //these take up no additional space
189         case AMF_DATA_TYPE_MIXEDARRAY:
190             url_fskip(ioc, 4); //skip 32-bit max array index
191             while(url_ftell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
192                 //this is the only case in which we would want a nested parse to not skip over the object
193                 if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
194                     return -1;
195             }
196             if(get_byte(ioc) != AMF_END_OF_OBJECT)
197                 return -1;
198             break;
199         case AMF_DATA_TYPE_ARRAY: {
200             unsigned int arraylen, i;
201
202             arraylen = get_be32(ioc);
203             for(i = 0; i < arraylen && url_ftell(ioc) < max_pos - 1; i++) {
204                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
205                     return -1; //if we couldn't skip, bomb out.
206             }
207         }
208             break;
209         case AMF_DATA_TYPE_DATE:
210             url_fskip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
211             break;
212         default: //unsupported type, we couldn't skip
213             return -1;
214     }
215
216     if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
217         acodec = astream ? astream->codec : NULL;
218         vcodec = vstream ? vstream->codec : NULL;
219
220         if(amf_type == AMF_DATA_TYPE_BOOL) {
221         } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
222             if(!strcmp(key, "duration")) s->duration = num_val * AV_TIME_BASE;
223             else if(!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
224                 vcodec->bit_rate = num_val * 1024.0;
225         }
226     }
227
228     return 0;
229 }
230
231 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
232     AMFDataType type;
233     AVStream *stream, *astream, *vstream;
234     ByteIOContext *ioc;
235     int i;
236     char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
237
238     astream = NULL;
239     vstream = NULL;
240     ioc = s->pb;
241
242     //first object needs to be "onMetaData" string
243     type = get_byte(ioc);
244     if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
245         return -1;
246
247     //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
248     for(i = 0; i < s->nb_streams; i++) {
249         stream = s->streams[i];
250         if     (stream->codec->codec_type == CODEC_TYPE_AUDIO) astream = stream;
251         else if(stream->codec->codec_type == CODEC_TYPE_VIDEO) vstream = stream;
252     }
253
254     //parse the second object (we want a mixed array)
255     if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
256         return -1;
257
258     return 0;
259 }
260
261 static AVStream *create_stream(AVFormatContext *s, int is_audio){
262     AVStream *st = av_new_stream(s, is_audio);
263     if (!st)
264         return NULL;
265     st->codec->codec_type = is_audio ? CODEC_TYPE_AUDIO : CODEC_TYPE_VIDEO;
266     av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
267     return st;
268 }
269
270 static int flv_read_header(AVFormatContext *s,
271                            AVFormatParameters *ap)
272 {
273     int offset, flags;
274
275     url_fskip(s->pb, 4);
276     flags = get_byte(s->pb);
277     /* old flvtool cleared this field */
278     /* FIXME: better fix needed */
279     if (!flags) {
280         flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
281         av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
282     }
283
284     if((flags & (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
285              != (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
286         s->ctx_flags |= AVFMTCTX_NOHEADER;
287
288     if(flags & FLV_HEADER_FLAG_HASVIDEO){
289         if(!create_stream(s, 0))
290             return AVERROR(ENOMEM);
291     }
292     if(flags & FLV_HEADER_FLAG_HASAUDIO){
293         if(!create_stream(s, 1))
294             return AVERROR(ENOMEM);
295     }
296
297     offset = get_be32(s->pb);
298     url_fseek(s->pb, offset, SEEK_SET);
299
300     s->start_time = 0;
301
302     return 0;
303 }
304
305 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
306 {
307     av_free(st->codec->extradata);
308     st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
309     if (!st->codec->extradata)
310         return AVERROR(ENOMEM);
311     st->codec->extradata_size = size;
312     get_buffer(s->pb, st->codec->extradata, st->codec->extradata_size);
313     return 0;
314 }
315
316 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
317 {
318     FLVContext *flv = s->priv_data;
319     int ret, i, type, size, flags, is_audio;
320     int64_t next, pos;
321     int64_t dts, pts = AV_NOPTS_VALUE;
322     AVStream *st = NULL;
323
324  for(;;){
325     pos = url_ftell(s->pb);
326     url_fskip(s->pb, 4); /* size of previous packet */
327     type = get_byte(s->pb);
328     size = get_be24(s->pb);
329     dts = get_be24(s->pb);
330     dts |= get_byte(s->pb) << 24;
331 //    av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, dts:%d\n", type, size, dts);
332     if (url_feof(s->pb))
333         return AVERROR_EOF;
334     url_fskip(s->pb, 3); /* stream id, always 0 */
335     flags = 0;
336
337     if(size == 0)
338         continue;
339
340     next= size + url_ftell(s->pb);
341
342     if (type == FLV_TAG_TYPE_AUDIO) {
343         is_audio=1;
344         flags = get_byte(s->pb);
345         size--;
346     } else if (type == FLV_TAG_TYPE_VIDEO) {
347         is_audio=0;
348         flags = get_byte(s->pb);
349         size--;
350         if ((flags & 0xf0) == 0x50) /* video info / command frame */
351             goto skip;
352     } else {
353         if (type == FLV_TAG_TYPE_META && size > 13+1+4)
354             flv_read_metabody(s, next);
355         else /* skip packet */
356             av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
357     skip:
358         url_fseek(s->pb, next, SEEK_SET);
359         continue;
360     }
361
362     /* skip empty data packets */
363     if (!size)
364         continue;
365
366     /* now find stream */
367     for(i=0;i<s->nb_streams;i++) {
368         st = s->streams[i];
369         if (st->id == is_audio)
370             break;
371     }
372     if(i == s->nb_streams){
373         av_log(s, AV_LOG_ERROR, "invalid stream\n");
374         st= create_stream(s, is_audio);
375         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
376     }
377 //    av_log(s, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
378     if(  (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY ||         is_audio))
379        ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && !is_audio))
380        || st->discard >= AVDISCARD_ALL
381        ){
382         url_fseek(s->pb, next, SEEK_SET);
383         continue;
384     }
385     if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
386         av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
387     break;
388  }
389
390     // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
391     if(!url_is_streamed(s->pb) && s->duration==AV_NOPTS_VALUE){
392         int size;
393         const int64_t pos= url_ftell(s->pb);
394         const int64_t fsize= url_fsize(s->pb);
395         url_fseek(s->pb, fsize-4, SEEK_SET);
396         size= get_be32(s->pb);
397         url_fseek(s->pb, fsize-3-size, SEEK_SET);
398         if(size == get_be24(s->pb) + 11){
399             s->duration= get_be24(s->pb) * (int64_t)AV_TIME_BASE / 1000;
400         }
401         url_fseek(s->pb, pos, SEEK_SET);
402     }
403
404     if(is_audio){
405         if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
406             st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
407             st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
408             st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
409         }
410         if(!st->codec->codec_id){
411             flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
412         }
413     }else{
414         size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
415     }
416
417     if (st->codec->codec_id == CODEC_ID_AAC ||
418         st->codec->codec_id == CODEC_ID_H264) {
419         int type = get_byte(s->pb);
420         size--;
421         if (st->codec->codec_id == CODEC_ID_H264) {
422             int32_t cts = (get_be24(s->pb)+0xff800000)^0xff800000; // sign extension
423             pts = dts + cts;
424             if (cts < 0) { // dts are wrong
425                 flv->wrong_dts = 1;
426                 av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
427             }
428             if (flv->wrong_dts)
429                 dts = AV_NOPTS_VALUE;
430         }
431         if (type == 0) {
432             if ((ret = flv_get_extradata(s, st, size)) < 0)
433                 return ret;
434             if (st->codec->codec_id == CODEC_ID_AAC) {
435                 MPEG4AudioConfig cfg;
436                 ff_mpeg4audio_get_config(&cfg, st->codec->extradata,
437                                          st->codec->extradata_size);
438                 if (cfg.chan_config > 7)
439                     return -1;
440                 st->codec->channels = ff_mpeg4audio_channels[cfg.chan_config];
441                 st->codec->sample_rate = cfg.sample_rate;
442                 dprintf(s, "mp4a config channels %d sample rate %d\n",
443                         st->codec->channels, st->codec->sample_rate);
444             }
445
446             return AVERROR(EAGAIN);
447         }
448     }
449
450     /* skip empty data packets */
451     if (!size)
452         return AVERROR(EAGAIN);
453
454     ret= av_get_packet(s->pb, pkt, size);
455     if (ret < 0) {
456         return AVERROR(EIO);
457     }
458     /* note: we need to modify the packet size here to handle the last
459        packet */
460     pkt->size = ret;
461     pkt->dts = dts;
462     pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
463     pkt->stream_index = st->index;
464
465     if (is_audio || ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY))
466         pkt->flags |= PKT_FLAG_KEY;
467
468     return ret;
469 }
470
471 AVInputFormat flv_demuxer = {
472     "flv",
473     NULL_IF_CONFIG_SMALL("FLV format"),
474     sizeof(FLVContext),
475     flv_probe,
476     flv_read_header,
477     flv_read_packet,
478     .extensions = "flv",
479     .value = CODEC_ID_FLV1,
480 };