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.

366 lines
12KB

  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. * Vorbis encoding support via libvorbisenc.
  23. * @author Mark Hills <mark@pogo.org.uk>
  24. */
  25. #include <vorbis/vorbisenc.h>
  26. #include "libavutil/fifo.h"
  27. #include "libavutil/opt.h"
  28. #include "avcodec.h"
  29. #include "audio_frame_queue.h"
  30. #include "bytestream.h"
  31. #include "internal.h"
  32. #include "vorbis.h"
  33. #include "vorbis_parser.h"
  34. #undef NDEBUG
  35. #include <assert.h>
  36. /* Number of samples the user should send in each call.
  37. * This value is used because it is the LCD of all possible frame sizes, so
  38. * an output packet will always start at the same point as one of the input
  39. * packets.
  40. */
  41. #define OGGVORBIS_FRAME_SIZE 64
  42. #define BUFFER_SIZE (1024 * 64)
  43. typedef struct OggVorbisContext {
  44. AVClass *av_class; /**< class for AVOptions */
  45. vorbis_info vi; /**< vorbis_info used during init */
  46. vorbis_dsp_state vd; /**< DSP state used for analysis */
  47. vorbis_block vb; /**< vorbis_block used for analysis */
  48. AVFifoBuffer *pkt_fifo; /**< output packet buffer */
  49. int eof; /**< end-of-file flag */
  50. int dsp_initialized; /**< vd has been initialized */
  51. vorbis_comment vc; /**< VorbisComment info */
  52. ogg_packet op; /**< ogg packet */
  53. double iblock; /**< impulse block bias option */
  54. VorbisParseContext vp; /**< parse context to get durations */
  55. AudioFrameQueue afq; /**< frame queue for timestamps */
  56. } OggVorbisContext;
  57. static const AVOption options[] = {
  58. { "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 },
  59. { NULL }
  60. };
  61. static const AVCodecDefault defaults[] = {
  62. { "b", "0" },
  63. { NULL },
  64. };
  65. static const AVClass class = { "libvorbis", av_default_item_name, options, LIBAVUTIL_VERSION_INT };
  66. static int vorbis_error_to_averror(int ov_err)
  67. {
  68. switch (ov_err) {
  69. case OV_EFAULT: return AVERROR_BUG;
  70. case OV_EINVAL: return AVERROR(EINVAL);
  71. case OV_EIMPL: return AVERROR(EINVAL);
  72. default: return AVERROR_UNKNOWN;
  73. }
  74. }
  75. static av_cold int oggvorbis_init_encoder(vorbis_info *vi,
  76. AVCodecContext *avctx)
  77. {
  78. OggVorbisContext *s = avctx->priv_data;
  79. double cfreq;
  80. int ret;
  81. if (avctx->flags & CODEC_FLAG_QSCALE || !avctx->bit_rate) {
  82. /* variable bitrate
  83. * NOTE: we use the oggenc range of -1 to 10 for global_quality for
  84. * user convenience, but libvorbis uses -0.1 to 1.0.
  85. */
  86. float q = avctx->global_quality / (float)FF_QP2LAMBDA;
  87. /* default to 3 if the user did not set quality or bitrate */
  88. if (!(avctx->flags & CODEC_FLAG_QSCALE))
  89. q = 3.0;
  90. if ((ret = vorbis_encode_setup_vbr(vi, avctx->channels,
  91. avctx->sample_rate,
  92. q / 10.0)))
  93. goto error;
  94. } else {
  95. int minrate = avctx->rc_min_rate > 0 ? avctx->rc_min_rate : -1;
  96. int maxrate = avctx->rc_max_rate > 0 ? avctx->rc_max_rate : -1;
  97. /* average bitrate */
  98. if ((ret = vorbis_encode_setup_managed(vi, avctx->channels,
  99. avctx->sample_rate, maxrate,
  100. avctx->bit_rate, minrate)))
  101. goto error;
  102. /* variable bitrate by estimate, disable slow rate management */
  103. if (minrate == -1 && maxrate == -1)
  104. if ((ret = vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE2_SET, NULL)))
  105. goto error;
  106. }
  107. /* cutoff frequency */
  108. if (avctx->cutoff > 0) {
  109. cfreq = avctx->cutoff / 1000.0;
  110. if ((ret = vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq)))
  111. goto error;
  112. }
  113. /* impulse block bias */
  114. if (s->iblock) {
  115. if ((ret = vorbis_encode_ctl(vi, OV_ECTL_IBLOCK_SET, &s->iblock)))
  116. goto error;
  117. }
  118. if ((ret = vorbis_encode_setup_init(vi)))
  119. goto error;
  120. return 0;
  121. error:
  122. return vorbis_error_to_averror(ret);
  123. }
  124. /* How many bytes are needed for a buffer of length 'l' */
  125. static int xiph_len(int l)
  126. {
  127. return 1 + l / 255 + l;
  128. }
  129. static av_cold int oggvorbis_encode_close(AVCodecContext *avctx)
  130. {
  131. OggVorbisContext *s = avctx->priv_data;
  132. /* notify vorbisenc this is EOF */
  133. if (s->dsp_initialized)
  134. vorbis_analysis_wrote(&s->vd, 0);
  135. vorbis_block_clear(&s->vb);
  136. vorbis_dsp_clear(&s->vd);
  137. vorbis_info_clear(&s->vi);
  138. av_fifo_free(s->pkt_fifo);
  139. ff_af_queue_close(&s->afq);
  140. #if FF_API_OLD_ENCODE_AUDIO
  141. av_freep(&avctx->coded_frame);
  142. #endif
  143. av_freep(&avctx->extradata);
  144. return 0;
  145. }
  146. static av_cold int oggvorbis_encode_init(AVCodecContext *avctx)
  147. {
  148. OggVorbisContext *s = avctx->priv_data;
  149. ogg_packet header, header_comm, header_code;
  150. uint8_t *p;
  151. unsigned int offset;
  152. int ret;
  153. vorbis_info_init(&s->vi);
  154. if ((ret = oggvorbis_init_encoder(&s->vi, avctx))) {
  155. av_log(avctx, AV_LOG_ERROR, "encoder setup failed\n");
  156. goto error;
  157. }
  158. if ((ret = vorbis_analysis_init(&s->vd, &s->vi))) {
  159. av_log(avctx, AV_LOG_ERROR, "analysis init failed\n");
  160. ret = vorbis_error_to_averror(ret);
  161. goto error;
  162. }
  163. s->dsp_initialized = 1;
  164. if ((ret = vorbis_block_init(&s->vd, &s->vb))) {
  165. av_log(avctx, AV_LOG_ERROR, "dsp init failed\n");
  166. ret = vorbis_error_to_averror(ret);
  167. goto error;
  168. }
  169. vorbis_comment_init(&s->vc);
  170. vorbis_comment_add_tag(&s->vc, "encoder", LIBAVCODEC_IDENT);
  171. if ((ret = vorbis_analysis_headerout(&s->vd, &s->vc, &header, &header_comm,
  172. &header_code))) {
  173. ret = vorbis_error_to_averror(ret);
  174. goto error;
  175. }
  176. avctx->extradata_size = 1 + xiph_len(header.bytes) +
  177. xiph_len(header_comm.bytes) +
  178. header_code.bytes;
  179. p = avctx->extradata = av_malloc(avctx->extradata_size +
  180. FF_INPUT_BUFFER_PADDING_SIZE);
  181. if (!p) {
  182. ret = AVERROR(ENOMEM);
  183. goto error;
  184. }
  185. p[0] = 2;
  186. offset = 1;
  187. offset += av_xiphlacing(&p[offset], header.bytes);
  188. offset += av_xiphlacing(&p[offset], header_comm.bytes);
  189. memcpy(&p[offset], header.packet, header.bytes);
  190. offset += header.bytes;
  191. memcpy(&p[offset], header_comm.packet, header_comm.bytes);
  192. offset += header_comm.bytes;
  193. memcpy(&p[offset], header_code.packet, header_code.bytes);
  194. offset += header_code.bytes;
  195. assert(offset == avctx->extradata_size);
  196. if ((ret = avpriv_vorbis_parse_extradata(avctx, &s->vp)) < 0) {
  197. av_log(avctx, AV_LOG_ERROR, "invalid extradata\n");
  198. return ret;
  199. }
  200. vorbis_comment_clear(&s->vc);
  201. avctx->frame_size = OGGVORBIS_FRAME_SIZE;
  202. ff_af_queue_init(avctx, &s->afq);
  203. s->pkt_fifo = av_fifo_alloc(BUFFER_SIZE);
  204. if (!s->pkt_fifo) {
  205. ret = AVERROR(ENOMEM);
  206. goto error;
  207. }
  208. #if FF_API_OLD_ENCODE_AUDIO
  209. avctx->coded_frame = avcodec_alloc_frame();
  210. if (!avctx->coded_frame) {
  211. ret = AVERROR(ENOMEM);
  212. goto error;
  213. }
  214. #endif
  215. return 0;
  216. error:
  217. oggvorbis_encode_close(avctx);
  218. return ret;
  219. }
  220. static int oggvorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  221. const AVFrame *frame, int *got_packet_ptr)
  222. {
  223. OggVorbisContext *s = avctx->priv_data;
  224. ogg_packet op;
  225. int ret, duration;
  226. /* send samples to libvorbis */
  227. if (frame) {
  228. const float *audio = (const float *)frame->data[0];
  229. const int samples = frame->nb_samples;
  230. float **buffer;
  231. int c, channels = s->vi.channels;
  232. buffer = vorbis_analysis_buffer(&s->vd, samples);
  233. for (c = 0; c < channels; c++) {
  234. int i;
  235. int co = (channels > 8) ? c :
  236. ff_vorbis_encoding_channel_layout_offsets[channels - 1][c];
  237. for (i = 0; i < samples; i++)
  238. buffer[c][i] = audio[i * channels + co];
  239. }
  240. if ((ret = vorbis_analysis_wrote(&s->vd, samples)) < 0) {
  241. av_log(avctx, AV_LOG_ERROR, "error in vorbis_analysis_wrote()\n");
  242. return vorbis_error_to_averror(ret);
  243. }
  244. if ((ret = ff_af_queue_add(&s->afq, frame) < 0))
  245. return ret;
  246. } else {
  247. if (!s->eof)
  248. if ((ret = vorbis_analysis_wrote(&s->vd, 0)) < 0) {
  249. av_log(avctx, AV_LOG_ERROR, "error in vorbis_analysis_wrote()\n");
  250. return vorbis_error_to_averror(ret);
  251. }
  252. s->eof = 1;
  253. }
  254. /* retrieve available packets from libvorbis */
  255. while ((ret = vorbis_analysis_blockout(&s->vd, &s->vb)) == 1) {
  256. if ((ret = vorbis_analysis(&s->vb, NULL)) < 0)
  257. break;
  258. if ((ret = vorbis_bitrate_addblock(&s->vb)) < 0)
  259. break;
  260. /* add any available packets to the output packet buffer */
  261. while ((ret = vorbis_bitrate_flushpacket(&s->vd, &op)) == 1) {
  262. if (av_fifo_space(s->pkt_fifo) < sizeof(ogg_packet) + op.bytes) {
  263. av_log(avctx, AV_LOG_ERROR, "packet buffer is too small");
  264. return AVERROR_BUG;
  265. }
  266. av_fifo_generic_write(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
  267. av_fifo_generic_write(s->pkt_fifo, op.packet, op.bytes, NULL);
  268. }
  269. if (ret < 0) {
  270. av_log(avctx, AV_LOG_ERROR, "error getting available packets\n");
  271. break;
  272. }
  273. }
  274. if (ret < 0) {
  275. av_log(avctx, AV_LOG_ERROR, "error getting available packets\n");
  276. return vorbis_error_to_averror(ret);
  277. }
  278. /* check for available packets */
  279. if (av_fifo_size(s->pkt_fifo) < sizeof(ogg_packet))
  280. return 0;
  281. av_fifo_generic_read(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
  282. if ((ret = ff_alloc_packet(avpkt, op.bytes))) {
  283. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  284. return ret;
  285. }
  286. av_fifo_generic_read(s->pkt_fifo, avpkt->data, op.bytes, NULL);
  287. avpkt->pts = ff_samples_to_time_base(avctx, op.granulepos);
  288. duration = avpriv_vorbis_parse_frame(&s->vp, avpkt->data, avpkt->size);
  289. if (duration > 0) {
  290. /* we do not know encoder delay until we get the first packet from
  291. * libvorbis, so we have to update the AudioFrameQueue counts */
  292. if (!avctx->delay) {
  293. avctx->delay = duration;
  294. s->afq.remaining_delay += duration;
  295. s->afq.remaining_samples += duration;
  296. }
  297. ff_af_queue_remove(&s->afq, duration, &avpkt->pts, &avpkt->duration);
  298. }
  299. *got_packet_ptr = 1;
  300. return 0;
  301. }
  302. AVCodec ff_libvorbis_encoder = {
  303. .name = "libvorbis",
  304. .type = AVMEDIA_TYPE_AUDIO,
  305. .id = CODEC_ID_VORBIS,
  306. .priv_data_size = sizeof(OggVorbisContext),
  307. .init = oggvorbis_encode_init,
  308. .encode2 = oggvorbis_encode_frame,
  309. .close = oggvorbis_encode_close,
  310. .capabilities = CODEC_CAP_DELAY,
  311. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
  312. AV_SAMPLE_FMT_NONE },
  313. .long_name = NULL_IF_CONFIG_SMALL("libvorbis Vorbis"),
  314. .priv_class = &class,
  315. .defaults = defaults,
  316. };