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.

585 lines
20KB

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