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.

656 lines
24KB

  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 "libavutil/avstring.h"
  27. #include "libavutil/dict.h"
  28. #include "libavutil/intfloat_readwrite.h"
  29. #include "libavutil/mathematics.h"
  30. #include "libavcodec/bytestream.h"
  31. #include "libavcodec/mpeg4audio.h"
  32. #include "avformat.h"
  33. #include "internal.h"
  34. #include "avio_internal.h"
  35. #include "flv.h"
  36. typedef struct {
  37. int wrong_dts; ///< wrong dts due to negative cts
  38. } FLVContext;
  39. static int flv_probe(AVProbeData *p)
  40. {
  41. const uint8_t *d;
  42. d = p->buf;
  43. if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0 && AV_RB32(d+5)>8) {
  44. return AVPROBE_SCORE_MAX;
  45. }
  46. return 0;
  47. }
  48. static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) {
  49. AVCodecContext *acodec = astream->codec;
  50. switch(flv_codecid) {
  51. //no distinction between S16 and S8 PCM codec flags
  52. case FLV_CODECID_PCM:
  53. acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 :
  54. #if HAVE_BIGENDIAN
  55. CODEC_ID_PCM_S16BE;
  56. #else
  57. CODEC_ID_PCM_S16LE;
  58. #endif
  59. break;
  60. case FLV_CODECID_PCM_LE:
  61. acodec->codec_id = acodec->bits_per_coded_sample == 8 ? CODEC_ID_PCM_U8 : CODEC_ID_PCM_S16LE; break;
  62. case FLV_CODECID_AAC : acodec->codec_id = CODEC_ID_AAC; break;
  63. case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF; break;
  64. case FLV_CODECID_SPEEX:
  65. acodec->codec_id = CODEC_ID_SPEEX;
  66. acodec->sample_rate = 16000;
  67. break;
  68. case FLV_CODECID_MP3 : acodec->codec_id = CODEC_ID_MP3 ; astream->need_parsing = AVSTREAM_PARSE_FULL; break;
  69. case FLV_CODECID_NELLYMOSER_8KHZ_MONO:
  70. acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate
  71. acodec->codec_id = CODEC_ID_NELLYMOSER;
  72. break;
  73. case FLV_CODECID_NELLYMOSER_16KHZ_MONO:
  74. acodec->sample_rate = 16000;
  75. acodec->codec_id = CODEC_ID_NELLYMOSER;
  76. break;
  77. case FLV_CODECID_NELLYMOSER:
  78. acodec->codec_id = CODEC_ID_NELLYMOSER;
  79. break;
  80. default:
  81. av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET);
  82. acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET;
  83. }
  84. }
  85. static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) {
  86. AVCodecContext *vcodec = vstream->codec;
  87. switch(flv_codecid) {
  88. case FLV_CODECID_H263 : vcodec->codec_id = CODEC_ID_FLV1 ; break;
  89. case FLV_CODECID_REALH263: vcodec->codec_id = CODEC_ID_H263 ; break; // Really mean it this time
  90. case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break;
  91. case FLV_CODECID_SCREEN2: vcodec->codec_id = CODEC_ID_FLASHSV2; break;
  92. case FLV_CODECID_VP6 : vcodec->codec_id = CODEC_ID_VP6F ;
  93. case FLV_CODECID_VP6A :
  94. if(flv_codecid == FLV_CODECID_VP6A)
  95. vcodec->codec_id = CODEC_ID_VP6A;
  96. if(vcodec->extradata_size != 1) {
  97. vcodec->extradata_size = 1;
  98. vcodec->extradata = av_malloc(1);
  99. }
  100. vcodec->extradata[0] = avio_r8(s->pb);
  101. return 1; // 1 byte body size adjustment for flv_read_packet()
  102. case FLV_CODECID_H264:
  103. vcodec->codec_id = CODEC_ID_H264;
  104. return 3; // not 4, reading packet type will consume one byte
  105. case FLV_CODECID_MPEG4:
  106. vcodec->codec_id = CODEC_ID_MPEG4;
  107. return 3;
  108. default:
  109. av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid);
  110. vcodec->codec_tag = flv_codecid;
  111. }
  112. return 0;
  113. }
  114. static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize) {
  115. int length = avio_rb16(ioc);
  116. if(length >= buffsize) {
  117. avio_skip(ioc, length);
  118. return -1;
  119. }
  120. avio_read(ioc, buffer, length);
  121. buffer[length] = '\0';
  122. return length;
  123. }
  124. static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, AVStream *vstream, int64_t max_pos) {
  125. unsigned int timeslen = 0, fileposlen = 0, i;
  126. char str_val[256];
  127. int64_t *times = NULL;
  128. int64_t *filepositions = NULL;
  129. int ret = AVERROR(ENOSYS);
  130. int64_t initial_pos = avio_tell(ioc);
  131. AVDictionaryEntry *creator = av_dict_get(s->metadata, "metadatacreator",
  132. NULL, 0);
  133. if (creator && !strcmp(creator->value, "MEGA")) {
  134. /* Files with this metadatacreator tag seem to have filepositions
  135. * pointing at the 4 trailer bytes of the previous packet,
  136. * which isn't the norm (nor what we expect here, nor what
  137. * jwplayer + lighttpd expect, nor what flvtool2 produces).
  138. * Just ignore the index in this case, instead of risking trying
  139. * to adjust it to something that might or might not work. */
  140. return 0;
  141. }
  142. if(vstream->nb_index_entries>0){
  143. av_log(s, AV_LOG_WARNING, "Skiping duplicate index\n");
  144. return 0;
  145. }
  146. while (avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
  147. int64_t** current_array;
  148. unsigned int arraylen;
  149. // Expect array object in context
  150. if (avio_r8(ioc) != AMF_DATA_TYPE_ARRAY)
  151. break;
  152. arraylen = avio_rb32(ioc);
  153. if(arraylen>>28)
  154. break;
  155. if (!strcmp(KEYFRAMES_TIMESTAMP_TAG , str_val) && !times){
  156. current_array= &times;
  157. timeslen= arraylen;
  158. }else if (!strcmp(KEYFRAMES_BYTEOFFSET_TAG, str_val) && !filepositions){
  159. current_array= &filepositions;
  160. fileposlen= arraylen;
  161. }else // unexpected metatag inside keyframes, will not use such metadata for indexing
  162. break;
  163. if (!(*current_array = av_mallocz(sizeof(**current_array) * arraylen))) {
  164. ret = AVERROR(ENOMEM);
  165. goto finish;
  166. }
  167. for (i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
  168. if (avio_r8(ioc) != AMF_DATA_TYPE_NUMBER)
  169. goto finish;
  170. current_array[0][i] = av_int2dbl(avio_rb64(ioc));
  171. }
  172. if (times && filepositions) {
  173. // All done, exiting at a position allowing amf_parse_object
  174. // to finish parsing the object
  175. ret = 0;
  176. break;
  177. }
  178. }
  179. if (timeslen == fileposlen && fileposlen>1 && max_pos <= filepositions[0]) {
  180. int64_t dts, size0, size1;
  181. avio_seek(ioc, filepositions[1]-4, SEEK_SET);
  182. size0 = avio_rb32(ioc);
  183. avio_r8(ioc);
  184. size1 = avio_rb24(ioc);
  185. dts = avio_rb24(ioc);
  186. dts |= avio_r8(ioc) << 24;
  187. if (size0 > filepositions[1] || FFABS(dts - times[1]*1000)>5000)
  188. goto finish;
  189. for(i = 0; i < timeslen; i++)
  190. av_add_index_entry(vstream, filepositions[i], times[i]*1000, 0, 0, AVINDEX_KEYFRAME);
  191. } else
  192. av_log(s, AV_LOG_WARNING, "Invalid keyframes object, skipping.\n");
  193. finish:
  194. av_freep(&times);
  195. av_freep(&filepositions);
  196. avio_seek(ioc, initial_pos, SEEK_SET);
  197. return ret;
  198. }
  199. static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, int64_t max_pos, int depth) {
  200. AVCodecContext *acodec, *vcodec;
  201. AVIOContext *ioc;
  202. AMFDataType amf_type;
  203. char str_val[256];
  204. double num_val;
  205. num_val = 0;
  206. ioc = s->pb;
  207. amf_type = avio_r8(ioc);
  208. switch(amf_type) {
  209. case AMF_DATA_TYPE_NUMBER:
  210. num_val = av_int2dbl(avio_rb64(ioc)); break;
  211. case AMF_DATA_TYPE_BOOL:
  212. num_val = avio_r8(ioc); break;
  213. case AMF_DATA_TYPE_STRING:
  214. if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0)
  215. return -1;
  216. break;
  217. case AMF_DATA_TYPE_OBJECT: {
  218. unsigned int keylen;
  219. if ((vstream || astream) && ioc->seekable && key && !strcmp(KEYFRAMES_TAG, key) && depth == 1)
  220. if (parse_keyframes_index(s, ioc, vstream ? vstream : astream,
  221. max_pos) < 0)
  222. av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n");
  223. while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) {
  224. avio_skip(ioc, keylen); //skip key string
  225. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  226. return -1; //if we couldn't skip, bomb out.
  227. }
  228. if(avio_r8(ioc) != AMF_END_OF_OBJECT)
  229. return -1;
  230. }
  231. break;
  232. case AMF_DATA_TYPE_NULL:
  233. case AMF_DATA_TYPE_UNDEFINED:
  234. case AMF_DATA_TYPE_UNSUPPORTED:
  235. break; //these take up no additional space
  236. case AMF_DATA_TYPE_MIXEDARRAY:
  237. avio_skip(ioc, 4); //skip 32-bit max array index
  238. while(avio_tell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) {
  239. //this is the only case in which we would want a nested parse to not skip over the object
  240. if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0)
  241. return -1;
  242. }
  243. if(avio_r8(ioc) != AMF_END_OF_OBJECT)
  244. return -1;
  245. break;
  246. case AMF_DATA_TYPE_ARRAY: {
  247. unsigned int arraylen, i;
  248. arraylen = avio_rb32(ioc);
  249. for(i = 0; i < arraylen && avio_tell(ioc) < max_pos - 1; i++) {
  250. if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0)
  251. return -1; //if we couldn't skip, bomb out.
  252. }
  253. }
  254. break;
  255. case AMF_DATA_TYPE_DATE:
  256. avio_skip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16)
  257. break;
  258. default: //unsupported type, we couldn't skip
  259. return -1;
  260. }
  261. if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL
  262. acodec = astream ? astream->codec : NULL;
  263. vcodec = vstream ? vstream->codec : NULL;
  264. if (amf_type == AMF_DATA_TYPE_NUMBER) {
  265. if (!strcmp(key, "duration"))
  266. s->duration = num_val * AV_TIME_BASE;
  267. else if (!strcmp(key, "videodatarate") && vcodec && 0 <= (int)(num_val * 1024.0))
  268. vcodec->bit_rate = num_val * 1024.0;
  269. else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
  270. acodec->bit_rate = num_val * 1024.0;
  271. }
  272. if (amf_type == AMF_DATA_TYPE_OBJECT && s->nb_streams == 1 &&
  273. ((!acodec && !strcmp(key, "audiocodecid")) ||
  274. (!vcodec && !strcmp(key, "videocodecid"))))
  275. s->ctx_flags &= ~AVFMTCTX_NOHEADER; //If there is either audio/video missing, codecid will be an empty object
  276. if (!strcmp(key, "duration") ||
  277. !strcmp(key, "filesize") ||
  278. !strcmp(key, "width") ||
  279. !strcmp(key, "height") ||
  280. !strcmp(key, "videodatarate") ||
  281. !strcmp(key, "framerate") ||
  282. !strcmp(key, "videocodecid") ||
  283. !strcmp(key, "audiodatarate") ||
  284. !strcmp(key, "audiosamplerate") ||
  285. !strcmp(key, "audiosamplesize") ||
  286. !strcmp(key, "stereo") ||
  287. !strcmp(key, "audiocodecid"))
  288. return 0;
  289. if(amf_type == AMF_DATA_TYPE_BOOL) {
  290. av_strlcpy(str_val, num_val > 0 ? "true" : "false", sizeof(str_val));
  291. av_dict_set(&s->metadata, key, str_val, 0);
  292. } else if(amf_type == AMF_DATA_TYPE_NUMBER) {
  293. snprintf(str_val, sizeof(str_val), "%.f", num_val);
  294. av_dict_set(&s->metadata, key, str_val, 0);
  295. } else if (amf_type == AMF_DATA_TYPE_STRING)
  296. av_dict_set(&s->metadata, key, str_val, 0);
  297. }
  298. return 0;
  299. }
  300. static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
  301. AMFDataType type;
  302. AVStream *stream, *astream, *vstream, *dstream;
  303. AVIOContext *ioc;
  304. int i;
  305. char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
  306. vstream = astream = dstream = NULL;
  307. ioc = s->pb;
  308. //first object needs to be "onMetaData" string
  309. type = avio_r8(ioc);
  310. if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData"))
  311. return -1;
  312. //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called.
  313. for(i = 0; i < s->nb_streams; i++) {
  314. stream = s->streams[i];
  315. if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
  316. else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
  317. else if(stream->codec->codec_type == AVMEDIA_TYPE_DATA) dstream = stream;
  318. }
  319. //parse the second object (we want a mixed array)
  320. if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0)
  321. return -1;
  322. return 0;
  323. }
  324. static AVStream *create_stream(AVFormatContext *s, int stream_type){
  325. AVStream *st = avformat_new_stream(s, NULL);
  326. if (!st)
  327. return NULL;
  328. st->id = stream_type;
  329. switch(stream_type) {
  330. case FLV_STREAM_TYPE_VIDEO: st->codec->codec_type = AVMEDIA_TYPE_VIDEO; break;
  331. case FLV_STREAM_TYPE_AUDIO: st->codec->codec_type = AVMEDIA_TYPE_AUDIO; break;
  332. case FLV_STREAM_TYPE_DATA:
  333. st->codec->codec_type = AVMEDIA_TYPE_DATA;
  334. st->codec->codec_id = CODEC_ID_NONE; // Going to rely on copy for now
  335. av_log(s, AV_LOG_DEBUG, "Data stream created\n");
  336. }
  337. if(s->nb_streams>=3 ||( s->nb_streams==2
  338. && s->streams[0]->codec->codec_type != AVMEDIA_TYPE_DATA
  339. && s->streams[1]->codec->codec_type != AVMEDIA_TYPE_DATA))
  340. s->ctx_flags &= ~AVFMTCTX_NOHEADER;
  341. avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
  342. return st;
  343. }
  344. static int flv_read_header(AVFormatContext *s,
  345. AVFormatParameters *ap)
  346. {
  347. int offset, flags;
  348. avio_skip(s->pb, 4);
  349. flags = avio_r8(s->pb);
  350. /* old flvtool cleared this field */
  351. /* FIXME: better fix needed */
  352. if (!flags) {
  353. flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
  354. av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
  355. }
  356. s->ctx_flags |= AVFMTCTX_NOHEADER;
  357. if(flags & FLV_HEADER_FLAG_HASVIDEO){
  358. if(!create_stream(s, FLV_STREAM_TYPE_VIDEO))
  359. return AVERROR(ENOMEM);
  360. }
  361. if(flags & FLV_HEADER_FLAG_HASAUDIO){
  362. if(!create_stream(s, FLV_STREAM_TYPE_AUDIO))
  363. return AVERROR(ENOMEM);
  364. }
  365. // Flag doesn't indicate whether or not there is script-data present. Must
  366. // create that stream if it's encountered.
  367. offset = avio_rb32(s->pb);
  368. avio_seek(s->pb, offset, SEEK_SET);
  369. avio_skip(s->pb, 4);
  370. s->start_time = 0;
  371. return 0;
  372. }
  373. static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
  374. {
  375. av_free(st->codec->extradata);
  376. st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
  377. if (!st->codec->extradata)
  378. return AVERROR(ENOMEM);
  379. st->codec->extradata_size = size;
  380. avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
  381. return 0;
  382. }
  383. static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
  384. {
  385. FLVContext *flv = s->priv_data;
  386. int ret, i, type, size, flags;
  387. int stream_type=-1;
  388. int64_t next, pos;
  389. int64_t dts, pts = AV_NOPTS_VALUE;
  390. AVStream *st = NULL;
  391. for(;;avio_skip(s->pb, 4)){ /* pkt size is repeated at end. skip it */
  392. pos = avio_tell(s->pb);
  393. type = avio_r8(s->pb);
  394. size = avio_rb24(s->pb);
  395. dts = avio_rb24(s->pb);
  396. dts |= avio_r8(s->pb) << 24;
  397. av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
  398. if (url_feof(s->pb))
  399. return AVERROR_EOF;
  400. avio_skip(s->pb, 3); /* stream id, always 0 */
  401. flags = 0;
  402. if(size == 0)
  403. continue;
  404. next= size + avio_tell(s->pb);
  405. if (type == FLV_TAG_TYPE_AUDIO) {
  406. stream_type=FLV_STREAM_TYPE_AUDIO;
  407. flags = avio_r8(s->pb);
  408. size--;
  409. } else if (type == FLV_TAG_TYPE_VIDEO) {
  410. stream_type=FLV_STREAM_TYPE_VIDEO;
  411. flags = avio_r8(s->pb);
  412. size--;
  413. if ((flags & 0xf0) == 0x50) /* video info / command frame */
  414. goto skip;
  415. } else if (type == FLV_TAG_TYPE_META) {
  416. if (size > 13+1+4 && dts == 0) { // Header-type metadata stuff
  417. flv_read_metabody(s, next);
  418. goto skip;
  419. } else if (dts != 0) { // Script-data "special" metadata frames - don't skip
  420. stream_type=FLV_STREAM_TYPE_DATA;
  421. } else {
  422. goto skip;
  423. }
  424. } else {
  425. av_log(s, AV_LOG_DEBUG, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
  426. skip:
  427. avio_seek(s->pb, next, SEEK_SET);
  428. continue;
  429. }
  430. /* skip empty data packets */
  431. if (!size)
  432. continue;
  433. /* now find stream */
  434. for(i=0;i<s->nb_streams;i++) {
  435. st = s->streams[i];
  436. if (st->id == stream_type)
  437. break;
  438. }
  439. if(i == s->nb_streams){
  440. av_log(s, AV_LOG_WARNING, "Stream discovered after head already parsed\n");
  441. st= create_stream(s, stream_type);
  442. }
  443. av_dlog(s, "%d %X %d \n", stream_type, flags, st->discard);
  444. if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || (stream_type == FLV_STREAM_TYPE_AUDIO)))
  445. ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && (stream_type == FLV_STREAM_TYPE_VIDEO)))
  446. || st->discard >= AVDISCARD_ALL
  447. ){
  448. avio_seek(s->pb, next, SEEK_SET);
  449. continue;
  450. }
  451. if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
  452. av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
  453. break;
  454. }
  455. // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps
  456. if(s->pb->seekable && (!s->duration || s->duration==AV_NOPTS_VALUE)){
  457. int size;
  458. const int64_t pos= avio_tell(s->pb);
  459. const int64_t fsize= avio_size(s->pb);
  460. avio_seek(s->pb, fsize-4, SEEK_SET);
  461. size= avio_rb32(s->pb);
  462. avio_seek(s->pb, fsize-3-size, SEEK_SET);
  463. if(size == avio_rb24(s->pb) + 11){
  464. uint32_t ts = avio_rb24(s->pb);
  465. ts |= avio_r8(s->pb) << 24;
  466. s->duration = ts * (int64_t)AV_TIME_BASE / 1000;
  467. }
  468. avio_seek(s->pb, pos, SEEK_SET);
  469. }
  470. if(stream_type == FLV_STREAM_TYPE_AUDIO){
  471. if(!st->codec->channels || !st->codec->sample_rate || !st->codec->bits_per_coded_sample) {
  472. st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1;
  473. st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3);
  474. st->codec->bits_per_coded_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8;
  475. }
  476. if(!st->codec->codec_id){
  477. flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK);
  478. }
  479. } else if(stream_type == FLV_STREAM_TYPE_VIDEO) {
  480. size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK);
  481. }
  482. if (st->codec->codec_id == CODEC_ID_AAC ||
  483. st->codec->codec_id == CODEC_ID_H264 ||
  484. st->codec->codec_id == CODEC_ID_MPEG4) {
  485. int type = avio_r8(s->pb);
  486. size--;
  487. if (st->codec->codec_id == CODEC_ID_H264 || st->codec->codec_id == CODEC_ID_MPEG4) {
  488. int32_t cts = (avio_rb24(s->pb)+0xff800000)^0xff800000; // sign extension
  489. pts = dts + cts;
  490. if (cts < 0) { // dts are wrong
  491. flv->wrong_dts = 1;
  492. av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n");
  493. }
  494. if (flv->wrong_dts)
  495. dts = AV_NOPTS_VALUE;
  496. }
  497. if (type == 0 && !st->codec->extradata) {
  498. if ((ret = flv_get_extradata(s, st, size)) < 0)
  499. return ret;
  500. if (st->codec->codec_id == CODEC_ID_AAC) {
  501. MPEG4AudioConfig cfg;
  502. if (avpriv_mpeg4audio_get_config(&cfg, st->codec->extradata,
  503. st->codec->extradata_size * 8, 1) >= 0) {
  504. st->codec->channels = cfg.channels;
  505. if (cfg.ext_sample_rate)
  506. st->codec->sample_rate = cfg.ext_sample_rate;
  507. else
  508. st->codec->sample_rate = cfg.sample_rate;
  509. av_dlog(s, "mp4a config channels %d sample rate %d\n",
  510. st->codec->channels, st->codec->sample_rate);
  511. }
  512. }
  513. ret = AVERROR(EAGAIN);
  514. goto leave;
  515. }
  516. }
  517. /* skip empty data packets */
  518. if (!size) {
  519. ret = AVERROR(EAGAIN);
  520. goto leave;
  521. }
  522. ret= av_get_packet(s->pb, pkt, size);
  523. if (ret < 0) {
  524. return AVERROR(EIO);
  525. }
  526. /* note: we need to modify the packet size here to handle the last
  527. packet */
  528. pkt->size = ret;
  529. pkt->dts = dts;
  530. pkt->pts = pts == AV_NOPTS_VALUE ? dts : pts;
  531. pkt->stream_index = st->index;
  532. if(st->codec->codec_id == CODEC_ID_NELLYMOSER)
  533. av_packet_new_side_data(pkt, 'F', 1)[0]= flags;
  534. if ( stream_type == FLV_STREAM_TYPE_AUDIO ||
  535. ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) ||
  536. stream_type == FLV_STREAM_TYPE_DATA)
  537. pkt->flags |= AV_PKT_FLAG_KEY;
  538. leave:
  539. avio_skip(s->pb, 4);
  540. return ret;
  541. }
  542. static int flv_read_seek(AVFormatContext *s, int stream_index,
  543. int64_t ts, int flags)
  544. {
  545. return avio_seek_time(s->pb, stream_index, ts, flags);
  546. }
  547. #if 0 /* don't know enough to implement this */
  548. static int flv_read_seek2(AVFormatContext *s, int stream_index,
  549. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  550. {
  551. int ret = AVERROR(ENOSYS);
  552. if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
  553. if (!s->pb->seekable) {
  554. if (stream_index < 0) {
  555. stream_index = av_find_default_stream_index(s);
  556. if (stream_index < 0)
  557. return -1;
  558. /* timestamp for default must be expressed in AV_TIME_BASE units */
  559. ts = av_rescale_rnd(ts, 1000, AV_TIME_BASE,
  560. flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
  561. }
  562. ret = avio_seek_time(s->pb, stream_index, ts, flags);
  563. }
  564. if (ret == AVERROR(ENOSYS))
  565. ret = av_seek_frame(s, stream_index, ts, flags);
  566. return ret;
  567. }
  568. #endif
  569. AVInputFormat ff_flv_demuxer = {
  570. .name = "flv",
  571. .long_name = NULL_IF_CONFIG_SMALL("FLV format"),
  572. .priv_data_size = sizeof(FLVContext),
  573. .read_probe = flv_probe,
  574. .read_header = flv_read_header,
  575. .read_packet = flv_read_packet,
  576. .read_seek = flv_read_seek,
  577. #if 0
  578. .read_seek2 = flv_read_seek2,
  579. #endif
  580. .extensions = "flv",
  581. .value = CODEC_ID_FLV1,
  582. };