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.

267 lines
8.9KB

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