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.

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