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