flvdec.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. /*
  2. * FLV demuxer
  3. * Copyright (c) 2003 The Libav 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 Libav.
  11. *
  12. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  24. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  25. */
  26. #include "libavutil/avstring.h"
  27. #include "libavcodec/bytestream.h"
  28. #include "libavcodec/mpeg4audio.h"
  29. #include "avformat.h"
  30. #include "avio_internal.h"
  31. #include "flv.h"
  32. typedef struct {
  33. int wrong_dts; ///< wrong dts due to negative cts
  34. } FLVContext;
  35. static int flv_probe(AVProbeData *p)
  36. {
  37. const uint8_t *d;
  38. d = p->buf;
  39. if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) {
  40. return AVPROBE_SCORE_MAX;
  41. }
  42. return 0;
  43. }
  44. static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) {
  45. AVCodecContext *acodec = astream->codec;
  46. switch(flv_codecid) {
  47. //no distinction between S16 and S8 PCM codec flags
  48. case FLV_CODECID_PCM:
  49. acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 :
  50. #if HAVE_BIGENDIAN
  51. CODEC_ID_PCM_S16BE;
  52. #else
  53. CODEC_ID_PCM_S16LE;
  54. #endif
  55. break;
  56. case FLV_CODECID_PCM_LE:
  57. acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 : CODEC_ID_PCM_S16LE; break;
  58. case FLV_CODECID_AAC : acodec->codec_id = CODEC_ID_AAC; break;
  59. case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF; break;
  60. case FLV_CODECID_SPEEX:
  61. acodec->codec_id = CODEC_ID_SPEEX;
  62. acodec->sample_rate = 16000;
  63. break;
  64. case FLV_CODECID_MP3 : acodec->codec_id = CODEC_ID_MP3 ; astream->need_parsing = AVSTREAM_PARSE_FULL; break;
  65. case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
  66. acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate
  67. acodec->codec_id = CODEC_ID_NELLYMOSER;
  68. break;
  69. case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
  70. acodec->sample_rate = 16000;
  71. acodec->codec_id = CODEC_ID_NELLYMOSER;
  72. break;
  73. case FLV_CODECID_NELLYMOSER:
  74. acodec->codec_id = CODEC_ID_NELLYMOSER;
  75. break;
  76. default:
  77. av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
  78. acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
  79. }
  80. }
  81. static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) {
  82. AVCodecContext *vcodec = vstream->codec;
  83. switch(flv_codecid) {
  84. case FLV_CODECID_H263 : vcodec->codec_id = CODEC_ID_FLV1 ; break;
  85. case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
  86. case FLV_CODECID_SCREEN2: vcodec->codec_id = CODEC_ID_FLASHSV2; break;
  87. case FLV_CODECID_VP6 : vcodec->codec_id = CODEC_ID_VP6F ;
  88. case FLV_CODECID_VP6A :
  89. if(flv_codecid == FLV_CODECID_VP6A)
  90. vcodec->codec_id = CODEC_ID_VP6A;
  91. if(vcodec->extradata_size != 1) {
  92. vcodec->extradata_size = 1;
  93. vcodec->extradata = av_malloc(1);
  94. }
  95. vcodec->extradata[0] = avio_r8(s->pb);
  96. return 1; // 1 byte body size adjustment for flv_read_packet()
  97. case FLV_CODECID_H264:
  98. vcodec->codec_id = CODEC_ID_H264;
  99. return 3; // not 4, reading packet type will consume one byte
  100. default:
  101. av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
  102. vcodec->codec_tag = flv_codecid;
  103. }
  104. return 0;
  105. }
  106. static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize) {
  107. int length = avio_rb16(ioc);
  108. if(length >= buffsize) {
  109. avio_skip(ioc, length);
  110. return -1;
  111. }
  112. avio_read(ioc, buffer, length);
  113. buffer[length] = '\0';
  114. return length;
  115. }
  116. static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
  117. AVCodecContext *acodec, *vcodec;
  118. AVIOContext *ioc;
  119. AMFDataType amf_type;
  120. char str_val[256];
  121. double num_val;
  122. num_val = 0;
  123. ioc = s->pb;
  124. amf_type = avio_r8(ioc);
  125. switch(amf_type) {
  126. case AMF_DATA_TYPE_NUMBER:
  127. num_val = av_int2dbl(avio_rb64(ioc)); break;
  128. case AMF_DATA_TYPE_BOOL:
  129. num_val = avio_r8(ioc); break;
  130. case AMF_DATA_TYPE_STRING:
  131. if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
  132. return -1;
  133. break;
  134. case AMF_DATA_TYPE_OBJECT: {
  135. unsigned int keylen;
  136. while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) {
  137. avio_skip(ioc, keylen); //skip key string
  138. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  139. return -1; //if we couldn't skip, bomb out.
  140. }
  141. if(avio_r8(ioc) != AMF_END_OF_OBJECT)
  142. return -1;
  143. }
  144. break;
  145. case AMF_DATA_TYPE_NULL:
  146. case AMF_DATA_TYPE_UNDEFINED:
  147. case AMF_DATA_TYPE_UNSUPPORTED:
  148. break; //these take up no additional space
  149. case AMF_DATA_TYPE_MIXEDARRAY:
  150. avio_skip(ioc, 4); //skip 32-bit max array index
  151. while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
  152. //this is the only case in which we would want a nested parse to not skip over the object
  153. if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
  154. return -1;
  155. }
  156. if(avio_r8(ioc) != AMF_END_OF_OBJECT)
  157. return -1;
  158. break;
  159. case AMF_DATA_TYPE_ARRAY: {
  160. unsigned int arraylen, i;
  161. arraylen = avio_rb32(ioc);
  162. for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
  163. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  164. return -1; //if we couldn't skip, bomb out.
  165. }
  166. }
  167. break;
  168. case AMF_DATA_TYPE_DATE:
  169. avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
  170. break;
  171. default: //unsupported type, we couldn't skip
  172. return -1;
  173. }
  174. if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
  175. acodec = astream ? astream->codec : NULL;
  176. vcodec = vstream ? vstream->codec : NULL;
  177. if(amf_type == AMF_DATA_TYPE_BOOL) {
  178. av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
  179. av_metadata_set2(&s->metadata, key, str_val, 0);
  180. } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
  181. snprintf(str_val, sizeof(str_val), "%.f", num_val);
  182. av_metadata_set2(&s->metadata, key, str_val, 0);
  183. if(!strcmp(key, "duration")) s->duration = num_val * AV_TIME_BASE;
  184. else if(!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
  185. vcodec->bit_rate = num_val * 1024.0;
  186. else if(!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
  187. acodec->bit_rate = num_val * 1024.0;
  188. } else if (amf_type == AMF_DATA_TYPE_STRING)
  189. av_metadata_set2(&s->metadata, key, str_val, 0);
  190. }
  191. return 0;
  192. }
  193. static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
  194. AMFDataType type;
  195. AVStream *stream, *astream, *vstream;
  196. AVIOContext *ioc;
  197. int i;
  198. char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
  199. astream = NULL;
  200. vstream = NULL;
  201. ioc = s->pb;
  202. //first object needs to be "onMetaData" string
  203. type = avio_r8(ioc);
  204. if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
  205. return -1;
  206. //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
  207. for(i = 0; i < s->nb_streams; i++) {
  208. stream = s->streams[i];
  209. if (stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
  210. else if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
  211. }
  212. //parse the second object (we want a mixed array)
  213. if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
  214. return -1;
  215. return 0;
  216. }
  217. static AVStream *create_stream(AVFormatContext *s, int is_audio){
  218. AVStream *st = av_new_stream(s, is_audio);
  219. if (!st)
  220. return NULL;
  221. st->codec->codec_type = is_audio ? AVMEDIA_TYPE_AUDIO : AVMEDIA_TYPE_VIDEO;
  222. av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
  223. return st;
  224. }
  225. static int flv_read_header(AVFormatContext *s,
  226. AVFormatParameters *ap)
  227. {
  228. int offset, flags;
  229. avio_skip(s->pb, 4);
  230. flags = avio_r8(s->pb);
  231. /* old flvtool cleared this field */
  232. /* FIXME: better fix needed */
  233. if (!flags) {
  234. flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
  235. av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
  236. }
  237. if((flags & (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
  238. != (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO))
  239. s->ctx_flags |= AVFMTCTX_NOHEADER;
  240. if(flags & FLV_HEADER_FLAG_HASVIDEO){
  241. if(!create_stream(s, 0))
  242. return AVERROR(ENOMEM);
  243. }
  244. if(flags & FLV_HEADER_FLAG_HASAUDIO){
  245. if(!create_stream(s, 1))
  246. return AVERROR(ENOMEM);
  247. }
  248. offset = avio_rb32(s->pb);
  249. avio_seek(s->pb, offset, SEEK_SET);
  250. avio_skip(s->pb, 4);
  251. s->start_time = 0;
  252. return 0;
  253. }
  254. static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
  255. {
  256. av_free(st->codec->extradata);
  257. st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
  258. if (!st->codec->extradata)
  259. return AVERROR(ENOMEM);
  260. st->codec->extradata_size = size;
  261. avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
  262. return 0;
  263. }
  264. static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
  265. {
  266. FLVContext *flv = s->priv_data;
  267. int ret, i, type, size, flags, is_audio;
  268. int64_t next, pos;
  269. int64_t dts, pts = AV_NOPTS_VALUE;
  270. AVStream *st = NULL;
  271. for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
  272. pos = avio_tell(s->pb);
  273. type = avio_r8(s->pb);
  274. size = avio_rb24(s->pb);
  275. dts = avio_rb24(s->pb);
  276. dts |= avio_r8(s->pb) << 24;
  277. // av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, dts:%d\n", type, size, dts);
  278. if (s->pb->eof_reached)
  279. return AVERROR_EOF;
  280. avio_skip(s->pb, 3); /* stream id, always 0 */
  281. flags = 0;
  282. if(size == 0)
  283. continue;
  284. next= size + avio_tell(s->pb);
  285. if (type == FLV_TAG_TYPE_AUDIO) {
  286. is_audio=1;
  287. flags = avio_r8(s->pb);
  288. size--;
  289. } else if (type == FLV_TAG_TYPE_VIDEO) {
  290. is_audio=0;
  291. flags = avio_r8(s->pb);
  292. size--;
  293. if ((flags & 0xf0) == 0x50) /* video info / command frame */
  294. goto skip;
  295. } else {
  296. if (type == FLV_TAG_TYPE_META && size > 13+1+4)
  297. flv_read_metabody(s, next);
  298. else /* skip packet */
  299. av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
  300. skip:
  301. avio_seek(s->pb, next, SEEK_SET);
  302. continue;
  303. }
  304. /* skip empty data packets */
  305. if (!size)
  306. continue;
  307. /* now find stream */
  308. for(i=0;i<s->nb_streams;i++) {
  309. st = s->streams[i];
  310. if (st->id == is_audio)
  311. break;
  312. }
  313. if(i == s->nb_streams){
  314. av_log(s, AV_LOG_ERROR, "invalid stream\n");
  315. st= create_stream(s, is_audio);
  316. s->ctx_flags &= ~AVFMTCTX_NOHEADER;
  317. }
  318. // av_log(s, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
  319. if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || is_audio))
  320. ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && !is_audio))
  321. || st->discard >= AVDISCARD_ALL
  322. ){
  323. avio_seek(s->pb, next, SEEK_SET);
  324. continue;
  325. }
  326. if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
  327. av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
  328. break;
  329. }
  330. // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
  331. if(!url_is_streamed(s->pb) && (!s->duration || s->duration==AV_NOPTS_VALUE)){
  332. int size;
  333. const int64_t pos= avio_tell(s->pb);
  334. const int64_t fsize= avio_size(s->pb);
  335. avio_seek(s->pb, fsize-4, SEEK_SET);
  336. size= avio_rb32(s->pb);
  337. avio_seek(s->pb, fsize-3-size, SEEK_SET);
  338. if(size == avio_rb24(s->pb) + 11){
  339. uint32_t ts = avio_rb24(s->pb);
  340. ts |= avio_r8(s->pb) << 24;
  341. s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
  342. }
  343. avio_seek(s->pb, pos, SEEK_SET);
  344. }
  345. if(is_audio){
  346. if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
  347. st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
  348. st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
  349. st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
  350. }
  351. if(!st->codec->codec_id){
  352. flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
  353. }
  354. }else{
  355. size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
  356. }
  357. if (st->codec->codec_id == CODEC_ID_AAC ||
  358. st->codec->codec_id == CODEC_ID_H264) {
  359. int type = avio_r8(s->pb);
  360. size--;
  361. if (st->codec->codec_id == CODEC_ID_H264) {
  362. int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
  363. pts = dts + cts;
  364. if (cts < 0) { // dts are wrong
  365. flv->wrong_dts = 1;
  366. av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
  367. }
  368. if (flv->wrong_dts)
  369. dts = AV_NOPTS_VALUE;
  370. }
  371. if (type == 0) {
  372. if ((ret = flv_get_extradata(s, st, size)) < 0)
  373. return ret;
  374. if (st->codec->codec_id == CODEC_ID_AAC) {
  375. MPEG4AudioConfig cfg;
  376. ff_mpeg4audio_get_config(&cfg, st->codec->extradata,
  377. st->codec->extradata_size);
  378. st->codec->channels = cfg.channels;
  379. if (cfg.ext_sample_rate)
  380. st->codec->sample_rate = cfg.ext_sample_rate;
  381. else
  382. st->codec->sample_rate = cfg.sample_rate;
  383. av_dlog(s, "mp4a config channels %d sample rate %d\n",
  384. st->codec->channels, st->codec->sample_rate);
  385. }
  386. ret = AVERROR(EAGAIN);
  387. goto leave;
  388. }
  389. }
  390. /* skip empty data packets */
  391. if (!size) {
  392. ret = AVERROR(EAGAIN);
  393. goto leave;
  394. }
  395. ret= av_get_packet(s->pb, pkt, size);
  396. if (ret < 0) {
  397. return AVERROR(EIO);
  398. }
  399. /* note: we need to modify the packet size here to handle the last
  400. packet */
  401. pkt->size = ret;
  402. pkt->dts = dts;
  403. pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
  404. pkt->stream_index = st->index;
  405. if (is_audio || ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY))
  406. pkt->flags |= AV_PKT_FLAG_KEY;
  407. leave:
  408. avio_skip(s->pb, 4);
  409. return ret;
  410. }
  411. static int flv_read_seek(AVFormatContext *s, int stream_index,
  412. int64_t ts, int flags)
  413. {
  414. return ffio_read_seek(s->pb, stream_index, ts, flags);
  415. }
  416. #if 0 /* don't know enough to implement this */
  417. static int flv_read_seek2(AVFormatContext *s, int stream_index,
  418. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  419. {
  420. int ret = AVERROR(ENOSYS);
  421. if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
  422. if (url_is_streamed(s->pb)) {
  423. if (stream_index < 0) {
  424. stream_index = av_find_default_stream_index(s);
  425. if (stream_index < 0)
  426. return -1;
  427. /* timestamp for default must be expressed in AV_TIME_BASE units */
  428. ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
  429. flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
  430. }
  431. ret = ffio_read_seek(s->pb, stream_index, ts, flags);
  432. }
  433. if (ret == AVERROR(ENOSYS))
  434. ret = av_seek_frame(s, stream_index, ts, flags);
  435. return ret;
  436. }
  437. #endif
  438. AVInputFormat ff_flv_demuxer = {
  439. "flv",
  440. NULL_IF_CONFIG_SMALL("FLV format"),
  441. sizeof(FLVContext),
  442. flv_probe,
  443. flv_read_header,
  444. flv_read_packet,
  445. .read_seek = flv_read_seek,
  446. #if 0
  447. .read_seek2 = flv_read_seek2,
  448. #endif
  449. .extensions = "flv",
  450. .value = CODEC_ID_FLV1,
  451. };