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.

588 lines
21KB

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