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.

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