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.

453 lines
16KB

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