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.

289 lines
10KB

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