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.

355 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 LIBVORBIS_FRAME_SIZE 64
  42. #define BUFFER_SIZE (1024 * 64)
  43. typedef struct LibvorbisContext {
  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. AVVorbisParseContext *vp; /**< parse context to get durations */
  55. AudioFrameQueue afq; /**< frame queue for timestamps */
  56. } LibvorbisContext;
  57. static const AVOption options[] = {
  58. { "iblock", "Sets the impulse block bias", offsetof(LibvorbisContext, 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 libvorbis_setup(vorbis_info *vi, AVCodecContext *avctx)
  76. {
  77. LibvorbisContext *s = avctx->priv_data;
  78. double cfreq;
  79. int ret;
  80. if (avctx->flags & AV_CODEC_FLAG_QSCALE || !avctx->bit_rate) {
  81. /* variable bitrate
  82. * NOTE: we use the oggenc range of -1 to 10 for global_quality for
  83. * user convenience, but libvorbis uses -0.1 to 1.0.
  84. */
  85. float q = avctx->global_quality / (float)FF_QP2LAMBDA;
  86. /* default to 3 if the user did not set quality or bitrate */
  87. if (!(avctx->flags & AV_CODEC_FLAG_QSCALE))
  88. q = 3.0;
  89. if ((ret = vorbis_encode_setup_vbr(vi, avctx->channels,
  90. avctx->sample_rate,
  91. q / 10.0)))
  92. goto error;
  93. } else {
  94. int minrate = avctx->rc_min_rate > 0 ? avctx->rc_min_rate : -1;
  95. int maxrate = avctx->rc_max_rate > 0 ? avctx->rc_max_rate : -1;
  96. /* average bitrate */
  97. if ((ret = vorbis_encode_setup_managed(vi, avctx->channels,
  98. avctx->sample_rate, maxrate,
  99. avctx->bit_rate, minrate)))
  100. goto error;
  101. /* variable bitrate by estimate, disable slow rate management */
  102. if (minrate == -1 && maxrate == -1)
  103. if ((ret = vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE2_SET, NULL)))
  104. goto error;
  105. }
  106. /* cutoff frequency */
  107. if (avctx->cutoff > 0) {
  108. cfreq = avctx->cutoff / 1000.0;
  109. if ((ret = vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq)))
  110. goto error;
  111. }
  112. /* impulse block bias */
  113. if (s->iblock) {
  114. if ((ret = vorbis_encode_ctl(vi, OV_ECTL_IBLOCK_SET, &s->iblock)))
  115. goto error;
  116. }
  117. if ((ret = vorbis_encode_setup_init(vi)))
  118. goto error;
  119. return 0;
  120. error:
  121. return vorbis_error_to_averror(ret);
  122. }
  123. /* How many bytes are needed for a buffer of length 'l' */
  124. static int xiph_len(int l)
  125. {
  126. return 1 + l / 255 + l;
  127. }
  128. static av_cold int libvorbis_encode_close(AVCodecContext *avctx)
  129. {
  130. LibvorbisContext *s = avctx->priv_data;
  131. /* notify vorbisenc this is EOF */
  132. if (s->dsp_initialized)
  133. vorbis_analysis_wrote(&s->vd, 0);
  134. vorbis_block_clear(&s->vb);
  135. vorbis_dsp_clear(&s->vd);
  136. vorbis_info_clear(&s->vi);
  137. av_fifo_free(s->pkt_fifo);
  138. ff_af_queue_close(&s->afq);
  139. av_freep(&avctx->extradata);
  140. av_vorbis_parse_free(&s->vp);
  141. return 0;
  142. }
  143. static av_cold int libvorbis_encode_init(AVCodecContext *avctx)
  144. {
  145. LibvorbisContext *s = avctx->priv_data;
  146. ogg_packet header, header_comm, header_code;
  147. uint8_t *p;
  148. unsigned int offset;
  149. int ret;
  150. vorbis_info_init(&s->vi);
  151. if ((ret = libvorbis_setup(&s->vi, avctx))) {
  152. av_log(avctx, AV_LOG_ERROR, "encoder setup failed\n");
  153. goto error;
  154. }
  155. if ((ret = vorbis_analysis_init(&s->vd, &s->vi))) {
  156. av_log(avctx, AV_LOG_ERROR, "analysis init failed\n");
  157. ret = vorbis_error_to_averror(ret);
  158. goto error;
  159. }
  160. s->dsp_initialized = 1;
  161. if ((ret = vorbis_block_init(&s->vd, &s->vb))) {
  162. av_log(avctx, AV_LOG_ERROR, "dsp init failed\n");
  163. ret = vorbis_error_to_averror(ret);
  164. goto error;
  165. }
  166. vorbis_comment_init(&s->vc);
  167. vorbis_comment_add_tag(&s->vc, "encoder", LIBAVCODEC_IDENT);
  168. if ((ret = vorbis_analysis_headerout(&s->vd, &s->vc, &header, &header_comm,
  169. &header_code))) {
  170. ret = vorbis_error_to_averror(ret);
  171. goto error;
  172. }
  173. avctx->extradata_size = 1 + xiph_len(header.bytes) +
  174. xiph_len(header_comm.bytes) +
  175. header_code.bytes;
  176. p = avctx->extradata = av_malloc(avctx->extradata_size +
  177. AV_INPUT_BUFFER_PADDING_SIZE);
  178. if (!p) {
  179. ret = AVERROR(ENOMEM);
  180. goto error;
  181. }
  182. p[0] = 2;
  183. offset = 1;
  184. offset += av_xiphlacing(&p[offset], header.bytes);
  185. offset += av_xiphlacing(&p[offset], header_comm.bytes);
  186. memcpy(&p[offset], header.packet, header.bytes);
  187. offset += header.bytes;
  188. memcpy(&p[offset], header_comm.packet, header_comm.bytes);
  189. offset += header_comm.bytes;
  190. memcpy(&p[offset], header_code.packet, header_code.bytes);
  191. offset += header_code.bytes;
  192. assert(offset == avctx->extradata_size);
  193. s->vp = av_vorbis_parse_init(avctx->extradata, avctx->extradata_size);
  194. if (!s->vp) {
  195. av_log(avctx, AV_LOG_ERROR, "invalid extradata\n");
  196. return ret;
  197. }
  198. vorbis_comment_clear(&s->vc);
  199. avctx->frame_size = LIBVORBIS_FRAME_SIZE;
  200. ff_af_queue_init(avctx, &s->afq);
  201. s->pkt_fifo = av_fifo_alloc(BUFFER_SIZE);
  202. if (!s->pkt_fifo) {
  203. ret = AVERROR(ENOMEM);
  204. goto error;
  205. }
  206. return 0;
  207. error:
  208. libvorbis_encode_close(avctx);
  209. return ret;
  210. }
  211. static int libvorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  212. const AVFrame *frame, int *got_packet_ptr)
  213. {
  214. LibvorbisContext *s = avctx->priv_data;
  215. ogg_packet op;
  216. int ret, duration;
  217. /* send samples to libvorbis */
  218. if (frame) {
  219. const int samples = frame->nb_samples;
  220. float **buffer;
  221. int c, channels = s->vi.channels;
  222. buffer = vorbis_analysis_buffer(&s->vd, samples);
  223. for (c = 0; c < channels; c++) {
  224. int co = (channels > 8) ? c :
  225. ff_vorbis_encoding_channel_layout_offsets[channels - 1][c];
  226. memcpy(buffer[c], frame->extended_data[co],
  227. samples * sizeof(*buffer[c]));
  228. }
  229. if ((ret = vorbis_analysis_wrote(&s->vd, samples)) < 0) {
  230. av_log(avctx, AV_LOG_ERROR, "error in vorbis_analysis_wrote()\n");
  231. return vorbis_error_to_averror(ret);
  232. }
  233. if ((ret = ff_af_queue_add(&s->afq, frame)) < 0)
  234. return ret;
  235. } else {
  236. if (!s->eof)
  237. if ((ret = vorbis_analysis_wrote(&s->vd, 0)) < 0) {
  238. av_log(avctx, AV_LOG_ERROR, "error in vorbis_analysis_wrote()\n");
  239. return vorbis_error_to_averror(ret);
  240. }
  241. s->eof = 1;
  242. }
  243. /* retrieve available packets from libvorbis */
  244. while ((ret = vorbis_analysis_blockout(&s->vd, &s->vb)) == 1) {
  245. if ((ret = vorbis_analysis(&s->vb, NULL)) < 0)
  246. break;
  247. if ((ret = vorbis_bitrate_addblock(&s->vb)) < 0)
  248. break;
  249. /* add any available packets to the output packet buffer */
  250. while ((ret = vorbis_bitrate_flushpacket(&s->vd, &op)) == 1) {
  251. if (av_fifo_space(s->pkt_fifo) < sizeof(ogg_packet) + op.bytes) {
  252. av_log(avctx, AV_LOG_ERROR, "packet buffer is too small");
  253. return AVERROR_BUG;
  254. }
  255. av_fifo_generic_write(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
  256. av_fifo_generic_write(s->pkt_fifo, op.packet, op.bytes, NULL);
  257. }
  258. if (ret < 0) {
  259. av_log(avctx, AV_LOG_ERROR, "error getting available packets\n");
  260. break;
  261. }
  262. }
  263. if (ret < 0) {
  264. av_log(avctx, AV_LOG_ERROR, "error getting available packets\n");
  265. return vorbis_error_to_averror(ret);
  266. }
  267. /* check for available packets */
  268. if (av_fifo_size(s->pkt_fifo) < sizeof(ogg_packet))
  269. return 0;
  270. av_fifo_generic_read(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
  271. if ((ret = ff_alloc_packet(avpkt, op.bytes))) {
  272. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  273. return ret;
  274. }
  275. av_fifo_generic_read(s->pkt_fifo, avpkt->data, op.bytes, NULL);
  276. avpkt->pts = ff_samples_to_time_base(avctx, op.granulepos);
  277. duration = av_vorbis_parse_frame(s->vp, avpkt->data, avpkt->size);
  278. if (duration > 0) {
  279. /* we do not know encoder delay until we get the first packet from
  280. * libvorbis, so we have to update the AudioFrameQueue counts */
  281. if (!avctx->initial_padding) {
  282. avctx->initial_padding = duration;
  283. s->afq.remaining_delay += duration;
  284. s->afq.remaining_samples += duration;
  285. }
  286. ff_af_queue_remove(&s->afq, duration, &avpkt->pts, &avpkt->duration);
  287. }
  288. *got_packet_ptr = 1;
  289. return 0;
  290. }
  291. AVCodec ff_libvorbis_encoder = {
  292. .name = "libvorbis",
  293. .long_name = NULL_IF_CONFIG_SMALL("libvorbis Vorbis"),
  294. .type = AVMEDIA_TYPE_AUDIO,
  295. .id = AV_CODEC_ID_VORBIS,
  296. .priv_data_size = sizeof(LibvorbisContext),
  297. .init = libvorbis_encode_init,
  298. .encode2 = libvorbis_encode_frame,
  299. .close = libvorbis_encode_close,
  300. .capabilities = AV_CODEC_CAP_DELAY,
  301. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
  302. AV_SAMPLE_FMT_NONE },
  303. .priv_class = &class,
  304. .defaults = defaults,
  305. };