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.

623 lines
22KB

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