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.

352 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. VorbisParseContext 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 & 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 & 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. return 0;
  141. }
  142. static av_cold int libvorbis_encode_init(AVCodecContext *avctx)
  143. {
  144. LibvorbisContext *s = avctx->priv_data;
  145. ogg_packet header, header_comm, header_code;
  146. uint8_t *p;
  147. unsigned int offset;
  148. int ret;
  149. vorbis_info_init(&s->vi);
  150. if ((ret = libvorbis_setup(&s->vi, avctx))) {
  151. av_log(avctx, AV_LOG_ERROR, "encoder setup failed\n");
  152. goto error;
  153. }
  154. if ((ret = vorbis_analysis_init(&s->vd, &s->vi))) {
  155. av_log(avctx, AV_LOG_ERROR, "analysis init failed\n");
  156. ret = vorbis_error_to_averror(ret);
  157. goto error;
  158. }
  159. s->dsp_initialized = 1;
  160. if ((ret = vorbis_block_init(&s->vd, &s->vb))) {
  161. av_log(avctx, AV_LOG_ERROR, "dsp init failed\n");
  162. ret = vorbis_error_to_averror(ret);
  163. goto error;
  164. }
  165. vorbis_comment_init(&s->vc);
  166. vorbis_comment_add_tag(&s->vc, "encoder", LIBAVCODEC_IDENT);
  167. if ((ret = vorbis_analysis_headerout(&s->vd, &s->vc, &header, &header_comm,
  168. &header_code))) {
  169. ret = vorbis_error_to_averror(ret);
  170. goto error;
  171. }
  172. avctx->extradata_size = 1 + xiph_len(header.bytes) +
  173. xiph_len(header_comm.bytes) +
  174. header_code.bytes;
  175. p = avctx->extradata = av_malloc(avctx->extradata_size +
  176. FF_INPUT_BUFFER_PADDING_SIZE);
  177. if (!p) {
  178. ret = AVERROR(ENOMEM);
  179. goto error;
  180. }
  181. p[0] = 2;
  182. offset = 1;
  183. offset += av_xiphlacing(&p[offset], header.bytes);
  184. offset += av_xiphlacing(&p[offset], header_comm.bytes);
  185. memcpy(&p[offset], header.packet, header.bytes);
  186. offset += header.bytes;
  187. memcpy(&p[offset], header_comm.packet, header_comm.bytes);
  188. offset += header_comm.bytes;
  189. memcpy(&p[offset], header_code.packet, header_code.bytes);
  190. offset += header_code.bytes;
  191. assert(offset == avctx->extradata_size);
  192. if ((ret = avpriv_vorbis_parse_extradata(avctx, &s->vp)) < 0) {
  193. av_log(avctx, AV_LOG_ERROR, "invalid extradata\n");
  194. return ret;
  195. }
  196. vorbis_comment_clear(&s->vc);
  197. avctx->frame_size = LIBVORBIS_FRAME_SIZE;
  198. ff_af_queue_init(avctx, &s->afq);
  199. s->pkt_fifo = av_fifo_alloc(BUFFER_SIZE);
  200. if (!s->pkt_fifo) {
  201. ret = AVERROR(ENOMEM);
  202. goto error;
  203. }
  204. return 0;
  205. error:
  206. libvorbis_encode_close(avctx);
  207. return ret;
  208. }
  209. static int libvorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  210. const AVFrame *frame, int *got_packet_ptr)
  211. {
  212. LibvorbisContext *s = avctx->priv_data;
  213. ogg_packet op;
  214. int ret, duration;
  215. /* send samples to libvorbis */
  216. if (frame) {
  217. const int samples = frame->nb_samples;
  218. float **buffer;
  219. int c, channels = s->vi.channels;
  220. buffer = vorbis_analysis_buffer(&s->vd, samples);
  221. for (c = 0; c < channels; c++) {
  222. int co = (channels > 8) ? c :
  223. ff_vorbis_encoding_channel_layout_offsets[channels - 1][c];
  224. memcpy(buffer[c], frame->extended_data[co],
  225. samples * sizeof(*buffer[c]));
  226. }
  227. if ((ret = vorbis_analysis_wrote(&s->vd, samples)) < 0) {
  228. av_log(avctx, AV_LOG_ERROR, "error in vorbis_analysis_wrote()\n");
  229. return vorbis_error_to_averror(ret);
  230. }
  231. if ((ret = ff_af_queue_add(&s->afq, frame)) < 0)
  232. return ret;
  233. } else {
  234. if (!s->eof)
  235. if ((ret = vorbis_analysis_wrote(&s->vd, 0)) < 0) {
  236. av_log(avctx, AV_LOG_ERROR, "error in vorbis_analysis_wrote()\n");
  237. return vorbis_error_to_averror(ret);
  238. }
  239. s->eof = 1;
  240. }
  241. /* retrieve available packets from libvorbis */
  242. while ((ret = vorbis_analysis_blockout(&s->vd, &s->vb)) == 1) {
  243. if ((ret = vorbis_analysis(&s->vb, NULL)) < 0)
  244. break;
  245. if ((ret = vorbis_bitrate_addblock(&s->vb)) < 0)
  246. break;
  247. /* add any available packets to the output packet buffer */
  248. while ((ret = vorbis_bitrate_flushpacket(&s->vd, &op)) == 1) {
  249. if (av_fifo_space(s->pkt_fifo) < sizeof(ogg_packet) + op.bytes) {
  250. av_log(avctx, AV_LOG_ERROR, "packet buffer is too small");
  251. return AVERROR_BUG;
  252. }
  253. av_fifo_generic_write(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
  254. av_fifo_generic_write(s->pkt_fifo, op.packet, op.bytes, NULL);
  255. }
  256. if (ret < 0) {
  257. av_log(avctx, AV_LOG_ERROR, "error getting available packets\n");
  258. break;
  259. }
  260. }
  261. if (ret < 0) {
  262. av_log(avctx, AV_LOG_ERROR, "error getting available packets\n");
  263. return vorbis_error_to_averror(ret);
  264. }
  265. /* check for available packets */
  266. if (av_fifo_size(s->pkt_fifo) < sizeof(ogg_packet))
  267. return 0;
  268. av_fifo_generic_read(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
  269. if ((ret = ff_alloc_packet(avpkt, op.bytes))) {
  270. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  271. return ret;
  272. }
  273. av_fifo_generic_read(s->pkt_fifo, avpkt->data, op.bytes, NULL);
  274. avpkt->pts = ff_samples_to_time_base(avctx, op.granulepos);
  275. duration = avpriv_vorbis_parse_frame(&s->vp, avpkt->data, avpkt->size);
  276. if (duration > 0) {
  277. /* we do not know encoder delay until we get the first packet from
  278. * libvorbis, so we have to update the AudioFrameQueue counts */
  279. if (!avctx->delay) {
  280. avctx->delay = duration;
  281. s->afq.remaining_delay += duration;
  282. s->afq.remaining_samples += duration;
  283. }
  284. ff_af_queue_remove(&s->afq, duration, &avpkt->pts, &avpkt->duration);
  285. }
  286. *got_packet_ptr = 1;
  287. return 0;
  288. }
  289. AVCodec ff_libvorbis_encoder = {
  290. .name = "libvorbis",
  291. .long_name = NULL_IF_CONFIG_SMALL("libvorbis Vorbis"),
  292. .type = AVMEDIA_TYPE_AUDIO,
  293. .id = AV_CODEC_ID_VORBIS,
  294. .priv_data_size = sizeof(LibvorbisContext),
  295. .init = libvorbis_encode_init,
  296. .encode2 = libvorbis_encode_frame,
  297. .close = libvorbis_encode_close,
  298. .capabilities = CODEC_CAP_DELAY,
  299. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
  300. AV_SAMPLE_FMT_NONE },
  301. .priv_class = &class,
  302. .defaults = defaults,
  303. };