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