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.

189 lines
5.1KB

  1. /*
  2. * FLV encoder.
  3. * Copyright (c) 2003 The FFmpeg Project.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include "avformat.h"
  20. unsigned int get_be24(ByteIOContext *s)
  21. {
  22. unsigned int val;
  23. val = get_byte(s) << 16;
  24. val |= get_byte(s) << 8;
  25. val |= get_byte(s);
  26. return val;
  27. }
  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;
  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. url_fseek(&s->pb, offset, SEEK_SET);
  48. return 0;
  49. }
  50. static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
  51. {
  52. int ret, i, type, size, pts, flags, is_audio;
  53. AVStream *st = NULL;
  54. for(;;){
  55. url_fskip(&s->pb, 4); /* size of previous packet */
  56. type = get_byte(&s->pb);
  57. size = get_be24(&s->pb);
  58. pts = get_be24(&s->pb);
  59. // av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, pts:%d\n", type, size, pts);
  60. if (url_feof(&s->pb))
  61. return AVERROR_IO;
  62. url_fskip(&s->pb, 4); /* reserved */
  63. flags = 0;
  64. if(size == 0)
  65. continue;
  66. if (type == 8) {
  67. is_audio=1;
  68. flags = get_byte(&s->pb);
  69. size--;
  70. } else if (type == 9) {
  71. is_audio=0;
  72. flags = get_byte(&s->pb);
  73. size--;
  74. } else {
  75. /* skip packet */
  76. av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
  77. url_fskip(&s->pb, size);
  78. continue;
  79. }
  80. /* now find stream */
  81. for(i=0;i<s->nb_streams;i++) {
  82. st = s->streams[i];
  83. if (st->id == is_audio)
  84. break;
  85. }
  86. if(i == s->nb_streams){
  87. st = av_new_stream(s, is_audio);
  88. if (!st)
  89. return AVERROR_NOMEM;
  90. av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */
  91. st->codec.frame_rate_base= 1;
  92. st->codec.frame_rate= 1000;
  93. }
  94. if(st->discard){
  95. url_fskip(&s->pb, size);
  96. continue;
  97. }
  98. break;
  99. }
  100. if(is_audio){
  101. if(st->codec.sample_rate == 0){
  102. st->codec.codec_type = CODEC_TYPE_AUDIO;
  103. st->codec.channels = (flags&1)+1;
  104. if((flags >> 4) == 5)
  105. st->codec.sample_rate= 8000;
  106. else
  107. st->codec.sample_rate = (44100<<((flags>>2)&3))>>3;
  108. switch(flags >> 4){/* 0: uncompressed 1: ADPCM 2: mp3 5: Nellymoser 8kHz mono 6: Nellymoser*/
  109. case 0: if (flags&2) st->codec.codec_id = CODEC_ID_PCM_S16BE;
  110. else st->codec.codec_id = CODEC_ID_PCM_S8; break;
  111. case 1: st->codec.codec_id = CODEC_ID_ADPCM_SWF; break;
  112. case 2: st->codec.codec_id = CODEC_ID_MP3; break;
  113. // this is not listed at FLV but at SWF, strange...
  114. case 3: if (flags&2) st->codec.codec_id = CODEC_ID_PCM_S16LE;
  115. else st->codec.codec_id = CODEC_ID_PCM_S8; break;
  116. default:
  117. av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flags >> 4);
  118. st->codec.codec_tag= (flags >> 4);
  119. }
  120. st->codec.bits_per_sample = (flags & 2) ? 16 : 8;
  121. }
  122. }else{
  123. st->codec.codec_type = CODEC_TYPE_VIDEO;
  124. switch(flags & 0xF){
  125. case 2: st->codec.codec_id = CODEC_ID_FLV1; break;
  126. default:
  127. av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flags & 0xf);
  128. st->codec.codec_tag= flags & 0xF;
  129. }
  130. }
  131. if (av_new_packet(pkt, size) < 0)
  132. return AVERROR_IO;
  133. ret = get_buffer(&s->pb, pkt->data, size);
  134. if (ret <= 0) {
  135. av_free_packet(pkt);
  136. return AVERROR_IO;
  137. }
  138. /* note: we need to modify the packet size here to handle the last
  139. packet */
  140. pkt->size = ret;
  141. pkt->pts = pts;
  142. pkt->stream_index = st->index;
  143. if (!is_audio && ((flags >> 4)==1))
  144. pkt->flags |= PKT_FLAG_KEY;
  145. return ret;
  146. }
  147. static int flv_read_close(AVFormatContext *s)
  148. {
  149. return 0;
  150. }
  151. AVInputFormat flv_iformat = {
  152. "flv",
  153. "flv format",
  154. 0,
  155. flv_probe,
  156. flv_read_header,
  157. flv_read_packet,
  158. flv_read_close,
  159. .extensions = "flv",
  160. .value = CODEC_ID_FLV1,
  161. };
  162. int flvdec_init(void)
  163. {
  164. av_register_input_format(&flv_iformat);
  165. return 0;
  166. }