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.

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