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.

260 lines
7.9KB

  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. static int flv_probe(AVProbeData *p)
  29. {
  30. const uint8_t *d;
  31. if (p->buf_size < 6)
  32. return 0;
  33. d = p->buf;
  34. if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V') {
  35. return 50;
  36. }
  37. return 0;
  38. }
  39. static int flv_read_header(AVFormatContext *s,
  40. AVFormatParameters *ap)
  41. {
  42. int offset, flags, size;
  43. s->ctx_flags |= AVFMTCTX_NOHEADER; //ok we have a header but theres no fps, codec type, sample_rate, ...
  44. url_fskip(&s->pb, 4);
  45. flags = get_byte(&s->pb);
  46. offset = get_be32(&s->pb);
  47. if(!url_is_streamed(&s->pb)){
  48. const int fsize= url_fsize(&s->pb);
  49. url_fseek(&s->pb, fsize-4, SEEK_SET);
  50. size= get_be32(&s->pb);
  51. url_fseek(&s->pb, fsize-3-size, SEEK_SET);
  52. if(size == get_be24(&s->pb) + 11){
  53. s->duration= get_be24(&s->pb) * (int64_t)AV_TIME_BASE / 1000;
  54. }
  55. }
  56. url_fseek(&s->pb, offset, SEEK_SET);
  57. s->start_time = 0;
  58. return 0;
  59. }
  60. static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
  61. {
  62. int ret, i, type, size, pts, flags, is_audio, next, pos;
  63. AVStream *st = NULL;
  64. for(;;){
  65. pos = url_ftell(&s->pb);
  66. url_fskip(&s->pb, 4); /* size of previous packet */
  67. type = get_byte(&s->pb);
  68. size = get_be24(&s->pb);
  69. pts = get_be24(&s->pb);
  70. // av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, pts:%d\n", type, size, pts);
  71. if (url_feof(&s->pb))
  72. return AVERROR_IO;
  73. url_fskip(&s->pb, 4); /* reserved */
  74. flags = 0;
  75. if(size == 0)
  76. continue;
  77. next= size + url_ftell(&s->pb);
  78. if (type == 8) {
  79. is_audio=1;
  80. flags = get_byte(&s->pb);
  81. } else if (type == 9) {
  82. is_audio=0;
  83. flags = get_byte(&s->pb);
  84. } else if (type == 18 && size > 13+1+4) {
  85. url_fskip(&s->pb, 13); //onMetaData blah
  86. if(get_byte(&s->pb) == 8){
  87. url_fskip(&s->pb, 4);
  88. }
  89. while(url_ftell(&s->pb) + 5 < next){
  90. char tmp[128];
  91. int type, len;
  92. double d= 0;
  93. len= get_be16(&s->pb);
  94. if(len >= sizeof(tmp) || !len)
  95. break;
  96. get_buffer(&s->pb, tmp, len);
  97. tmp[len]=0;
  98. type= get_byte(&s->pb);
  99. if(type==0){
  100. d= av_int2dbl(get_be64(&s->pb));
  101. }else if(type==2){
  102. len= get_be16(&s->pb);
  103. if(len >= sizeof(tmp))
  104. break;
  105. url_fskip(&s->pb, len);
  106. }else if(type==8){
  107. //array
  108. break;
  109. }else if(type==11){
  110. d= av_int2dbl(get_be64(&s->pb));
  111. get_be16(&s->pb);
  112. }
  113. if(!strcmp(tmp, "duration")){
  114. s->duration = d*AV_TIME_BASE;
  115. }else if(!strcmp(tmp, "videodatarate")){
  116. }else if(!strcmp(tmp, "audiodatarate")){
  117. }
  118. }
  119. url_fseek(&s->pb, next, SEEK_SET);
  120. continue;
  121. } else {
  122. /* skip packet */
  123. av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
  124. url_fseek(&s->pb, next, SEEK_SET);
  125. continue;
  126. }
  127. /* now find stream */
  128. for(i=0;i<s->nb_streams;i++) {
  129. st = s->streams[i];
  130. if (st->id == is_audio)
  131. break;
  132. }
  133. if(i == s->nb_streams){
  134. st = av_new_stream(s, is_audio);
  135. if (!st)
  136. return AVERROR_NOMEM;
  137. av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */
  138. st->codec->time_base= (AVRational){1,1000};
  139. }
  140. // av_log(NULL, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
  141. if( (st->discard >= AVDISCARD_NONKEY && !((flags >> 4)==1 || is_audio))
  142. ||(st->discard >= AVDISCARD_BIDIR && ((flags >> 4)==3 && !is_audio))
  143. || st->discard >= AVDISCARD_ALL
  144. ){
  145. url_fseek(&s->pb, next, SEEK_SET);
  146. continue;
  147. }
  148. if ((flags >> 4)==1)
  149. av_add_index_entry(st, pos, pts, size, 0, AVINDEX_KEYFRAME);
  150. break;
  151. }
  152. if(is_audio){
  153. if(st->codec->sample_rate == 0){
  154. st->codec->codec_type = CODEC_TYPE_AUDIO;
  155. st->codec->channels = (flags&1)+1;
  156. if((flags >> 4) == 5)
  157. st->codec->sample_rate= 8000;
  158. else
  159. st->codec->sample_rate = (44100<<((flags>>2)&3))>>3;
  160. switch(flags >> 4){/* 0: uncompressed 1: ADPCM 2: mp3 5: Nellymoser 8kHz mono 6: Nellymoser*/
  161. case 0: if (flags&2) st->codec->codec_id = CODEC_ID_PCM_S16BE;
  162. else st->codec->codec_id = CODEC_ID_PCM_S8; break;
  163. case 1: st->codec->codec_id = CODEC_ID_ADPCM_SWF; break;
  164. case 2: st->codec->codec_id = CODEC_ID_MP3; st->need_parsing = 1; break;
  165. // this is not listed at FLV but at SWF, strange...
  166. case 3: if (flags&2) st->codec->codec_id = CODEC_ID_PCM_S16LE;
  167. else st->codec->codec_id = CODEC_ID_PCM_S8; break;
  168. default:
  169. av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flags >> 4);
  170. st->codec->codec_tag= (flags >> 4);
  171. }
  172. st->codec->bits_per_sample = (flags & 2) ? 16 : 8;
  173. }
  174. }else{
  175. st->codec->codec_type = CODEC_TYPE_VIDEO;
  176. switch(flags & 0xF){
  177. case 2: st->codec->codec_id = CODEC_ID_FLV1; break;
  178. case 3: st->codec->codec_id = CODEC_ID_FLASHSV; break;
  179. case 4:
  180. st->codec->codec_id = CODEC_ID_VP6F;
  181. if (st->codec->extradata_size != 1) {
  182. st->codec->extradata_size = 1;
  183. st->codec->extradata = av_malloc(1);
  184. }
  185. /* width and height adjustment */
  186. st->codec->extradata[0] = get_byte(&s->pb);
  187. size--;
  188. break;
  189. default:
  190. av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flags & 0xf);
  191. st->codec->codec_tag= flags & 0xF;
  192. }
  193. }
  194. ret= av_get_packet(&s->pb, pkt, size - 1);
  195. if (ret <= 0) {
  196. return AVERROR_IO;
  197. }
  198. /* note: we need to modify the packet size here to handle the last
  199. packet */
  200. pkt->size = ret;
  201. pkt->pts = pts;
  202. pkt->stream_index = st->index;
  203. if (is_audio || ((flags >> 4)==1))
  204. pkt->flags |= PKT_FLAG_KEY;
  205. return ret;
  206. }
  207. static int flv_read_close(AVFormatContext *s)
  208. {
  209. return 0;
  210. }
  211. static int flv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  212. {
  213. AVStream *st = s->streams[stream_index];
  214. int index = av_index_search_timestamp(st, timestamp, flags);
  215. if (index < 0)
  216. return -1;
  217. url_fseek(&s->pb, st->index_entries[index].pos, SEEK_SET);
  218. return 0;
  219. }
  220. AVInputFormat flv_demuxer = {
  221. "flv",
  222. "flv format",
  223. 0,
  224. flv_probe,
  225. flv_read_header,
  226. flv_read_packet,
  227. flv_read_close,
  228. flv_read_seek,
  229. .extensions = "flv",
  230. .value = CODEC_ID_FLV1,
  231. };