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.

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