libvorbis.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 libavcodec/libvorbis.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. int eof;
  39. /* decoder */
  40. vorbis_comment vc ;
  41. ogg_packet op;
  42. } OggVorbisContext ;
  43. static av_cold int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) {
  44. double cfreq;
  45. if(avccontext->flags & CODEC_FLAG_QSCALE) {
  46. /* variable bitrate */
  47. if(vorbis_encode_setup_vbr(vi, avccontext->channels,
  48. avccontext->sample_rate,
  49. avccontext->global_quality / (float)FF_QP2LAMBDA / 10.0))
  50. return -1;
  51. } else {
  52. /* constant bitrate */
  53. if(vorbis_encode_setup_managed(vi, avccontext->channels,
  54. avccontext->sample_rate, -1, avccontext->bit_rate, -1))
  55. return -1;
  56. #ifdef OGGVORBIS_VBR_BY_ESTIMATE
  57. /* variable bitrate by estimate */
  58. if(vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE_AVG, NULL))
  59. return -1;
  60. #endif
  61. }
  62. /* cutoff frequency */
  63. if(avccontext->cutoff > 0) {
  64. cfreq = avccontext->cutoff / 1000.0;
  65. if(vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq))
  66. return -1;
  67. }
  68. return vorbis_encode_setup_init(vi);
  69. }
  70. static av_cold int oggvorbis_encode_init(AVCodecContext *avccontext) {
  71. OggVorbisContext *context = avccontext->priv_data ;
  72. ogg_packet header, header_comm, header_code;
  73. uint8_t *p;
  74. unsigned int offset, len;
  75. vorbis_info_init(&context->vi) ;
  76. if(oggvorbis_init_encoder(&context->vi, avccontext) < 0) {
  77. av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed") ;
  78. return -1 ;
  79. }
  80. vorbis_analysis_init(&context->vd, &context->vi) ;
  81. vorbis_block_init(&context->vd, &context->vb) ;
  82. vorbis_comment_init(&context->vc);
  83. vorbis_comment_add_tag(&context->vc, "encoder", LIBAVCODEC_IDENT) ;
  84. vorbis_analysis_headerout(&context->vd, &context->vc, &header,
  85. &header_comm, &header_code);
  86. len = header.bytes + header_comm.bytes + header_code.bytes;
  87. avccontext->extradata_size= 64 + len + len/255;
  88. p = avccontext->extradata= av_mallocz(avccontext->extradata_size);
  89. p[0] = 2;
  90. offset = 1;
  91. offset += av_xiphlacing(&p[offset], header.bytes);
  92. offset += av_xiphlacing(&p[offset], header_comm.bytes);
  93. memcpy(&p[offset], header.packet, header.bytes);
  94. offset += header.bytes;
  95. memcpy(&p[offset], header_comm.packet, header_comm.bytes);
  96. offset += header_comm.bytes;
  97. memcpy(&p[offset], header_code.packet, header_code.bytes);
  98. offset += header_code.bytes;
  99. avccontext->extradata_size = offset;
  100. avccontext->extradata= av_realloc(avccontext->extradata, avccontext->extradata_size);
  101. /* vorbis_block_clear(&context->vb);
  102. vorbis_dsp_clear(&context->vd);
  103. vorbis_info_clear(&context->vi);*/
  104. vorbis_comment_clear(&context->vc);
  105. avccontext->frame_size = OGGVORBIS_FRAME_SIZE ;
  106. avccontext->coded_frame= avcodec_alloc_frame();
  107. avccontext->coded_frame->key_frame= 1;
  108. return 0 ;
  109. }
  110. static int oggvorbis_encode_frame(AVCodecContext *avccontext,
  111. unsigned char *packets,
  112. int buf_size, void *data)
  113. {
  114. OggVorbisContext *context = avccontext->priv_data ;
  115. ogg_packet op ;
  116. signed short *audio = data ;
  117. int l;
  118. if(data) {
  119. int samples = OGGVORBIS_FRAME_SIZE;
  120. float **buffer ;
  121. buffer = vorbis_analysis_buffer(&context->vd, samples) ;
  122. if(context->vi.channels == 1) {
  123. for(l = 0 ; l < samples ; l++)
  124. buffer[0][l]=audio[l]/32768.f;
  125. } else {
  126. for(l = 0 ; l < samples ; l++){
  127. buffer[0][l]=audio[l*2]/32768.f;
  128. buffer[1][l]=audio[l*2+1]/32768.f;
  129. }
  130. }
  131. vorbis_analysis_wrote(&context->vd, samples) ;
  132. } else {
  133. if(!context->eof)
  134. vorbis_analysis_wrote(&context->vd, 0) ;
  135. context->eof = 1;
  136. }
  137. while(vorbis_analysis_blockout(&context->vd, &context->vb) == 1) {
  138. vorbis_analysis(&context->vb, NULL);
  139. vorbis_bitrate_addblock(&context->vb) ;
  140. while(vorbis_bitrate_flushpacket(&context->vd, &op)) {
  141. /* i'd love to say the following line is a hack, but sadly it's
  142. * not, apparently the end of stream decision is in libogg. */
  143. if(op.bytes==1)
  144. continue;
  145. memcpy(context->buffer + context->buffer_index, &op, sizeof(ogg_packet));
  146. context->buffer_index += sizeof(ogg_packet);
  147. memcpy(context->buffer + context->buffer_index, op.packet, op.bytes);
  148. context->buffer_index += op.bytes;
  149. // av_log(avccontext, AV_LOG_DEBUG, "e%d / %d\n", context->buffer_index, op.bytes);
  150. }
  151. }
  152. l=0;
  153. if(context->buffer_index){
  154. ogg_packet *op2= (ogg_packet*)context->buffer;
  155. op2->packet = context->buffer + sizeof(ogg_packet);
  156. l= op2->bytes;
  157. avccontext->coded_frame->pts= av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base);
  158. //FIXME we should reorder the user supplied pts and not assume that they are spaced by 1/sample_rate
  159. memcpy(packets, op2->packet, l);
  160. context->buffer_index -= l + sizeof(ogg_packet);
  161. memcpy(context->buffer, context->buffer + l + sizeof(ogg_packet), context->buffer_index);
  162. // av_log(avccontext, AV_LOG_DEBUG, "E%d\n", l);
  163. }
  164. return l;
  165. }
  166. static av_cold int oggvorbis_encode_close(AVCodecContext *avccontext) {
  167. OggVorbisContext *context = avccontext->priv_data ;
  168. /* ogg_packet op ; */
  169. vorbis_analysis_wrote(&context->vd, 0) ; /* notify vorbisenc this is EOF */
  170. vorbis_block_clear(&context->vb);
  171. vorbis_dsp_clear(&context->vd);
  172. vorbis_info_clear(&context->vi);
  173. av_freep(&avccontext->coded_frame);
  174. av_freep(&avccontext->extradata);
  175. return 0 ;
  176. }
  177. AVCodec libvorbis_encoder = {
  178. "libvorbis",
  179. CODEC_TYPE_AUDIO,
  180. CODEC_ID_VORBIS,
  181. sizeof(OggVorbisContext),
  182. oggvorbis_encode_init,
  183. oggvorbis_encode_frame,
  184. oggvorbis_encode_close,
  185. .capabilities= CODEC_CAP_DELAY,
  186. .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
  187. .long_name= NULL_IF_CONFIG_SMALL("libvorbis Vorbis"),
  188. } ;