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