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