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.

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