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.

384 lines
12KB

  1. /*
  2. * copyright (c) 2002 Mark Hills <mark@pogo.org.uk>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file oggvorbis.c
  22. * Ogg Vorbis codec support via libvorbisenc.
  23. * @author Mark Hills <mark@pogo.org.uk>
  24. */
  25. #include <vorbis/vorbisenc.h>
  26. #include "avcodec.h"
  27. #include "bytestream.h"
  28. #undef NDEBUG
  29. #include <assert.h>
  30. #define OGGVORBIS_FRAME_SIZE 64
  31. #define BUFFER_SIZE (1024*64)
  32. typedef struct OggVorbisContext {
  33. vorbis_info vi ;
  34. vorbis_dsp_state vd ;
  35. vorbis_block vb ;
  36. uint8_t buffer[BUFFER_SIZE];
  37. int buffer_index;
  38. /* decoder */
  39. vorbis_comment vc ;
  40. ogg_packet op;
  41. } OggVorbisContext ;
  42. static int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) {
  43. double cfreq;
  44. if(avccontext->flags & CODEC_FLAG_QSCALE) {
  45. /* variable bitrate */
  46. if(vorbis_encode_setup_vbr(vi, avccontext->channels,
  47. avccontext->sample_rate,
  48. avccontext->global_quality / (float)FF_QP2LAMBDA))
  49. return -1;
  50. } else {
  51. /* constant bitrate */
  52. if(vorbis_encode_setup_managed(vi, avccontext->channels,
  53. avccontext->sample_rate, -1, avccontext->bit_rate, -1))
  54. return -1;
  55. #ifdef OGGVORBIS_VBR_BY_ESTIMATE
  56. /* variable bitrate by estimate */
  57. if(vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE_AVG, NULL))
  58. return -1;
  59. #endif
  60. }
  61. /* cutoff frequency */
  62. if(avccontext->cutoff > 0) {
  63. cfreq = avccontext->cutoff / 1000.0;
  64. if(vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq))
  65. return -1;
  66. }
  67. return vorbis_encode_setup_init(vi);
  68. }
  69. static int oggvorbis_encode_init(AVCodecContext *avccontext) {
  70. OggVorbisContext *context = avccontext->priv_data ;
  71. ogg_packet header, header_comm, header_code;
  72. uint8_t *p;
  73. unsigned int offset, len;
  74. vorbis_info_init(&context->vi) ;
  75. if(oggvorbis_init_encoder(&context->vi, avccontext) < 0) {
  76. av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed") ;
  77. return -1 ;
  78. }
  79. vorbis_analysis_init(&context->vd, &context->vi) ;
  80. vorbis_block_init(&context->vd, &context->vb) ;
  81. vorbis_comment_init(&context->vc);
  82. vorbis_comment_add_tag(&context->vc, "encoder", LIBAVCODEC_IDENT) ;
  83. vorbis_analysis_headerout(&context->vd, &context->vc, &header,
  84. &header_comm, &header_code);
  85. len = header.bytes + header_comm.bytes + header_code.bytes;
  86. avccontext->extradata_size= 64 + len + len/255;
  87. p = avccontext->extradata= av_mallocz(avccontext->extradata_size);
  88. p[0] = 2;
  89. offset = 1;
  90. offset += av_xiphlacing(&p[offset], header.bytes);
  91. offset += av_xiphlacing(&p[offset], header_comm.bytes);
  92. memcpy(&p[offset], header.packet, header.bytes);
  93. offset += header.bytes;
  94. memcpy(&p[offset], header_comm.packet, header_comm.bytes);
  95. offset += header_comm.bytes;
  96. memcpy(&p[offset], header_code.packet, header_code.bytes);
  97. offset += header_code.bytes;
  98. avccontext->extradata_size = offset;
  99. avccontext->extradata= av_realloc(avccontext->extradata, avccontext->extradata_size);
  100. /* vorbis_block_clear(&context->vb);
  101. vorbis_dsp_clear(&context->vd);
  102. vorbis_info_clear(&context->vi);*/
  103. vorbis_comment_clear(&context->vc);
  104. avccontext->frame_size = OGGVORBIS_FRAME_SIZE ;
  105. avccontext->coded_frame= avcodec_alloc_frame();
  106. avccontext->coded_frame->key_frame= 1;
  107. return 0 ;
  108. }
  109. static int oggvorbis_encode_frame(AVCodecContext *avccontext,
  110. unsigned char *packets,
  111. int buf_size, void *data)
  112. {
  113. OggVorbisContext *context = avccontext->priv_data ;
  114. float **buffer ;
  115. ogg_packet op ;
  116. signed short *audio = data ;
  117. int l, samples = data ? OGGVORBIS_FRAME_SIZE : 0;
  118. buffer = vorbis_analysis_buffer(&context->vd, samples) ;
  119. if(context->vi.channels == 1) {
  120. for(l = 0 ; l < samples ; l++)
  121. buffer[0][l]=audio[l]/32768.f;
  122. } else {
  123. for(l = 0 ; l < samples ; l++){
  124. buffer[0][l]=audio[l*2]/32768.f;
  125. buffer[1][l]=audio[l*2+1]/32768.f;
  126. }
  127. }
  128. vorbis_analysis_wrote(&context->vd, samples) ;
  129. while(vorbis_analysis_blockout(&context->vd, &context->vb) == 1) {
  130. vorbis_analysis(&context->vb, NULL);
  131. vorbis_bitrate_addblock(&context->vb) ;
  132. while(vorbis_bitrate_flushpacket(&context->vd, &op)) {
  133. /* i'd love to say the following line is a hack, but sadly it's
  134. * not, apparently the end of stream decision is in libogg. */
  135. if(op.bytes==1)
  136. continue;
  137. memcpy(context->buffer + context->buffer_index, &op, sizeof(ogg_packet));
  138. context->buffer_index += sizeof(ogg_packet);
  139. memcpy(context->buffer + context->buffer_index, op.packet, op.bytes);
  140. context->buffer_index += op.bytes;
  141. // av_log(avccontext, AV_LOG_DEBUG, "e%d / %d\n", context->buffer_index, op.bytes);
  142. }
  143. }
  144. l=0;
  145. if(context->buffer_index){
  146. ogg_packet *op2= (ogg_packet*)context->buffer;
  147. op2->packet = context->buffer + sizeof(ogg_packet);
  148. l= op2->bytes;
  149. avccontext->coded_frame->pts= av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base);
  150. //FIXME we should reorder the user supplied pts and not assume that they are spaced by 1/sample_rate
  151. memcpy(packets, op2->packet, l);
  152. context->buffer_index -= l + sizeof(ogg_packet);
  153. memcpy(context->buffer, context->buffer + l + sizeof(ogg_packet), context->buffer_index);
  154. // av_log(avccontext, AV_LOG_DEBUG, "E%d\n", l);
  155. }
  156. return l;
  157. }
  158. static int oggvorbis_encode_close(AVCodecContext *avccontext) {
  159. OggVorbisContext *context = avccontext->priv_data ;
  160. /* ogg_packet op ; */
  161. vorbis_analysis_wrote(&context->vd, 0) ; /* notify vorbisenc this is EOF */
  162. vorbis_block_clear(&context->vb);
  163. vorbis_dsp_clear(&context->vd);
  164. vorbis_info_clear(&context->vi);
  165. av_freep(&avccontext->coded_frame);
  166. av_freep(&avccontext->extradata);
  167. return 0 ;
  168. }
  169. AVCodec libvorbis_encoder = {
  170. "libvorbis",
  171. CODEC_TYPE_AUDIO,
  172. CODEC_ID_VORBIS,
  173. sizeof(OggVorbisContext),
  174. oggvorbis_encode_init,
  175. oggvorbis_encode_frame,
  176. oggvorbis_encode_close,
  177. .capabilities= CODEC_CAP_DELAY,
  178. } ;
  179. static int oggvorbis_decode_init(AVCodecContext *avccontext) {
  180. OggVorbisContext *context = avccontext->priv_data ;
  181. uint8_t *p= avccontext->extradata;
  182. int i, hsizes[3];
  183. unsigned char *headers[3], *extradata = avccontext->extradata;
  184. vorbis_info_init(&context->vi) ;
  185. vorbis_comment_init(&context->vc) ;
  186. if(! avccontext->extradata_size || ! p) {
  187. av_log(avccontext, AV_LOG_ERROR, "vorbis extradata absent\n");
  188. return -1;
  189. }
  190. if(p[0] == 0 && p[1] == 30) {
  191. for(i = 0; i < 3; i++){
  192. hsizes[i] = bytestream_get_be16(&p);
  193. headers[i] = p;
  194. p += hsizes[i];
  195. }
  196. } else if(*p == 2) {
  197. unsigned int offset = 1;
  198. p++;
  199. for(i=0; i<2; i++) {
  200. hsizes[i] = 0;
  201. while((*p == 0xFF) && (offset < avccontext->extradata_size)) {
  202. hsizes[i] += 0xFF;
  203. offset++;
  204. p++;
  205. }
  206. if(offset >= avccontext->extradata_size - 1) {
  207. av_log(avccontext, AV_LOG_ERROR,
  208. "vorbis header sizes damaged\n");
  209. return -1;
  210. }
  211. hsizes[i] += *p;
  212. offset++;
  213. p++;
  214. }
  215. hsizes[2] = avccontext->extradata_size - hsizes[0]-hsizes[1]-offset;
  216. #if 0
  217. av_log(avccontext, AV_LOG_DEBUG,
  218. "vorbis header sizes: %d, %d, %d, / extradata_len is %d \n",
  219. hsizes[0], hsizes[1], hsizes[2], avccontext->extradata_size);
  220. #endif
  221. headers[0] = extradata + offset;
  222. headers[1] = extradata + offset + hsizes[0];
  223. headers[2] = extradata + offset + hsizes[0] + hsizes[1];
  224. } else {
  225. av_log(avccontext, AV_LOG_ERROR,
  226. "vorbis initial header len is wrong: %d\n", *p);
  227. return -1;
  228. }
  229. for(i=0; i<3; i++){
  230. context->op.b_o_s= i==0;
  231. context->op.bytes = hsizes[i];
  232. context->op.packet = headers[i];
  233. if(vorbis_synthesis_headerin(&context->vi, &context->vc, &context->op)<0){
  234. av_log(avccontext, AV_LOG_ERROR, "%d. vorbis header damaged\n", i+1);
  235. return -1;
  236. }
  237. }
  238. avccontext->channels = context->vi.channels;
  239. avccontext->sample_rate = context->vi.rate;
  240. avccontext->time_base= (AVRational){1, avccontext->sample_rate};
  241. vorbis_synthesis_init(&context->vd, &context->vi);
  242. vorbis_block_init(&context->vd, &context->vb);
  243. return 0 ;
  244. }
  245. static inline int conv(int samples, float **pcm, char *buf, int channels) {
  246. int i, j, val ;
  247. ogg_int16_t *ptr, *data = (ogg_int16_t*)buf ;
  248. float *mono ;
  249. for(i = 0 ; i < channels ; i++){
  250. ptr = &data[i];
  251. mono = pcm[i] ;
  252. for(j = 0 ; j < samples ; j++) {
  253. val = mono[j] * 32767.f;
  254. if(val > 32767) val = 32767 ;
  255. if(val < -32768) val = -32768 ;
  256. *ptr = val ;
  257. ptr += channels;
  258. }
  259. }
  260. return 0 ;
  261. }
  262. static int oggvorbis_decode_frame(AVCodecContext *avccontext,
  263. void *data, int *data_size,
  264. uint8_t *buf, int buf_size)
  265. {
  266. OggVorbisContext *context = avccontext->priv_data ;
  267. float **pcm ;
  268. ogg_packet *op= &context->op;
  269. int samples, total_samples, total_bytes;
  270. if(!buf_size){
  271. //FIXME flush
  272. return 0;
  273. }
  274. op->packet = buf;
  275. op->bytes = buf_size;
  276. // av_log(avccontext, AV_LOG_DEBUG, "%d %d %d %"PRId64" %"PRId64" %d %d\n", op->bytes, op->b_o_s, op->e_o_s, op->granulepos, op->packetno, buf_size, context->vi.rate);
  277. /* for(i=0; i<op->bytes; i++)
  278. av_log(avccontext, AV_LOG_DEBUG, "%02X ", op->packet[i]);
  279. av_log(avccontext, AV_LOG_DEBUG, "\n");*/
  280. if(vorbis_synthesis(&context->vb, op) == 0)
  281. vorbis_synthesis_blockin(&context->vd, &context->vb) ;
  282. total_samples = 0 ;
  283. total_bytes = 0 ;
  284. while((samples = vorbis_synthesis_pcmout(&context->vd, &pcm)) > 0) {
  285. conv(samples, pcm, (char*)data + total_bytes, context->vi.channels) ;
  286. total_bytes += samples * 2 * context->vi.channels ;
  287. total_samples += samples ;
  288. vorbis_synthesis_read(&context->vd, samples) ;
  289. }
  290. *data_size = total_bytes ;
  291. return buf_size ;
  292. }
  293. static int oggvorbis_decode_close(AVCodecContext *avccontext) {
  294. OggVorbisContext *context = avccontext->priv_data ;
  295. vorbis_info_clear(&context->vi) ;
  296. vorbis_comment_clear(&context->vc) ;
  297. return 0 ;
  298. }
  299. AVCodec libvorbis_decoder = {
  300. "libvorbis",
  301. CODEC_TYPE_AUDIO,
  302. CODEC_ID_VORBIS,
  303. sizeof(OggVorbisContext),
  304. oggvorbis_decode_init,
  305. NULL,
  306. oggvorbis_decode_close,
  307. oggvorbis_decode_frame,
  308. .capabilities= CODEC_CAP_DELAY,
  309. } ;