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.

281 lines
9.4KB

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