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.

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