]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / flvdec.c
1 /*
2  * FLV demuxer
3  * Copyright (c) 2003 The FFmpeg Project
4  *
5  * This demuxer will generate a 1 byte extradata for VP6F content.
6  * It is composed of:
7  *  - upper 4bits: difference between encoded width and visible width
8  *  - lower 4bits: difference between encoded height and visible height
9  *
10  * This file is part of FFmpeg.
11  *
12  * FFmpeg is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public
14  * License as published by the Free Software Foundation; either
15  * version 2.1 of the License, or (at your option) any later version.
16  *
17  * FFmpeg is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with FFmpeg; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25  */
26
27 #include "libavutil/avstring.h"
28 #include "libavutil/dict.h"
29 #include "libavutil/intfloat.h"
30 #include "libavutil/mathematics.h"
31 #include "libavcodec/bytestream.h"
32 #include "libavcodec/mpeg4audio.h"
33 #include "avformat.h"
34 #include "internal.h"
35 #include "avio_internal.h"
36 #include "flv.h"
37
38 typedef struct {
39     int wrong_dts; ///< wrong dts due to negative cts
40     uint8_t *new_extradata[FLV_STREAM_TYPE_NB];
41     int      new_extradata_size[FLV_STREAM_TYPE_NB];
42     int      last_sample_rate;
43     int      last_channels;
44 } FLVContext;
45
46 static int flv_probe(AVProbeData *p)
47 {
48     const uint8_t *d;
49
50     d = p->buf;
51     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) {
52         return AVPROBE_SCORE_MAX;
53     }
54     return 0;
55 }
56
57 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, AVCodecContext *acodec, int flv_codecid) {
58     switch(flv_codecid) {
59         //no distinction between S16 and S8 PCM codec flags
60         case FLV_CODECID_PCM:
61             acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 :
62 #if HAVE_BIGENDIAN
63                                 CODEC_ID_PCM_S16BE;
64 #else
65                                 CODEC_ID_PCM_S16LE;
66 #endif
67             break;
68         case FLV_CODECID_PCM_LE:
69             acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 : CODEC_ID_PCM_S16LE; break;
70         case FLV_CODECID_AAC  : acodec->codec_id = CODEC_ID_AAC;                                    break;
71         case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF;                              break;
72         case FLV_CODECID_SPEEX:
73             acodec->codec_id = CODEC_ID_SPEEX;
74             acodec->sample_rate = 16000;
75             break;
76         case FLV_CODECID_MP3  : acodec->codec_id = CODEC_ID_MP3      ; astream->need_parsing = AVSTREAM_PARSE_FULL; break;
77         case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
78             acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate
79             acodec->codec_id = CODEC_ID_NELLYMOSER;
80             break;
81         case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
82             acodec->sample_rate = 16000;
83             acodec->codec_id = CODEC_ID_NELLYMOSER;
84             break;
85         case FLV_CODECID_NELLYMOSER:
86             acodec->codec_id = CODEC_ID_NELLYMOSER;
87             break;
88         default:
89             av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
90             acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
91     }
92 }
93
94 static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) {
95     AVCodecContext *vcodec = vstream->codec;
96     switch(flv_codecid) {
97         case FLV_CODECID_H263  : vcodec->codec_id = CODEC_ID_FLV1   ; break;
98         case FLV_CODECID_REALH263: vcodec->codec_id = CODEC_ID_H263 ; break; // Really mean it this time
99         case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
100         case FLV_CODECID_SCREEN2: vcodec->codec_id = CODEC_ID_FLASHSV2; break;
101         case FLV_CODECID_VP6   : vcodec->codec_id = CODEC_ID_VP6F   ;
102         case FLV_CODECID_VP6A  :
103             if(flv_codecid == FLV_CODECID_VP6A)
104                 vcodec->codec_id = CODEC_ID_VP6A;
105             if(vcodec->extradata_size != 1) {
106                 vcodec->extradata_size = 1;
107                 vcodec->extradata = av_malloc(1);
108             }
109             vcodec->extradata[0] = avio_r8(s->pb);
110             return 1; // 1 byte body size adjustment for flv_read_packet()
111         case FLV_CODECID_H264:
112             vcodec->codec_id = CODEC_ID_H264;
113             return 3; // not 4, reading packet type will consume one byte
114         case FLV_CODECID_MPEG4:
115             vcodec->codec_id = CODEC_ID_MPEG4;
116             return 3;
117         default:
118             av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
119             vcodec->codec_tag = flv_codecid;
120     }
121
122     return 0;
123 }
124
125 static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize) {
126     int length = avio_rb16(ioc);
127     if(length >= buffsize) {
128         avio_skip(ioc, length);
129         return -1;
130     }
131
132     avio_read(ioc, buffer, length);
133
134     buffer[length] = '\0';
135
136     return length;
137 }
138
139 static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream *vstream, int64_t max_pos) {
140     unsigned int timeslen = 0, fileposlen = 0, i;
141     char str_val[256];
142     int64_t *times = NULL;
143     int64_t *filepositions = NULL;
144     int ret = AVERROR(ENOSYS);
145     int64_t initial_pos = avio_tell(ioc);
146
147     if(vstream->nb_index_entries>0){
148         av_log(s, AV_LOG_WARNING, "Skiping duplicate index\n");
149         return 0;
150     }
151
152     while (avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
153         int64_t** current_array;
154         unsigned int arraylen;
155
156         // Expect array object in context
157         if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
158             break;
159
160         arraylen = avio_rb32(ioc);
161         if(arraylen>>28)
162             break;
163
164         if       (!strcmp(KEYFRAMES_TIMESTAMP_TAG , str_val) && !times){
165             current_array= &times;
166             timeslen= arraylen;
167         }else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) && !filepositions){
168             current_array= &filepositions;
169             fileposlen= arraylen;
170         }else // unexpected metatag inside keyframes, will not use such metadata for indexing
171             break;
172
173         if (!(*current_array = av_mallocz(sizeof(**current_array) * arraylen))) {
174             ret = AVERROR(ENOMEM);
175             goto finish;
176         }
177
178         for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
179             if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
180                 goto invalid;
181             current_array[0][i] = av_int2double(avio_rb64(ioc));
182         }
183         if (times && filepositions) {
184             // All done, exiting at a position allowing amf_parse_object
185             // to finish parsing the object
186             ret = 0;
187             break;
188         }
189     }
190
191     if (timeslen == fileposlen && fileposlen>1 && max_pos <= filepositions[0]) {
192         int64_t dts, size0, size1;
193         avio_seek(ioc, filepositions[1]-4, SEEK_SET);
194         size0 = avio_rb32(ioc);
195                 avio_r8(ioc);
196         size1 = avio_rb24(ioc);
197         dts   = avio_rb24(ioc);
198         dts  |= avio_r8(ioc) << 24;
199         if (size0 > filepositions[1] || FFABS(dts - times[1]*1000)>5000/*arbitraray threshold to detect invalid index*/)
200             goto invalid;
201          for(i = 0; i < timeslen; i++)
202              av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME);
203     } else {
204 invalid:
205         av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
206     }
207
208 finish:
209     av_freep(&times);
210     av_freep(&filepositions);
211     avio_seek(ioc, initial_pos, SEEK_SET);
212     return ret;
213 }
214
215 static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
216     AVCodecContext *acodec, *vcodec;
217     AVIOContext *ioc;
218     AMFDataType amf_type;
219     char str_val[256];
220     double num_val;
221
222     num_val = 0;
223     ioc = s->pb;
224
225     amf_type = avio_r8(ioc);
226
227     switch(amf_type) {
228         case AMF_DATA_TYPE_NUMBER:
229             num_val = av_int2double(avio_rb64(ioc)); break;
230         case AMF_DATA_TYPE_BOOL:
231             num_val = avio_r8(ioc); break;
232         case AMF_DATA_TYPE_STRING:
233             if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
234                 return -1;
235             break;
236         case AMF_DATA_TYPE_OBJECT: {
237             unsigned int keylen;
238
239             if ((vstream || astream) && ioc->seekable && key && !strcmp(KEYFRAMES_TAG, key) && depth == 1)
240                 if (parse_keyframes_index(s, ioc, vstream ? vstream : astream,
241                                           max_pos) < 0)
242                     av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
243
244             while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) {
245                 avio_skip(ioc, keylen); //skip key string
246                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
247                     return -1; //if we couldn't skip, bomb out.
248             }
249             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
250                 return -1;
251         }
252             break;
253         case AMF_DATA_TYPE_NULL:
254         case AMF_DATA_TYPE_UNDEFINED:
255         case AMF_DATA_TYPE_UNSUPPORTED:
256             break; //these take up no additional space
257         case AMF_DATA_TYPE_MIXEDARRAY:
258             avio_skip(ioc, 4); //skip 32-bit max array index
259             while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
260                 //this is the only case in which we would want a nested parse to not skip over the object
261                 if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
262                     return -1;
263             }
264             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
265                 return -1;
266             break;
267         case AMF_DATA_TYPE_ARRAY: {
268             unsigned int arraylen, i;
269
270             arraylen = avio_rb32(ioc);
271             for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
272                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
273                     return -1; //if we couldn't skip, bomb out.
274             }
275         }
276             break;
277         case AMF_DATA_TYPE_DATE:
278             avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
279             break;
280         default: //unsupported type, we couldn't skip
281             return -1;
282     }
283
284     if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
285         acodec = astream ? astream->codec : NULL;
286         vcodec = vstream ? vstream->codec : NULL;
287
288         if (amf_type == AMF_DATA_TYPE_NUMBER) {
289             if (!strcmp(key, "duration"))
290                 s->duration = num_val * AV_TIME_BASE;
291             else if (!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
292                 vcodec->bit_rate = num_val * 1024.0;
293             else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
294                 acodec->bit_rate = num_val * 1024.0;
295         }
296
297         if (amf_type == AMF_DATA_TYPE_OBJECT && s->nb_streams == 1 &&
298            ((!acodec && !strcmp(key, "audiocodecid")) ||
299             (!vcodec && !strcmp(key, "videocodecid"))))
300                 s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
301
302         if (!strcmp(key, "duration")        ||
303             !strcmp(key, "filesize")        ||
304             !strcmp(key, "width")           ||
305             !strcmp(key, "height")          ||
306             !strcmp(key, "videodatarate")   ||
307             !strcmp(key, "framerate")       ||
308             !strcmp(key, "videocodecid")    ||
309             !strcmp(key, "audiodatarate")   ||
310             !strcmp(key, "audiosamplerate") ||
311             !strcmp(key, "audiosamplesize") ||
312             !strcmp(key, "stereo")          ||
313             !strcmp(key, "audiocodecid"))
314             return 0;
315
316         if(amf_type == AMF_DATA_TYPE_BOOL) {
317             av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
318             av_dict_set(&s->metadata, key, str_val, 0);
319         } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
320             snprintf(str_val, sizeof(str_val), "%.f", num_val);
321             av_dict_set(&s->metadata, key, str_val, 0);
322         } else if (amf_type == AMF_DATA_TYPE_STRING)
323             av_dict_set(&s->metadata, key, str_val, 0);
324     }
325
326     return 0;
327 }
328
329 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
330     AMFDataType type;
331     AVStream *stream, *astream, *vstream, *dstream;
332     AVIOContext *ioc;
333     int i;
334     char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
335
336     vstream = astream = dstream = NULL;
337     ioc = s->pb;
338
339     //first object needs to be "onMetaData" string
340     type = avio_r8(ioc);
341     if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
342         return -1;
343
344     //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
345     for(i = 0; i < s->nb_streams; i++) {
346         stream = s->streams[i];
347         if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
348         else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
349         else if(stream->codec->codec_type == AVMEDIA_TYPE_DATA) dstream = stream;
350     }
351
352     //parse the second object (we want a mixed array)
353     if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
354         return -1;
355
356     return 0;
357 }
358
359 static AVStream *create_stream(AVFormatContext *s, int stream_type){
360     AVStream *st = avformat_new_stream(s, NULL);
361     if (!st)
362         return NULL;
363     st->id = stream_type;
364     switch(stream_type) {
365         case FLV_STREAM_TYPE_VIDEO:    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;    break;
366         case FLV_STREAM_TYPE_AUDIO:    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;    break;
367         case FLV_STREAM_TYPE_DATA:
368             st->codec->codec_type = AVMEDIA_TYPE_DATA;
369             st->codec->codec_id = CODEC_ID_NONE; // Going to rely on copy for now
370             av_log(s, AV_LOG_DEBUG, "Data stream created\n");
371     }
372     if(s->nb_streams>=3 ||(   s->nb_streams==2
373                            && s->streams[0]->codec->codec_type != AVMEDIA_TYPE_DATA
374                            && s->streams[1]->codec->codec_type != AVMEDIA_TYPE_DATA))
375         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
376
377     avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
378     return st;
379 }
380
381 static int flv_read_header(AVFormatContext *s,
382                            AVFormatParameters *ap)
383 {
384     int offset, flags;
385
386     avio_skip(s->pb, 4);
387     flags = avio_r8(s->pb);
388     /* old flvtool cleared this field */
389     /* FIXME: better fix needed */
390     if (!flags) {
391         flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
392         av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
393     }
394         s->ctx_flags |= AVFMTCTX_NOHEADER;
395
396     if(flags & FLV_HEADER_FLAG_HASVIDEO){
397         if(!create_stream(s, FLV_STREAM_TYPE_VIDEO))
398             return AVERROR(ENOMEM);
399     }
400     if(flags & FLV_HEADER_FLAG_HASAUDIO){
401         if(!create_stream(s, FLV_STREAM_TYPE_AUDIO))
402             return AVERROR(ENOMEM);
403     }
404     // Flag doesn't indicate whether or not there is script-data present. Must
405     // create that stream if it's encountered.
406
407     offset = avio_rb32(s->pb);
408     avio_seek(s->pb, offset, SEEK_SET);
409     avio_skip(s->pb, 4);
410
411     s->start_time = 0;
412
413     return 0;
414 }
415
416 static int flv_read_close(AVFormatContext *s)
417 {
418     int i;
419     FLVContext *flv = s->priv_data;
420     for(i=0; i<FLV_STREAM_TYPE_NB; i++)
421         av_freep(&flv->new_extradata[i]);
422     return 0;
423 }
424
425 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
426 {
427     av_free(st->codec->extradata);
428     st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
429     if (!st->codec->extradata)
430         return AVERROR(ENOMEM);
431     st->codec->extradata_size = size;
432     avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
433     return 0;
434 }
435
436 static int flv_queue_extradata(FLVContext *flv, AVIOContext *pb, int stream,
437                                int size)
438 {
439     av_free(flv->new_extradata[stream]);
440     flv->new_extradata[stream] = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
441     if (!flv->new_extradata[stream])
442         return AVERROR(ENOMEM);
443     flv->new_extradata_size[stream] = size;
444     avio_read(pb, flv->new_extradata[stream], size);
445     return 0;
446 }
447
448 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
449 {
450     FLVContext *flv = s->priv_data;
451     int ret, i, type, size, flags;
452     int stream_type=-1;
453     int64_t next, pos;
454     int64_t dts, pts = AV_NOPTS_VALUE;
455     int av_uninit(channels);
456     int av_uninit(sample_rate);
457     AVStream *st = NULL;
458
459  for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
460     pos = avio_tell(s->pb);
461     type = avio_r8(s->pb);
462     size = avio_rb24(s->pb);
463     dts = avio_rb24(s->pb);
464     dts |= avio_r8(s->pb) << 24;
465     av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
466     if (url_feof(s->pb))
467         return AVERROR_EOF;
468     avio_skip(s->pb, 3); /* stream id, always 0 */
469     flags = 0;
470
471     if(size == 0)
472         continue;
473
474     next= size + avio_tell(s->pb);
475
476     if (type == FLV_TAG_TYPE_AUDIO) {
477         stream_type=FLV_STREAM_TYPE_AUDIO;
478         flags = avio_r8(s->pb);
479         size--;
480     } else if (type == FLV_TAG_TYPE_VIDEO) {
481         stream_type=FLV_STREAM_TYPE_VIDEO;
482         flags = avio_r8(s->pb);
483         size--;
484         if ((flags & 0xf0) == 0x50) /* video info / command frame */
485             goto skip;
486     } else if (type == FLV_TAG_TYPE_META) {
487         if (size > 13+1+4 && dts == 0) { // Header-type metadata stuff
488             flv_read_metabody(s, next);
489             goto skip;
490         } else if (dts != 0) { // Script-data "special" metadata frames - don't skip
491             stream_type=FLV_STREAM_TYPE_DATA;
492         } else {
493             goto skip;
494         }
495     } else {
496         av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
497     skip:
498         avio_seek(s->pb, next, SEEK_SET);
499         continue;
500     }
501
502     /* skip empty data packets */
503     if (!size)
504         continue;
505
506     /* now find stream */
507     for(i=0;i<s->nb_streams;i++) {
508         st = s->streams[i];
509         if (st->id == stream_type)
510             break;
511     }
512     if(i == s->nb_streams){
513         av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
514         st= create_stream(s, stream_type);
515     }
516     av_dlog(s, "%d %X %d \n", stream_type, flags, st->discard);
517     if(  (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
518        ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
519        || st->discard >= AVDISCARD_ALL
520        ){
521         avio_seek(s->pb, next, SEEK_SET);
522         continue;
523     }
524     if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
525         av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
526     break;
527  }
528
529     // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
530     if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
531         int size;
532         const int64_t pos= avio_tell(s->pb);
533         const int64_t fsize= avio_size(s->pb);
534         avio_seek(s->pb, fsize-4, SEEK_SET);
535         size= avio_rb32(s->pb);
536         avio_seek(s->pb, fsize-3-size, SEEK_SET);
537         if(size == avio_rb24(s->pb) + 11){
538             uint32_t ts = avio_rb24(s->pb);
539             ts |= avio_r8(s->pb) << 24;
540             s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
541         }
542         avio_seek(s->pb, pos, SEEK_SET);
543     }
544
545     if(stream_type == FLV_STREAM_TYPE_AUDIO){
546         int bits_per_coded_sample;
547         channels    = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
548         sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
549         bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
550         if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
551             st->codec->channels              = channels;
552             st->codec->sample_rate           = sample_rate;
553             st->codec->bits_per_coded_sample = bits_per_coded_sample;
554         }
555         if(!st->codec->codec_id){
556             flv_set_audio_codec(s, st, st->codec, flags & FLV_AUDIO_CODECID_MASK);
557             flv->last_sample_rate = st->codec->sample_rate;
558             flv->last_channels    = st->codec->channels;
559         } else {
560             AVCodecContext ctx;
561             ctx.sample_rate = sample_rate;
562             flv_set_audio_codec(s, st, &ctx, flags & FLV_AUDIO_CODECID_MASK);
563             sample_rate = ctx.sample_rate;
564         }
565     } else if(stream_type == FLV_STREAM_TYPE_VIDEO) {
566         size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
567     }
568
569     if (st->codec->codec_id == CODEC_ID_AAC ||
570         st->codec->codec_id == CODEC_ID_H264 ||
571         st->codec->codec_id == CODEC_ID_MPEG4) {
572         int type = avio_r8(s->pb);
573         size--;
574         if (st->codec->codec_id == CODEC_ID_H264 || st->codec->codec_id == CODEC_ID_MPEG4) {
575             int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
576             pts = dts + cts;
577             if (cts < 0) { // dts are wrong
578                 flv->wrong_dts = 1;
579                 av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
580             }
581             if (flv->wrong_dts)
582                 dts = AV_NOPTS_VALUE;
583         }
584         if (type == 0 && !st->codec->extradata) {
585             if (st->codec->extradata) {
586                 if ((ret = flv_queue_extradata(flv, s->pb, stream_type, size)) < 0)
587                     return ret;
588                 ret = AVERROR(EAGAIN);
589                 goto leave;
590             }
591             if ((ret = flv_get_extradata(s, st, size)) < 0)
592                 return ret;
593             if (st->codec->codec_id == CODEC_ID_AAC) {
594                 MPEG4AudioConfig cfg;
595                 if (avpriv_mpeg4audio_get_config(&cfg, st->codec->extradata,
596                                              st->codec->extradata_size * 8, 1) >= 0) {
597                 st->codec->channels = cfg.channels;
598                 if (cfg.ext_sample_rate)
599                     st->codec->sample_rate = cfg.ext_sample_rate;
600                 else
601                     st->codec->sample_rate = cfg.sample_rate;
602                 av_dlog(s, "mp4a config channels %d sample rate %d\n",
603                         st->codec->channels, st->codec->sample_rate);
604                 }
605             }
606
607             ret = AVERROR(EAGAIN);
608             goto leave;
609         }
610     }
611
612     /* skip empty data packets */
613     if (!size) {
614         ret = AVERROR(EAGAIN);
615         goto leave;
616     }
617
618     ret= av_get_packet(s->pb, pkt, size);
619     if (ret < 0) {
620         return AVERROR(EIO);
621     }
622     /* note: we need to modify the packet size here to handle the last
623        packet */
624     pkt->size = ret;
625     pkt->dts = dts;
626     pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
627     pkt->stream_index = st->index;
628     if (flv->new_extradata[stream_type]) {
629         uint8_t *side = av_packet_new_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
630                                                 flv->new_extradata_size[stream_type]);
631         if (side) {
632             memcpy(side, flv->new_extradata[stream_type],
633                    flv->new_extradata_size[stream_type]);
634             av_freep(&flv->new_extradata[stream_type]);
635             flv->new_extradata_size[stream_type] = 0;
636         }
637     }
638     if (stream_type == FLV_STREAM_TYPE_AUDIO && (sample_rate != flv->last_sample_rate ||
639                      channels != flv->last_channels)) {
640         flv->last_sample_rate = sample_rate;
641         flv->last_channels    = channels;
642         ff_add_param_change(pkt, channels, 0, sample_rate, 0, 0);
643     }
644
645     if (    stream_type == FLV_STREAM_TYPE_AUDIO ||
646             ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
647             stream_type == FLV_STREAM_TYPE_DATA)
648         pkt->flags |= AV_PKT_FLAG_KEY;
649
650 leave:
651     avio_skip(s->pb, 4);
652     return ret;
653 }
654
655 static int flv_read_seek(AVFormatContext *s, int stream_index,
656     int64_t ts, int flags)
657 {
658     return avio_seek_time(s->pb, stream_index, ts, flags);
659 }
660
661 #if 0 /* don't know enough to implement this */
662 static int flv_read_seek2(AVFormatContext *s, int stream_index,
663     int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
664 {
665     int ret = AVERROR(ENOSYS);
666
667     if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
668
669     if (!s->pb->seekable) {
670         if (stream_index < 0) {
671             stream_index = av_find_default_stream_index(s);
672             if (stream_index < 0)
673                 return -1;
674
675             /* timestamp for default must be expressed in AV_TIME_BASE units */
676             ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
677                 flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
678         }
679         ret = avio_seek_time(s->pb, stream_index, ts, flags);
680     }
681
682     if (ret == AVERROR(ENOSYS))
683         ret = av_seek_frame(s, stream_index, ts, flags);
684     return ret;
685 }
686 #endif
687
688 AVInputFormat ff_flv_demuxer = {
689     .name           = "flv",
690     .long_name      = NULL_IF_CONFIG_SMALL("FLV format"),
691     .priv_data_size = sizeof(FLVContext),
692     .read_probe     = flv_probe,
693     .read_header    = flv_read_header,
694     .read_packet    = flv_read_packet,
695     .read_seek = flv_read_seek,
696 #if 0
697     .read_seek2 = flv_read_seek2,
698 #endif
699     .read_close = flv_read_close,
700     .extensions = "flv",
701     .value = CODEC_ID_FLV1,
702 };