flvdec.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  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 "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. 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_REALH263: vcodec->codec_id = CODEC_ID_H263 ; break; // Really mean it this time
  89. case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
  90. case FLV_CODECID_SCREEN2: vcodec->codec_id = CODEC_ID_FLASHSV2; break;
  91. case FLV_CODECID_VP6 : vcodec->codec_id = CODEC_ID_VP6F ;
  92. case FLV_CODECID_VP6A :
  93. if(flv_codecid == FLV_CODECID_VP6A)
  94. vcodec->codec_id = CODEC_ID_VP6A;
  95. if(vcodec->extradata_size != 1) {
  96. vcodec->extradata_size = 1;
  97. vcodec->extradata = av_malloc(1);
  98. }
  99. vcodec->extradata[0] = avio_r8(s->pb);
  100. return 1; // 1 byte body size adjustment for flv_read_packet()
  101. case FLV_CODECID_H264:
  102. vcodec->codec_id = CODEC_ID_H264;
  103. return 3; // not 4, reading packet type will consume one byte
  104. case FLV_CODECID_MPEG4:
  105. vcodec->codec_id = CODEC_ID_MPEG4;
  106. return 3;
  107. default:
  108. av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
  109. vcodec->codec_tag = flv_codecid;
  110. }
  111. return 0;
  112. }
  113. static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize) {
  114. int length = avio_rb16(ioc);
  115. if(length >= buffsize) {
  116. avio_skip(ioc, length);
  117. return -1;
  118. }
  119. avio_read(ioc, buffer, length);
  120. buffer[length] = '\0';
  121. return length;
  122. }
  123. static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream *vstream, int64_t max_pos) {
  124. unsigned int timeslen = 0, fileposlen = 0, i;
  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. unsigned int arraylen;
  144. // Expect array object in context
  145. if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
  146. break;
  147. arraylen = avio_rb32(ioc);
  148. if(arraylen>>28)
  149. break;
  150. if (!strcmp(KEYFRAMES_TIMESTAMP_TAG , str_val) && !times){
  151. current_array= &times;
  152. timeslen= arraylen;
  153. }else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) && !filepositions){
  154. current_array= &filepositions;
  155. fileposlen= arraylen;
  156. }else // unexpected metatag inside keyframes, will not use such metadata for indexing
  157. break;
  158. if (!(*current_array = av_mallocz(sizeof(**current_array) * arraylen))) {
  159. ret = AVERROR(ENOMEM);
  160. goto finish;
  161. }
  162. for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
  163. if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
  164. goto finish;
  165. current_array[0][i] = av_int2dbl(avio_rb64(ioc));
  166. }
  167. if (times && filepositions) {
  168. // All done, exiting at a position allowing amf_parse_object
  169. // to finish parsing the object
  170. ret = 0;
  171. break;
  172. }
  173. }
  174. if (timeslen == fileposlen) {
  175. for(i = 0; i < timeslen; i++)
  176. av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME);
  177. } else
  178. av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
  179. finish:
  180. av_freep(&times);
  181. av_freep(&filepositions);
  182. avio_seek(ioc, initial_pos, SEEK_SET);
  183. return ret;
  184. }
  185. static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
  186. AVCodecContext *acodec, *vcodec;
  187. AVIOContext *ioc;
  188. AMFDataType amf_type;
  189. char str_val[256];
  190. double num_val;
  191. num_val = 0;
  192. ioc = s->pb;
  193. amf_type = avio_r8(ioc);
  194. switch(amf_type) {
  195. case AMF_DATA_TYPE_NUMBER:
  196. num_val = av_int2dbl(avio_rb64(ioc)); break;
  197. case AMF_DATA_TYPE_BOOL:
  198. num_val = avio_r8(ioc); break;
  199. case AMF_DATA_TYPE_STRING:
  200. if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
  201. return -1;
  202. break;
  203. case AMF_DATA_TYPE_OBJECT: {
  204. unsigned int keylen;
  205. if ((vstream || astream) && ioc->seekable && key && !strcmp(KEYFRAMES_TAG, key) && depth == 1)
  206. if (parse_keyframes_index(s, ioc, vstream ? vstream : astream,
  207. max_pos) < 0)
  208. av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
  209. while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) {
  210. avio_skip(ioc, keylen); //skip key string
  211. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  212. return -1; //if we couldn't skip, bomb out.
  213. }
  214. if(avio_r8(ioc) != AMF_END_OF_OBJECT)
  215. return -1;
  216. }
  217. break;
  218. case AMF_DATA_TYPE_NULL:
  219. case AMF_DATA_TYPE_UNDEFINED:
  220. case AMF_DATA_TYPE_UNSUPPORTED:
  221. break; //these take up no additional space
  222. case AMF_DATA_TYPE_MIXEDARRAY:
  223. avio_skip(ioc, 4); //skip 32-bit max array index
  224. while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
  225. //this is the only case in which we would want a nested parse to not skip over the object
  226. if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
  227. return -1;
  228. }
  229. if(avio_r8(ioc) != AMF_END_OF_OBJECT)
  230. return -1;
  231. break;
  232. case AMF_DATA_TYPE_ARRAY: {
  233. unsigned int arraylen, i;
  234. arraylen = avio_rb32(ioc);
  235. for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
  236. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  237. return -1; //if we couldn't skip, bomb out.
  238. }
  239. }
  240. break;
  241. case AMF_DATA_TYPE_DATE:
  242. avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
  243. break;
  244. default: //unsupported type, we couldn't skip
  245. return -1;
  246. }
  247. if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
  248. acodec = astream ? astream->codec : NULL;
  249. vcodec = vstream ? vstream->codec : NULL;
  250. if (amf_type == AMF_DATA_TYPE_NUMBER) {
  251. if (!strcmp(key, "duration"))
  252. s->duration = num_val * AV_TIME_BASE;
  253. else if (!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
  254. vcodec->bit_rate = num_val * 1024.0;
  255. else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
  256. acodec->bit_rate = num_val * 1024.0;
  257. }
  258. if (!strcmp(key, "duration") ||
  259. !strcmp(key, "filesize") ||
  260. !strcmp(key, "width") ||
  261. !strcmp(key, "height") ||
  262. !strcmp(key, "videodatarate") ||
  263. !strcmp(key, "framerate") ||
  264. !strcmp(key, "videocodecid") ||
  265. !strcmp(key, "audiodatarate") ||
  266. !strcmp(key, "audiosamplerate") ||
  267. !strcmp(key, "audiosamplesize") ||
  268. !strcmp(key, "stereo") ||
  269. !strcmp(key, "audiocodecid"))
  270. return 0;
  271. if(amf_type == AMF_DATA_TYPE_BOOL) {
  272. av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
  273. av_dict_set(&s->metadata, key, str_val, 0);
  274. } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
  275. snprintf(str_val, sizeof(str_val), "%.f", num_val);
  276. av_dict_set(&s->metadata, key, str_val, 0);
  277. } else if(amf_type == AMF_DATA_TYPE_OBJECT){
  278. if(s->nb_streams==1 && ((!acodec && !strcmp(key, "audiocodecid")) || (!vcodec && !strcmp(key, "videocodecid")))){
  279. s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
  280. }
  281. } else if (amf_type == AMF_DATA_TYPE_STRING)
  282. av_dict_set(&s->metadata, key, str_val, 0);
  283. }
  284. return 0;
  285. }
  286. static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
  287. AMFDataType type;
  288. AVStream *stream, *astream, *vstream, *dstream;
  289. AVIOContext *ioc;
  290. int i;
  291. char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
  292. vstream = astream = dstream = NULL;
  293. ioc = s->pb;
  294. //first object needs to be "onMetaData" string
  295. type = avio_r8(ioc);
  296. if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
  297. return -1;
  298. //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
  299. for(i = 0; i < s->nb_streams; i++) {
  300. stream = s->streams[i];
  301. if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
  302. else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
  303. else if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) dstream = stream;
  304. }
  305. //parse the second object (we want a mixed array)
  306. if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
  307. return -1;
  308. return 0;
  309. }
  310. static AVStream *create_stream(AVFormatContext *s, int stream_type){
  311. AVStream *st = avformat_new_stream(s, NULL);
  312. if (!st)
  313. return NULL;
  314. st->id = stream_type;
  315. switch(stream_type) {
  316. case FLV_STREAM_TYPE_VIDEO: st->codec->codec_type = AVMEDIA_TYPE_VIDEO; break;
  317. case FLV_STREAM_TYPE_AUDIO: st->codec->codec_type = AVMEDIA_TYPE_AUDIO; break;
  318. case FLV_STREAM_TYPE_DATA:
  319. st->codec->codec_type = AVMEDIA_TYPE_DATA;
  320. st->codec->codec_id = CODEC_ID_NONE; // Going to rely on copy for now
  321. av_log(s, AV_LOG_DEBUG, "Data stream created\n");
  322. }
  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, FLV_STREAM_TYPE_VIDEO))
  343. return AVERROR(ENOMEM);
  344. }
  345. if(flags & FLV_HEADER_FLAG_HASAUDIO){
  346. if(!create_stream(s, FLV_STREAM_TYPE_AUDIO))
  347. return AVERROR(ENOMEM);
  348. }
  349. // Flag doesn't indicate whether or not there is script-data present. Must
  350. // create that stream if it's encountered.
  351. offset = avio_rb32(s->pb);
  352. avio_seek(s->pb, offset, SEEK_SET);
  353. avio_skip(s->pb, 4);
  354. s->start_time = 0;
  355. return 0;
  356. }
  357. static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
  358. {
  359. av_free(st->codec->extradata);
  360. st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
  361. if (!st->codec->extradata)
  362. return AVERROR(ENOMEM);
  363. st->codec->extradata_size = size;
  364. avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
  365. return 0;
  366. }
  367. static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
  368. {
  369. FLVContext *flv = s->priv_data;
  370. int ret, i, type, size, flags;
  371. int stream_type=-1;
  372. int64_t next, pos;
  373. int64_t dts, pts = AV_NOPTS_VALUE;
  374. AVStream *st = NULL;
  375. for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
  376. pos = avio_tell(s->pb);
  377. type = avio_r8(s->pb);
  378. size = avio_rb24(s->pb);
  379. dts = avio_rb24(s->pb);
  380. dts |= avio_r8(s->pb) << 24;
  381. av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
  382. if (url_feof(s->pb))
  383. return AVERROR_EOF;
  384. avio_skip(s->pb, 3); /* stream id, always 0 */
  385. flags = 0;
  386. if(size == 0)
  387. continue;
  388. next= size + avio_tell(s->pb);
  389. if (type == FLV_TAG_TYPE_AUDIO) {
  390. stream_type=FLV_STREAM_TYPE_AUDIO;
  391. flags = avio_r8(s->pb);
  392. size--;
  393. } else if (type == FLV_TAG_TYPE_VIDEO) {
  394. stream_type=FLV_STREAM_TYPE_VIDEO;
  395. flags = avio_r8(s->pb);
  396. size--;
  397. if ((flags & 0xf0) == 0x50) /* video info / command frame */
  398. goto skip;
  399. } else if (type == FLV_TAG_TYPE_META) {
  400. if (size > 13+1+4 && dts == 0) { // Header-type metadata stuff
  401. flv_read_metabody(s, next);
  402. goto skip;
  403. } else if (dts != 0) { // Script-data "special" metadata frames - don't skip
  404. stream_type=FLV_STREAM_TYPE_DATA;
  405. } else {
  406. goto skip;
  407. }
  408. } else {
  409. av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
  410. skip:
  411. avio_seek(s->pb, next, SEEK_SET);
  412. continue;
  413. }
  414. /* skip empty data packets */
  415. if (!size)
  416. continue;
  417. /* now find stream */
  418. for(i=0;i<s->nb_streams;i++) {
  419. st = s->streams[i];
  420. if (st->id == stream_type)
  421. break;
  422. }
  423. if(i == s->nb_streams){
  424. av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
  425. st= create_stream(s, stream_type);
  426. s->ctx_flags &= ~AVFMTCTX_NOHEADER;
  427. }
  428. av_dlog(s, "%d %X %d \n", stream_type, flags, st->discard);
  429. if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
  430. ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
  431. || st->discard >= AVDISCARD_ALL
  432. ){
  433. avio_seek(s->pb, next, SEEK_SET);
  434. continue;
  435. }
  436. if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
  437. av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
  438. break;
  439. }
  440. // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
  441. if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
  442. int size;
  443. const int64_t pos= avio_tell(s->pb);
  444. const int64_t fsize= avio_size(s->pb);
  445. avio_seek(s->pb, fsize-4, SEEK_SET);
  446. size= avio_rb32(s->pb);
  447. avio_seek(s->pb, fsize-3-size, SEEK_SET);
  448. if(size == avio_rb24(s->pb) + 11){
  449. uint32_t ts = avio_rb24(s->pb);
  450. ts |= avio_r8(s->pb) << 24;
  451. s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
  452. }
  453. avio_seek(s->pb, pos, SEEK_SET);
  454. }
  455. if(stream_type == FLV_STREAM_TYPE_AUDIO){
  456. if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
  457. st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
  458. st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
  459. st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
  460. }
  461. if(!st->codec->codec_id){
  462. flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
  463. }
  464. } else if(stream_type == FLV_STREAM_TYPE_VIDEO) {
  465. size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
  466. }
  467. if (st->codec->codec_id == CODEC_ID_AAC ||
  468. st->codec->codec_id == CODEC_ID_H264 ||
  469. st->codec->codec_id == CODEC_ID_MPEG4) {
  470. int type = avio_r8(s->pb);
  471. size--;
  472. if (st->codec->codec_id == CODEC_ID_H264 || st->codec->codec_id == CODEC_ID_MPEG4) {
  473. int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
  474. pts = dts + cts;
  475. if (cts < 0) { // dts are wrong
  476. flv->wrong_dts = 1;
  477. av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
  478. }
  479. if (flv->wrong_dts)
  480. dts = AV_NOPTS_VALUE;
  481. }
  482. if (type == 0 && !st->codec->extradata) {
  483. if ((ret = flv_get_extradata(s, st, size)) < 0)
  484. return ret;
  485. if (st->codec->codec_id == CODEC_ID_AAC) {
  486. MPEG4AudioConfig cfg;
  487. avpriv_mpeg4audio_get_config(&cfg, st->codec->extradata,
  488. st->codec->extradata_size);
  489. st->codec->channels = cfg.channels;
  490. if (cfg.ext_sample_rate)
  491. st->codec->sample_rate = cfg.ext_sample_rate;
  492. else
  493. st->codec->sample_rate = cfg.sample_rate;
  494. av_dlog(s, "mp4a config channels %d sample rate %d\n",
  495. st->codec->channels, st->codec->sample_rate);
  496. }
  497. ret = AVERROR(EAGAIN);
  498. goto leave;
  499. }
  500. }
  501. /* skip empty data packets */
  502. if (!size) {
  503. ret = AVERROR(EAGAIN);
  504. goto leave;
  505. }
  506. ret= av_get_packet(s->pb, pkt, size);
  507. if (ret < 0) {
  508. return AVERROR(EIO);
  509. }
  510. /* note: we need to modify the packet size here to handle the last
  511. packet */
  512. pkt->size = ret;
  513. pkt->dts = dts;
  514. pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
  515. pkt->stream_index = st->index;
  516. if ( stream_type == FLV_STREAM_TYPE_AUDIO ||
  517. ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
  518. stream_type == FLV_STREAM_TYPE_DATA)
  519. pkt->flags |= AV_PKT_FLAG_KEY;
  520. leave:
  521. avio_skip(s->pb, 4);
  522. return ret;
  523. }
  524. static int flv_read_seek(AVFormatContext *s, int stream_index,
  525. int64_t ts, int flags)
  526. {
  527. return avio_seek_time(s->pb, stream_index, ts, flags);
  528. }
  529. #if 0 /* don't know enough to implement this */
  530. static int flv_read_seek2(AVFormatContext *s, int stream_index,
  531. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  532. {
  533. int ret = AVERROR(ENOSYS);
  534. if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
  535. if (!s->pb->seekable) {
  536. if (stream_index < 0) {
  537. stream_index = av_find_default_stream_index(s);
  538. if (stream_index < 0)
  539. return -1;
  540. /* timestamp for default must be expressed in AV_TIME_BASE units */
  541. ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
  542. flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
  543. }
  544. ret = avio_seek_time(s->pb, stream_index, ts, flags);
  545. }
  546. if (ret == AVERROR(ENOSYS))
  547. ret = av_seek_frame(s, stream_index, ts, flags);
  548. return ret;
  549. }
  550. #endif
  551. AVInputFormat ff_flv_demuxer = {
  552. .name = "flv",
  553. .long_name = NULL_IF_CONFIG_SMALL("FLV format"),
  554. .priv_data_size = sizeof(FLVContext),
  555. .read_probe = flv_probe,
  556. .read_header = flv_read_header,
  557. .read_packet = flv_read_packet,
  558. .read_seek = flv_read_seek,
  559. #if 0
  560. .read_seek2 = flv_read_seek2,
  561. #endif
  562. .extensions = "flv",
  563. .value = CODEC_ID_FLV1,
  564. };