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.

244 lines
8.0KB

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