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.

396 lines
14KB

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