You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

581 lines
20KB

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