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.

398 lines
14KB

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