flvdec.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  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 "libavcodec/mpeg4audio.h"
  27. #include "avformat.h"
  28. #include "flv.h"
  29. typedef struct {
  30. int wrong_dts; ///< wrong dts due to negative cts
  31. } FLVContext;
  32. static int flv_probe(AVProbeData *p)
  33. {
  34. const uint8_t *d;
  35. d = p->buf;
  36. if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) {
  37. return AVPROBE_SCORE_MAX;
  38. }
  39. return 0;
  40. }
  41. static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) {
  42. AVCodecContext *acodec = astream->codec;
  43. switch(flv_codecid) {
  44. //no distinction between S16 and S8 PCM codec flags
  45. case FLV_CODECID_PCM:
  46. acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_S8 :
  47. #ifdef WORDS_BIGENDIAN
  48. CODEC_ID_PCM_S16BE;
  49. #else
  50. CODEC_ID_PCM_S16LE;
  51. #endif
  52. break;
  53. case FLV_CODECID_PCM_LE:
  54. acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_S8 : CODEC_ID_PCM_S16LE; break;
  55. case FLV_CODECID_AAC : acodec->codec_id = CODEC_ID_AAC; break;
  56. case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF; break;
  57. case FLV_CODECID_SPEEX:
  58. acodec->codec_id = CODEC_ID_SPEEX;
  59. acodec->sample_rate = 16000;
  60. break;
  61. case FLV_CODECID_MP3 : acodec->codec_id = CODEC_ID_MP3 ; astream->need_parsing = AVSTREAM_PARSE_FULL; break;
  62. case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
  63. acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate
  64. case FLV_CODECID_NELLYMOSER:
  65. acodec->codec_id = CODEC_ID_NELLYMOSER;
  66. break;
  67. default:
  68. av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
  69. acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
  70. }
  71. }
  72. static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) {
  73. AVCodecContext *vcodec = vstream->codec;
  74. switch(flv_codecid) {
  75. case FLV_CODECID_H263 : vcodec->codec_id = CODEC_ID_FLV1 ; break;
  76. case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
  77. case FLV_CODECID_VP6 : vcodec->codec_id = CODEC_ID_VP6F ;
  78. case FLV_CODECID_VP6A :
  79. if(flv_codecid == FLV_CODECID_VP6A)
  80. vcodec->codec_id = CODEC_ID_VP6A;
  81. if(vcodec->extradata_size != 1) {
  82. vcodec->extradata_size = 1;
  83. vcodec->extradata = av_malloc(1);
  84. }
  85. vcodec->extradata[0] = get_byte(s->pb);
  86. return 1; // 1 byte body size adjustment for flv_read_packet()
  87. case FLV_CODECID_H264:
  88. vcodec->codec_id = CODEC_ID_H264;
  89. return 3; // not 4, reading packet type will consume one byte
  90. default:
  91. av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
  92. vcodec->codec_tag = flv_codecid;
  93. }
  94. return 0;
  95. }
  96. static int amf_get_string(ByteIOContext *ioc, char *buffer, int buffsize) {
  97. int length = get_be16(ioc);
  98. if(length >= buffsize) {
  99. url_fskip(ioc, length);
  100. return -1;
  101. }
  102. get_buffer(ioc, buffer, length);
  103. buffer[length] = '\0';
  104. return length;
  105. }
  106. static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
  107. AVCodecContext *acodec, *vcodec;
  108. ByteIOContext *ioc;
  109. AMFDataType amf_type;
  110. char str_val[256];
  111. double num_val;
  112. num_val = 0;
  113. ioc = s->pb;
  114. amf_type = get_byte(ioc);
  115. switch(amf_type) {
  116. case AMF_DATA_TYPE_NUMBER:
  117. num_val = av_int2dbl(get_be64(ioc)); break;
  118. case AMF_DATA_TYPE_BOOL:
  119. num_val = get_byte(ioc); break;
  120. case AMF_DATA_TYPE_STRING:
  121. if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
  122. return -1;
  123. break;
  124. case AMF_DATA_TYPE_OBJECT: {
  125. unsigned int keylen;
  126. while(url_ftell(ioc) < max_pos - 2 && (keylen = get_be16(ioc))) {
  127. url_fskip(ioc, keylen); //skip key string
  128. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  129. return -1; //if we couldn't skip, bomb out.
  130. }
  131. if(get_byte(ioc) != AMF_END_OF_OBJECT)
  132. return -1;
  133. }
  134. break;
  135. case AMF_DATA_TYPE_NULL:
  136. case AMF_DATA_TYPE_UNDEFINED:
  137. case AMF_DATA_TYPE_UNSUPPORTED:
  138. break; //these take up no additional space
  139. case AMF_DATA_TYPE_MIXEDARRAY:
  140. url_fskip(ioc, 4); //skip 32-bit max array index
  141. while(url_ftell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
  142. //this is the only case in which we would want a nested parse to not skip over the object
  143. if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
  144. return -1;
  145. }
  146. if(get_byte(ioc) != AMF_END_OF_OBJECT)
  147. return -1;
  148. break;
  149. case AMF_DATA_TYPE_ARRAY: {
  150. unsigned int arraylen, i;
  151. arraylen = get_be32(ioc);
  152. for(i = 0; i < arraylen && url_ftell(ioc) < max_pos - 1; i++) {
  153. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  154. return -1; //if we couldn't skip, bomb out.
  155. }
  156. }
  157. break;
  158. case AMF_DATA_TYPE_DATE:
  159. url_fskip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
  160. break;
  161. default: //unsupported type, we couldn't skip
  162. return -1;
  163. }
  164. if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
  165. acodec = astream ? astream->codec : NULL;
  166. vcodec = vstream ? vstream->codec : NULL;
  167. if(amf_type == AMF_DATA_TYPE_BOOL) {
  168. if(!strcmp(key, "stereo") && acodec) acodec->channels = num_val > 0 ? 2 : 1;
  169. } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
  170. if(!strcmp(key, "duration")) s->duration = num_val * AV_TIME_BASE;
  171. // else if(!strcmp(key, "width") && vcodec && num_val > 0) vcodec->width = num_val;
  172. // else if(!strcmp(key, "height") && vcodec && num_val > 0) vcodec->height = num_val;
  173. else if(!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
  174. vcodec->bit_rate = num_val * 1024.0;
  175. else if(!strcmp(key, "audiocodecid") && acodec && 0 <= (int)num_val)
  176. flv_set_audio_codec(s, astream, (int)num_val << FLV_AUDIO_CODECID_OFFSET);
  177. else if(!strcmp(key, "videocodecid") && vcodec && 0 <= (int)num_val)
  178. flv_set_video_codec(s, vstream, (int)num_val);
  179. else if(!strcmp(key, "audiosamplesize") && acodec && 0 < (int)num_val) {
  180. acodec->bits_per_coded_sample = num_val;
  181. //we may have to rewrite a previously read codecid because FLV only marks PCM endianness.
  182. if(num_val == 8 && (acodec->codec_id == CODEC_ID_PCM_S16BE || acodec->codec_id == CODEC_ID_PCM_S16LE))
  183. acodec->codec_id = CODEC_ID_PCM_S8;
  184. }
  185. else if(!strcmp(key, "audiosamplerate") && acodec && num_val >= 0) {
  186. //some tools, like FLVTool2, write consistently approximate metadata sample rates
  187. if (!acodec->sample_rate) {
  188. switch((int)num_val) {
  189. case 44000: acodec->sample_rate = 44100 ; break;
  190. case 22000: acodec->sample_rate = 22050 ; break;
  191. case 11000: acodec->sample_rate = 11025 ; break;
  192. case 5000 : acodec->sample_rate = 5512 ; break;
  193. default : acodec->sample_rate = num_val;
  194. }
  195. }
  196. }
  197. }
  198. }
  199. return 0;
  200. }
  201. static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
  202. AMFDataType type;
  203. AVStream *stream, *astream, *vstream;
  204. ByteIOContext *ioc;
  205. int i, keylen;
  206. char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
  207. astream = NULL;
  208. vstream = NULL;
  209. keylen = 0;
  210. ioc = s->pb;
  211. //first object needs to be "onMetaData" string
  212. type = get_byte(ioc);
  213. if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
  214. return -1;
  215. //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
  216. for(i = 0; i < s->nb_streams; i++) {
  217. stream = s->streams[i];
  218. if (stream->codec->codec_type == CODEC_TYPE_AUDIO) astream = stream;
  219. else if(stream->codec->codec_type == CODEC_TYPE_VIDEO) vstream = stream;
  220. }
  221. //parse the second object (we want a mixed array)
  222. if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
  223. return -1;
  224. return 0;
  225. }
  226. static AVStream *create_stream(AVFormatContext *s, int is_audio){
  227. AVStream *st = av_new_stream(s, is_audio);
  228. if (!st)
  229. return NULL;
  230. st->codec->codec_type = is_audio ? CODEC_TYPE_AUDIO : CODEC_TYPE_VIDEO;
  231. av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
  232. return st;
  233. }
  234. static int flv_read_header(AVFormatContext *s,
  235. AVFormatParameters *ap)
  236. {
  237. int offset, flags;
  238. url_fskip(s->pb, 4);
  239. flags = get_byte(s->pb);
  240. /* old flvtool cleared this field */
  241. /* FIXME: better fix needed */
  242. if (!flags) {
  243. flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
  244. av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
  245. }
  246. if((flags & (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
  247. != (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
  248. s->ctx_flags |= AVFMTCTX_NOHEADER;
  249. if(flags & FLV_HEADER_FLAG_HASVIDEO){
  250. if(!create_stream(s, 0))
  251. return AVERROR(ENOMEM);
  252. }
  253. if(flags & FLV_HEADER_FLAG_HASAUDIO){
  254. if(!create_stream(s, 1))
  255. return AVERROR(ENOMEM);
  256. }
  257. offset = get_be32(s->pb);
  258. url_fseek(s->pb, offset, SEEK_SET);
  259. s->start_time = 0;
  260. return 0;
  261. }
  262. static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
  263. {
  264. av_free(st->codec->extradata);
  265. st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
  266. if (!st->codec->extradata)
  267. return AVERROR(ENOMEM);
  268. st->codec->extradata_size = size;
  269. get_buffer(s->pb, st->codec->extradata, st->codec->extradata_size);
  270. return 0;
  271. }
  272. static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
  273. {
  274. FLVContext *flv = s->priv_data;
  275. int ret, i, type, size, flags, is_audio;
  276. int64_t next, pos;
  277. int64_t dts, pts = AV_NOPTS_VALUE;
  278. AVStream *st = NULL;
  279. retry:
  280. for(;;){
  281. pos = url_ftell(s->pb);
  282. url_fskip(s->pb, 4); /* size of previous packet */
  283. type = get_byte(s->pb);
  284. size = get_be24(s->pb);
  285. dts = get_be24(s->pb);
  286. dts |= get_byte(s->pb) << 24;
  287. // av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, dts:%d\n", type, size, dts);
  288. if (url_feof(s->pb))
  289. return AVERROR_EOF;
  290. url_fskip(s->pb, 3); /* stream id, always 0 */
  291. flags = 0;
  292. if(size == 0)
  293. continue;
  294. next= size + url_ftell(s->pb);
  295. if (type == FLV_TAG_TYPE_AUDIO) {
  296. is_audio=1;
  297. flags = get_byte(s->pb);
  298. size--;
  299. } else if (type == FLV_TAG_TYPE_VIDEO) {
  300. is_audio=0;
  301. flags = get_byte(s->pb);
  302. size--;
  303. if ((flags & 0xf0) == 0x50) /* video info / command frame */
  304. goto skip;
  305. } else {
  306. if (type == FLV_TAG_TYPE_META && size > 13+1+4)
  307. flv_read_metabody(s, next);
  308. else /* skip packet */
  309. av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
  310. skip:
  311. url_fseek(s->pb, next, SEEK_SET);
  312. continue;
  313. }
  314. /* skip empty data packets */
  315. if (!size)
  316. continue;
  317. /* now find stream */
  318. for(i=0;i<s->nb_streams;i++) {
  319. st = s->streams[i];
  320. if (st->id == is_audio)
  321. break;
  322. }
  323. if(i == s->nb_streams){
  324. av_log(s, AV_LOG_ERROR, "invalid stream\n");
  325. st= create_stream(s, is_audio);
  326. s->ctx_flags &= ~AVFMTCTX_NOHEADER;
  327. }
  328. // av_log(s, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
  329. if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || is_audio))
  330. ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && !is_audio))
  331. || st->discard >= AVDISCARD_ALL
  332. ){
  333. url_fseek(s->pb, next, SEEK_SET);
  334. continue;
  335. }
  336. if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
  337. av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
  338. break;
  339. }
  340. // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
  341. if(!url_is_streamed(s->pb) && s->duration==AV_NOPTS_VALUE){
  342. int size;
  343. const int64_t pos= url_ftell(s->pb);
  344. const int64_t fsize= url_fsize(s->pb);
  345. url_fseek(s->pb, fsize-4, SEEK_SET);
  346. size= get_be32(s->pb);
  347. url_fseek(s->pb, fsize-3-size, SEEK_SET);
  348. if(size == get_be24(s->pb) + 11){
  349. s->duration= get_be24(s->pb) * (int64_t)AV_TIME_BASE / 1000;
  350. }
  351. url_fseek(s->pb, pos, SEEK_SET);
  352. }
  353. if(is_audio){
  354. if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
  355. st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
  356. st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
  357. st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
  358. }
  359. if(!st->codec->codec_id){
  360. flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
  361. }
  362. }else{
  363. size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
  364. }
  365. if (st->codec->codec_id == CODEC_ID_AAC ||
  366. st->codec->codec_id == CODEC_ID_H264) {
  367. int type = get_byte(s->pb);
  368. size--;
  369. if (st->codec->codec_id == CODEC_ID_H264) {
  370. int32_t cts = (get_be24(s->pb)+0xff800000)^0xff800000; // sign extension
  371. pts = dts + cts;
  372. if (cts < 0) { // dts are wrong
  373. flv->wrong_dts = 1;
  374. av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
  375. }
  376. if (flv->wrong_dts)
  377. dts = AV_NOPTS_VALUE;
  378. }
  379. if (type == 0) {
  380. if ((ret = flv_get_extradata(s, st, size)) < 0)
  381. return ret;
  382. if (st->codec->codec_id == CODEC_ID_AAC) {
  383. MPEG4AudioConfig cfg;
  384. ff_mpeg4audio_get_config(&cfg, st->codec->extradata,
  385. st->codec->extradata_size);
  386. if (cfg.chan_config > 7)
  387. return -1;
  388. st->codec->channels = ff_mpeg4audio_channels[cfg.chan_config];
  389. st->codec->sample_rate = cfg.sample_rate;
  390. dprintf(s, "mp4a config channels %d sample rate %d\n",
  391. st->codec->channels, st->codec->sample_rate);
  392. }
  393. goto retry;
  394. }
  395. }
  396. ret= av_get_packet(s->pb, pkt, size);
  397. if (ret <= 0) {
  398. return AVERROR(EIO);
  399. }
  400. /* note: we need to modify the packet size here to handle the last
  401. packet */
  402. pkt->size = ret;
  403. pkt->dts = dts;
  404. pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
  405. pkt->stream_index = st->index;
  406. if (is_audio || ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY))
  407. pkt->flags |= PKT_FLAG_KEY;
  408. return ret;
  409. }
  410. AVInputFormat flv_demuxer = {
  411. "flv",
  412. NULL_IF_CONFIG_SMALL("FLV format"),
  413. sizeof(FLVContext),
  414. flv_probe,
  415. flv_read_header,
  416. flv_read_packet,
  417. .extensions = "flv",
  418. .value = CODEC_ID_FLV1,
  419. };