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.

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