]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
dvbsubdec: fix buf ptr in dvbsub_parse_region_segment()
[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 (ioc->seekable && key && !strcmp(KEYFRAMES_TAG, key) && depth == 1)
232                 if (parse_keyframes_index(s, ioc, vstream, max_pos) < 0)
233                     av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
234
235             while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) {
236                 avio_skip(ioc, keylen); //skip key string
237                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
238                     return -1; //if we couldn't skip, bomb out.
239             }
240             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
241                 return -1;
242         }
243             break;
244         case AMF_DATA_TYPE_NULL:
245         case AMF_DATA_TYPE_UNDEFINED:
246         case AMF_DATA_TYPE_UNSUPPORTED:
247             break; //these take up no additional space
248         case AMF_DATA_TYPE_MIXEDARRAY:
249             avio_skip(ioc, 4); //skip 32-bit max array index
250             while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
251                 //this is the only case in which we would want a nested parse to not skip over the object
252                 if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
253                     return -1;
254             }
255             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
256                 return -1;
257             break;
258         case AMF_DATA_TYPE_ARRAY: {
259             unsigned int arraylen, i;
260
261             arraylen = avio_rb32(ioc);
262             for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
263                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
264                     return -1; //if we couldn't skip, bomb out.
265             }
266         }
267             break;
268         case AMF_DATA_TYPE_DATE:
269             avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
270             break;
271         default: //unsupported type, we couldn't skip
272             return -1;
273     }
274
275     if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
276         acodec = astream ? astream->codec : NULL;
277         vcodec = vstream ? vstream->codec : NULL;
278
279         if (amf_type == AMF_DATA_TYPE_NUMBER) {
280             if (!strcmp(key, "duration"))
281                 s->duration = num_val * AV_TIME_BASE;
282             else if (!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
283                 vcodec->bit_rate = num_val * 1024.0;
284             else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
285                 acodec->bit_rate = num_val * 1024.0;
286         }
287
288         if (!strcmp(key, "duration")        ||
289             !strcmp(key, "filesize")        ||
290             !strcmp(key, "width")           ||
291             !strcmp(key, "height")          ||
292             !strcmp(key, "videodatarate")   ||
293             !strcmp(key, "framerate")       ||
294             !strcmp(key, "videocodecid")    ||
295             !strcmp(key, "audiodatarate")   ||
296             !strcmp(key, "audiosamplerate") ||
297             !strcmp(key, "audiosamplesize") ||
298             !strcmp(key, "stereo")          ||
299             !strcmp(key, "audiocodecid"))
300             return 0;
301
302         if(amf_type == AMF_DATA_TYPE_BOOL) {
303             av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
304             av_dict_set(&s->metadata, key, str_val, 0);
305         } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
306             snprintf(str_val, sizeof(str_val), "%.f", num_val);
307             av_dict_set(&s->metadata, key, str_val, 0);
308         } else if(amf_type == AMF_DATA_TYPE_OBJECT){
309             if(s->nb_streams==1 && ((!acodec && !strcmp(key, "audiocodecid")) || (!vcodec && !strcmp(key, "videocodecid")))){
310                 s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
311             }
312         } else if (amf_type == AMF_DATA_TYPE_STRING)
313             av_dict_set(&s->metadata, key, str_val, 0);
314     }
315
316     return 0;
317 }
318
319 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
320     AMFDataType type;
321     AVStream *stream, *astream, *vstream, *dstream;
322     AVIOContext *ioc;
323     int i;
324     char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
325
326     vstream = astream = dstream = NULL;
327     ioc = s->pb;
328
329     //first object needs to be "onMetaData" string
330     type = avio_r8(ioc);
331     if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
332         return -1;
333
334     //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
335     for(i = 0; i < s->nb_streams; i++) {
336         stream = s->streams[i];
337         if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
338         else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
339         else if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) dstream = stream;
340     }
341
342     //parse the second object (we want a mixed array)
343     if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
344         return -1;
345
346     return 0;
347 }
348
349 static AVStream *create_stream(AVFormatContext *s, int stream_type){
350     AVStream *st = av_new_stream(s, stream_type);
351     if (!st)
352         return NULL;
353     switch(stream_type) {
354         case FLV_STREAM_TYPE_VIDEO:    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;    break;
355         case FLV_STREAM_TYPE_AUDIO:    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;    break;
356         case FLV_STREAM_TYPE_DATA:
357             st->codec->codec_type = AVMEDIA_TYPE_DATA;
358             st->codec->codec_id = CODEC_ID_NONE; // Going to rely on copy for now
359             av_log(s, AV_LOG_DEBUG, "Data stream created\n");
360     }
361     av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
362     return st;
363 }
364
365 static int flv_read_header(AVFormatContext *s,
366                            AVFormatParameters *ap)
367 {
368     int offset, flags;
369
370     avio_skip(s->pb, 4);
371     flags = avio_r8(s->pb);
372     /* old flvtool cleared this field */
373     /* FIXME: better fix needed */
374     if (!flags) {
375         flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
376         av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
377     }
378
379     if((flags & (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
380              != (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
381         s->ctx_flags |= AVFMTCTX_NOHEADER;
382
383     if(flags & FLV_HEADER_FLAG_HASVIDEO){
384         if(!create_stream(s, FLV_STREAM_TYPE_VIDEO))
385             return AVERROR(ENOMEM);
386     }
387     if(flags & FLV_HEADER_FLAG_HASAUDIO){
388         if(!create_stream(s, FLV_STREAM_TYPE_AUDIO))
389             return AVERROR(ENOMEM);
390     }
391     // Flag doesn't indicate whether or not there is script-data present. Must
392     // create that stream if it's encountered.
393
394     offset = avio_rb32(s->pb);
395     avio_seek(s->pb, offset, SEEK_SET);
396     avio_skip(s->pb, 4);
397
398     s->start_time = 0;
399
400     return 0;
401 }
402
403 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
404 {
405     av_free(st->codec->extradata);
406     st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
407     if (!st->codec->extradata)
408         return AVERROR(ENOMEM);
409     st->codec->extradata_size = size;
410     avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
411     return 0;
412 }
413
414 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
415 {
416     FLVContext *flv = s->priv_data;
417     int ret, i, type, size, flags;
418     int stream_type=-1;
419     int64_t next, pos;
420     int64_t dts, pts = AV_NOPTS_VALUE;
421     AVStream *st = NULL;
422
423  for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
424     pos = avio_tell(s->pb);
425     type = avio_r8(s->pb);
426     size = avio_rb24(s->pb);
427     dts = avio_rb24(s->pb);
428     dts |= avio_r8(s->pb) << 24;
429     av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
430     if (url_feof(s->pb))
431         return AVERROR_EOF;
432     avio_skip(s->pb, 3); /* stream id, always 0 */
433     flags = 0;
434
435     if(size == 0)
436         continue;
437
438     next= size + avio_tell(s->pb);
439
440     if (type == FLV_TAG_TYPE_AUDIO) {
441         stream_type=FLV_STREAM_TYPE_AUDIO;
442         flags = avio_r8(s->pb);
443         size--;
444     } else if (type == FLV_TAG_TYPE_VIDEO) {
445         stream_type=FLV_STREAM_TYPE_VIDEO;
446         flags = avio_r8(s->pb);
447         size--;
448         if ((flags & 0xf0) == 0x50) /* video info / command frame */
449             goto skip;
450     } else if (type == FLV_TAG_TYPE_META) {
451         if (size > 13+1+4 && dts == 0) { // Header-type metadata stuff
452             flv_read_metabody(s, next);
453             goto skip;
454         } else if (dts != 0) { // Script-data "special" metadata frames - don't skip
455             stream_type=FLV_STREAM_TYPE_DATA;
456         } else {
457             goto skip;
458         }
459     } else {
460         av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
461     skip:
462         avio_seek(s->pb, next, SEEK_SET);
463         continue;
464     }
465
466     /* skip empty data packets */
467     if (!size)
468         continue;
469
470     /* now find stream */
471     for(i=0;i<s->nb_streams;i++) {
472         st = s->streams[i];
473         if (st->id == stream_type)
474             break;
475     }
476     if(i == s->nb_streams){
477         av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
478         st= create_stream(s, stream_type);
479         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
480     }
481     av_dlog(s, "%d %X %d \n", stream_type, flags, st->discard);
482     if(  (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
483        ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
484        || st->discard >= AVDISCARD_ALL
485        ){
486         avio_seek(s->pb, next, SEEK_SET);
487         continue;
488     }
489     if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
490         av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
491     break;
492  }
493
494     // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
495     if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
496         int size;
497         const int64_t pos= avio_tell(s->pb);
498         const int64_t fsize= avio_size(s->pb);
499         avio_seek(s->pb, fsize-4, SEEK_SET);
500         size= avio_rb32(s->pb);
501         avio_seek(s->pb, fsize-3-size, SEEK_SET);
502         if(size == avio_rb24(s->pb) + 11){
503             uint32_t ts = avio_rb24(s->pb);
504             ts |= avio_r8(s->pb) << 24;
505             s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
506         }
507         avio_seek(s->pb, pos, SEEK_SET);
508     }
509
510     if(stream_type == FLV_STREAM_TYPE_AUDIO){
511         if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
512             st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
513             st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
514             st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
515         }
516         if(!st->codec->codec_id){
517             flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
518         }
519     } else if(stream_type == FLV_STREAM_TYPE_VIDEO) {
520         size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
521     }
522
523     if (st->codec->codec_id == CODEC_ID_AAC ||
524         st->codec->codec_id == CODEC_ID_H264 ||
525         st->codec->codec_id == CODEC_ID_MPEG4) {
526         int type = avio_r8(s->pb);
527         size--;
528         if (st->codec->codec_id == CODEC_ID_H264 || st->codec->codec_id == CODEC_ID_MPEG4) {
529             int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
530             pts = dts + cts;
531             if (cts < 0) { // dts are wrong
532                 flv->wrong_dts = 1;
533                 av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
534             }
535             if (flv->wrong_dts)
536                 dts = AV_NOPTS_VALUE;
537         }
538
539         if (type == 0 && !st->codec->extradata) {
540             if ((ret = flv_get_extradata(s, st, size)) < 0)
541                 return ret;
542             if (st->codec->codec_id == CODEC_ID_AAC) {
543                 MPEG4AudioConfig cfg;
544                 ff_mpeg4audio_get_config(&cfg, st->codec->extradata,
545                                          st->codec->extradata_size);
546                 st->codec->channels = cfg.channels;
547                 if (cfg.ext_sample_rate)
548                     st->codec->sample_rate = cfg.ext_sample_rate;
549                 else
550                     st->codec->sample_rate = cfg.sample_rate;
551                 av_dlog(s, "mp4a config channels %d sample rate %d\n",
552                         st->codec->channels, st->codec->sample_rate);
553             }
554
555             ret = AVERROR(EAGAIN);
556             goto leave;
557         }
558     }
559
560     /* skip empty data packets */
561     if (!size) {
562         ret = AVERROR(EAGAIN);
563         goto leave;
564     }
565
566     ret= av_get_packet(s->pb, pkt, size);
567     if (ret < 0) {
568         return AVERROR(EIO);
569     }
570     /* note: we need to modify the packet size here to handle the last
571        packet */
572     pkt->size = ret;
573     pkt->dts = dts;
574     pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
575     pkt->stream_index = st->index;
576
577     if (    stream_type == FLV_STREAM_TYPE_AUDIO ||
578             ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
579             stream_type == FLV_STREAM_TYPE_DATA)
580         pkt->flags |= AV_PKT_FLAG_KEY;
581
582 leave:
583     avio_skip(s->pb, 4);
584     return ret;
585 }
586
587 static int flv_read_seek(AVFormatContext *s, int stream_index,
588     int64_t ts, int flags)
589 {
590     return avio_seek_time(s->pb, stream_index, ts, flags);
591 }
592
593 #if 0 /* don't know enough to implement this */
594 static int flv_read_seek2(AVFormatContext *s, int stream_index,
595     int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
596 {
597     int ret = AVERROR(ENOSYS);
598
599     if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
600
601     if (!s->pb->seekable) {
602         if (stream_index < 0) {
603             stream_index = av_find_default_stream_index(s);
604             if (stream_index < 0)
605                 return -1;
606
607             /* timestamp for default must be expressed in AV_TIME_BASE units */
608             ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
609                 flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
610         }
611         ret = avio_seek_time(s->pb, stream_index, ts, flags);
612     }
613
614     if (ret == AVERROR(ENOSYS))
615         ret = av_seek_frame(s, stream_index, ts, flags);
616     return ret;
617 }
618 #endif
619
620 AVInputFormat ff_flv_demuxer = {
621     .name           = "flv",
622     .long_name      = NULL_IF_CONFIG_SMALL("FLV format"),
623     .priv_data_size = sizeof(FLVContext),
624     .read_probe     = flv_probe,
625     .read_header    = flv_read_header,
626     .read_packet    = flv_read_packet,
627     .read_seek = flv_read_seek,
628 #if 0
629     .read_seek2 = flv_read_seek2,
630 #endif
631     .extensions = "flv",
632     .value = CODEC_ID_FLV1,
633 };