]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
lavc: use avpriv_ prefix for ff_ac3_parse_header.
[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_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 #define KEYFRAMES_TAG            "keyframes"
38 #define KEYFRAMES_TIMESTAMP_TAG  "times"
39 #define KEYFRAMES_BYTEOFFSET_TAG "filepositions"
40
41 typedef struct {
42     int wrong_dts; ///< wrong dts due to negative cts
43 } FLVContext;
44
45 static int flv_probe(AVProbeData *p)
46 {
47     const uint8_t *d;
48
49     d = p->buf;
50     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) {
51         return AVPROBE_SCORE_MAX;
52     }
53     return 0;
54 }
55
56 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) {
57     AVCodecContext *acodec = astream->codec;
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_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
99         case FLV_CODECID_SCREEN2: vcodec->codec_id = CODEC_ID_FLASHSV2; break;
100         case FLV_CODECID_VP6   : vcodec->codec_id = CODEC_ID_VP6F   ;
101         case FLV_CODECID_VP6A  :
102             if(flv_codecid == FLV_CODECID_VP6A)
103                 vcodec->codec_id = CODEC_ID_VP6A;
104             if(vcodec->extradata_size != 1) {
105                 vcodec->extradata_size = 1;
106                 vcodec->extradata = av_malloc(1);
107             }
108             vcodec->extradata[0] = avio_r8(s->pb);
109             return 1; // 1 byte body size adjustment for flv_read_packet()
110         case FLV_CODECID_H264:
111             vcodec->codec_id = CODEC_ID_H264;
112             return 3; // not 4, reading packet type will consume one byte
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 arraylen = 0, timeslen = 0, fileposlen = 0, i;
137     double num_val;
138     char str_val[256];
139     int64_t *times = NULL;
140     int64_t *filepositions = NULL;
141     int ret = AVERROR(ENOSYS);
142     int64_t initial_pos = avio_tell(ioc);
143     AVDictionaryEntry *creator = av_dict_get(s->metadata, "metadatacreator",
144                                              NULL, 0);
145
146     if (creator && !strcmp(creator->value, "MEGA")) {
147         /* Files with this metadatacreator tag seem to have filepositions
148          * pointing at the 4 trailer bytes of the previous packet,
149          * which isn't the norm (nor what we expect here, nor what
150          * jwplayer + lighttpd expect, nor what flvtool2 produces).
151          * Just ignore the index in this case, instead of risking trying
152          * to adjust it to something that might or might not work. */
153         return 0;
154     }
155
156     while (avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
157         int64_t* current_array;
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         /*
168          * Expect only 'times' or 'filepositions' sub-arrays in other case refuse to use such metadata
169          * for indexing
170          */
171         if (!strcmp(KEYFRAMES_TIMESTAMP_TAG, str_val) && !times) {
172             if (!(times = av_mallocz(sizeof(*times) * arraylen))) {
173                 ret = AVERROR(ENOMEM);
174                 goto finish;
175             }
176             timeslen = arraylen;
177             current_array = times;
178         } else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) && !filepositions) {
179             if (!(filepositions = av_mallocz(sizeof(*filepositions) * arraylen))) {
180                 ret = AVERROR(ENOMEM);
181                 goto finish;
182             }
183             fileposlen = arraylen;
184             current_array = filepositions;
185         } else // unexpected metatag inside keyframes, will not use such metadata for indexing
186             break;
187
188         for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
189             if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
190                 goto finish;
191             num_val = av_int2dbl(avio_rb64(ioc));
192             current_array[i] = num_val;
193         }
194         if (times && filepositions) {
195             // All done, exiting at a position allowing amf_parse_object
196             // to finish parsing the object
197             ret = 0;
198             break;
199         }
200     }
201
202     if (!ret && timeslen == fileposlen)
203          for (i = 0; i < fileposlen; i++)
204              av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME);
205     else
206         av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
207
208 finish:
209     av_freep(&times);
210     av_freep(&filepositions);
211     // If we got unexpected data, but successfully reset back to
212     // the start pos, the caller can continue parsing
213     if (ret < 0 && avio_seek(ioc, initial_pos, SEEK_SET) > 0)
214         return 0;
215     return ret;
216 }
217
218 static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
219     AVCodecContext *acodec, *vcodec;
220     AVIOContext *ioc;
221     AMFDataType amf_type;
222     char str_val[256];
223     double num_val;
224
225     num_val = 0;
226     ioc = s->pb;
227
228     amf_type = avio_r8(ioc);
229
230     switch(amf_type) {
231         case AMF_DATA_TYPE_NUMBER:
232             num_val = av_int2dbl(avio_rb64(ioc)); break;
233         case AMF_DATA_TYPE_BOOL:
234             num_val = avio_r8(ioc); break;
235         case AMF_DATA_TYPE_STRING:
236             if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
237                 return -1;
238             break;
239         case AMF_DATA_TYPE_OBJECT: {
240             unsigned int keylen;
241
242             if (key && !strcmp(KEYFRAMES_TAG, key) && depth == 1)
243                 if (parse_keyframes_index(s, ioc, vstream, max_pos) < 0)
244                     return -1;
245
246             while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) {
247                 avio_skip(ioc, keylen); //skip key string
248                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
249                     return -1; //if we couldn't skip, bomb out.
250             }
251             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
252                 return -1;
253         }
254             break;
255         case AMF_DATA_TYPE_NULL:
256         case AMF_DATA_TYPE_UNDEFINED:
257         case AMF_DATA_TYPE_UNSUPPORTED:
258             break; //these take up no additional space
259         case AMF_DATA_TYPE_MIXEDARRAY:
260             avio_skip(ioc, 4); //skip 32-bit max array index
261             while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
262                 //this is the only case in which we would want a nested parse to not skip over the object
263                 if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
264                     return -1;
265             }
266             if(avio_r8(ioc) != AMF_END_OF_OBJECT)
267                 return -1;
268             break;
269         case AMF_DATA_TYPE_ARRAY: {
270             unsigned int arraylen, i;
271
272             arraylen = avio_rb32(ioc);
273             for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
274                 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
275                     return -1; //if we couldn't skip, bomb out.
276             }
277         }
278             break;
279         case AMF_DATA_TYPE_DATE:
280             avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
281             break;
282         default: //unsupported type, we couldn't skip
283             return -1;
284     }
285
286     if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
287         acodec = astream ? astream->codec : NULL;
288         vcodec = vstream ? vstream->codec : NULL;
289
290         if (amf_type == AMF_DATA_TYPE_NUMBER) {
291             if (!strcmp(key, "duration"))
292                 s->duration = num_val * AV_TIME_BASE;
293             else if (!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
294                 vcodec->bit_rate = num_val * 1024.0;
295             else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
296                 acodec->bit_rate = num_val * 1024.0;
297         }
298
299         if (!strcmp(key, "duration")        ||
300             !strcmp(key, "filesize")        ||
301             !strcmp(key, "width")           ||
302             !strcmp(key, "height")          ||
303             !strcmp(key, "videodatarate")   ||
304             !strcmp(key, "framerate")       ||
305             !strcmp(key, "videocodecid")    ||
306             !strcmp(key, "audiodatarate")   ||
307             !strcmp(key, "audiosamplerate") ||
308             !strcmp(key, "audiosamplesize") ||
309             !strcmp(key, "stereo")          ||
310             !strcmp(key, "audiocodecid"))
311             return 0;
312
313         if(amf_type == AMF_DATA_TYPE_BOOL) {
314             av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
315             av_dict_set(&s->metadata, key, str_val, 0);
316         } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
317             snprintf(str_val, sizeof(str_val), "%.f", num_val);
318             av_dict_set(&s->metadata, key, str_val, 0);
319         } else if (amf_type == AMF_DATA_TYPE_STRING)
320             av_dict_set(&s->metadata, key, str_val, 0);
321     }
322
323     return 0;
324 }
325
326 static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
327     AMFDataType type;
328     AVStream *stream, *astream, *vstream;
329     AVIOContext *ioc;
330     int i;
331     char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
332
333     astream = NULL;
334     vstream = NULL;
335     ioc = s->pb;
336
337     //first object needs to be "onMetaData" string
338     type = avio_r8(ioc);
339     if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
340         return -1;
341
342     //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
343     for(i = 0; i < s->nb_streams; i++) {
344         stream = s->streams[i];
345         if     (stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
346         else if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
347     }
348
349     //parse the second object (we want a mixed array)
350     if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
351         return -1;
352
353     return 0;
354 }
355
356 static AVStream *create_stream(AVFormatContext *s, int is_audio){
357     AVStream *st = avformat_new_stream(s, NULL);
358     if (!st)
359         return NULL;
360     st->id = is_audio;
361     st->codec->codec_type = is_audio ? AVMEDIA_TYPE_AUDIO : AVMEDIA_TYPE_VIDEO;
362     av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
363     return st;
364 }
365
366 static int flv_read_header(AVFormatContext *s,
367                            AVFormatParameters *ap)
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_get_extradata(AVFormatContext *s, AVStream *st, int size)
403 {
404     av_free(st->codec->extradata);
405     st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
406     if (!st->codec->extradata)
407         return AVERROR(ENOMEM);
408     st->codec->extradata_size = size;
409     avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
410     return 0;
411 }
412
413 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
414 {
415     FLVContext *flv = s->priv_data;
416     int ret, i, type, size, flags, is_audio;
417     int64_t next, pos;
418     int64_t dts, pts = AV_NOPTS_VALUE;
419     AVStream *st = NULL;
420
421  for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
422     pos = avio_tell(s->pb);
423     type = avio_r8(s->pb);
424     size = avio_rb24(s->pb);
425     dts = avio_rb24(s->pb);
426     dts |= avio_r8(s->pb) << 24;
427     av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
428     if (s->pb->eof_reached)
429         return AVERROR_EOF;
430     avio_skip(s->pb, 3); /* stream id, always 0 */
431     flags = 0;
432
433     if(size == 0)
434         continue;
435
436     next= size + avio_tell(s->pb);
437
438     if (type == FLV_TAG_TYPE_AUDIO) {
439         is_audio=1;
440         flags = avio_r8(s->pb);
441         size--;
442     } else if (type == FLV_TAG_TYPE_VIDEO) {
443         is_audio=0;
444         flags = avio_r8(s->pb);
445         size--;
446         if ((flags & 0xf0) == 0x50) /* video info / command frame */
447             goto skip;
448     } else {
449         if (type == FLV_TAG_TYPE_META && size > 13+1+4)
450             flv_read_metabody(s, next);
451         else /* skip packet */
452             av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
453     skip:
454         avio_seek(s->pb, next, SEEK_SET);
455         continue;
456     }
457
458     /* skip empty data packets */
459     if (!size)
460         continue;
461
462     /* now find stream */
463     for(i=0;i<s->nb_streams;i++) {
464         st = s->streams[i];
465         if (st->id == is_audio)
466             break;
467     }
468     if(i == s->nb_streams){
469         av_log(s, AV_LOG_ERROR, "invalid stream\n");
470         st= create_stream(s, is_audio);
471         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
472     }
473     av_dlog(s, "%d %X %d \n", is_audio, flags, st->discard);
474     if(  (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY ||         is_audio))
475        ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && !is_audio))
476        || st->discard >= AVDISCARD_ALL
477        ){
478         avio_seek(s->pb, next, SEEK_SET);
479         continue;
480     }
481     if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
482         av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
483     break;
484  }
485
486     // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
487     if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
488         int size;
489         const int64_t pos= avio_tell(s->pb);
490         const int64_t fsize= avio_size(s->pb);
491         avio_seek(s->pb, fsize-4, SEEK_SET);
492         size= avio_rb32(s->pb);
493         avio_seek(s->pb, fsize-3-size, SEEK_SET);
494         if(size == avio_rb24(s->pb) + 11){
495             uint32_t ts = avio_rb24(s->pb);
496             ts |= avio_r8(s->pb) << 24;
497             s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
498         }
499         avio_seek(s->pb, pos, SEEK_SET);
500     }
501
502     if(is_audio){
503         if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
504             st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
505             st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
506             st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
507         }
508         if(!st->codec->codec_id){
509             flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
510         }
511     }else{
512         size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
513     }
514
515     if (st->codec->codec_id == CODEC_ID_AAC ||
516         st->codec->codec_id == CODEC_ID_H264) {
517         int type = avio_r8(s->pb);
518         size--;
519         if (st->codec->codec_id == CODEC_ID_H264) {
520             int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
521             pts = dts + cts;
522             if (cts < 0) { // dts are wrong
523                 flv->wrong_dts = 1;
524                 av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
525             }
526             if (flv->wrong_dts)
527                 dts = AV_NOPTS_VALUE;
528         }
529         if (type == 0) {
530             if ((ret = flv_get_extradata(s, st, size)) < 0)
531                 return ret;
532             if (st->codec->codec_id == CODEC_ID_AAC) {
533                 MPEG4AudioConfig cfg;
534                 avpriv_mpeg4audio_get_config(&cfg, st->codec->extradata,
535                                          st->codec->extradata_size);
536                 st->codec->channels = cfg.channels;
537                 if (cfg.ext_sample_rate)
538                     st->codec->sample_rate = cfg.ext_sample_rate;
539                 else
540                     st->codec->sample_rate = cfg.sample_rate;
541                 av_dlog(s, "mp4a config channels %d sample rate %d\n",
542                         st->codec->channels, st->codec->sample_rate);
543             }
544
545             ret = AVERROR(EAGAIN);
546             goto leave;
547         }
548     }
549
550     /* skip empty data packets */
551     if (!size) {
552         ret = AVERROR(EAGAIN);
553         goto leave;
554     }
555
556     ret= av_get_packet(s->pb, pkt, size);
557     if (ret < 0) {
558         return AVERROR(EIO);
559     }
560     /* note: we need to modify the packet size here to handle the last
561        packet */
562     pkt->size = ret;
563     pkt->dts = dts;
564     pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
565     pkt->stream_index = st->index;
566
567     if (is_audio || ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY))
568         pkt->flags |= AV_PKT_FLAG_KEY;
569
570 leave:
571     avio_skip(s->pb, 4);
572     return ret;
573 }
574
575 static int flv_read_seek(AVFormatContext *s, int stream_index,
576     int64_t ts, int flags)
577 {
578     return avio_seek_time(s->pb, stream_index, ts, flags);
579 }
580
581 #if 0 /* don't know enough to implement this */
582 static int flv_read_seek2(AVFormatContext *s, int stream_index,
583     int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
584 {
585     int ret = AVERROR(ENOSYS);
586
587     if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
588
589     if (!s->pb->seekable) {
590         if (stream_index < 0) {
591             stream_index = av_find_default_stream_index(s);
592             if (stream_index < 0)
593                 return -1;
594
595             /* timestamp for default must be expressed in AV_TIME_BASE units */
596             ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
597                 flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
598         }
599         ret = avio_seek_time(s->pb, stream_index, ts, flags);
600     }
601
602     if (ret == AVERROR(ENOSYS))
603         ret = av_seek_frame(s, stream_index, ts, flags);
604     return ret;
605 }
606 #endif
607
608 AVInputFormat ff_flv_demuxer = {
609     .name           = "flv",
610     .long_name      = NULL_IF_CONFIG_SMALL("FLV format"),
611     .priv_data_size = sizeof(FLVContext),
612     .read_probe     = flv_probe,
613     .read_header    = flv_read_header,
614     .read_packet    = flv_read_packet,
615     .read_seek = flv_read_seek,
616 #if 0
617     .read_seek2 = flv_read_seek2,
618 #endif
619     .extensions = "flv",
620     .value = CODEC_ID_FLV1,
621 };