libavcodec/libtwolame.c
f5f98727
 /*
  * Interface to libtwolame for mp2 encoding
  * Copyright (c) 2012 Paul B Mahol
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * Interface to libtwolame for mp2 encoding.
  */
 
 #include <twolame.h>
 
718907cd
 #include "libavutil/common.h"
f5f98727
 #include "libavutil/opt.h"
718907cd
 
f5f98727
 #include "avcodec.h"
 #include "internal.h"
 #include "mpegaudio.h"
 
 typedef struct TWOLAMEContext {
718907cd
     AVClass *class;
     int mode;
     int psymodel;
     int energy;
     int error_protection;
     int copyright;
     int original;
     int verbosity;
f5f98727
 
     twolame_options *glopts;
718907cd
     int64_t next_pts;
f5f98727
 } TWOLAMEContext;
 
 static av_cold int twolame_encode_close(AVCodecContext *avctx)
 {
     TWOLAMEContext *s = avctx->priv_data;
     twolame_close(&s->glopts);
     return 0;
 }
 
 static av_cold int twolame_encode_init(AVCodecContext *avctx)
 {
     TWOLAMEContext *s = avctx->priv_data;
     int ret;
 
     avctx->frame_size = TWOLAME_SAMPLES_PER_FRAME;
2df0c32e
     avctx->initial_padding = 512 - 32 + 1;
f5f98727
 
     s->glopts = twolame_init();
     if (!s->glopts)
         return AVERROR(ENOMEM);
 
718907cd
     twolame_set_verbosity(s->glopts, s->verbosity);
f5f98727
     twolame_set_mode(s->glopts, s->mode);
     twolame_set_psymodel(s->glopts, s->psymodel);
     twolame_set_energy_levels(s->glopts, s->energy);
     twolame_set_error_protection(s->glopts, s->error_protection);
e5c7bafb
     twolame_set_copyright(s->glopts, s->copyright);
     twolame_set_original(s->glopts, s->original);
f5f98727
 
     twolame_set_num_channels(s->glopts, avctx->channels);
     twolame_set_in_samplerate(s->glopts, avctx->sample_rate);
     twolame_set_out_samplerate(s->glopts, avctx->sample_rate);
5ab51f75
 
     if (!avctx->bit_rate)
         avctx->bit_rate = avctx->sample_rate < 28000 ? 160000 : 384000;
 
7c6eb0a1
     if (avctx->flags & AV_CODEC_FLAG_QSCALE || !avctx->bit_rate) {
f5f98727
         twolame_set_VBR(s->glopts, TRUE);
718907cd
         twolame_set_VBR_level(s->glopts,
                               avctx->global_quality / (float) FF_QP2LAMBDA);
         av_log(avctx, AV_LOG_WARNING,
                "VBR in MP2 is a hack, use another codec that supports it.\n");
f5f98727
     } else {
         twolame_set_bitrate(s->glopts, avctx->bit_rate / 1000);
     }
 
718907cd
     ret = twolame_init_params(s->glopts);
     if (ret) {
         twolame_encode_close(avctx);
         return AVERROR_UNKNOWN;
     }
f5f98727
 
     return 0;
 }
 
 static int twolame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
                                 const AVFrame *frame, int *got_packet_ptr)
 {
     TWOLAMEContext *s = avctx->priv_data;
     int ret;
 
e36db49b
     if ((ret = ff_alloc_packet2(avctx, avpkt, MPA_MAX_CODED_FRAME_SIZE, 0)) < 0)
f5f98727
         return ret;
 
     if (frame) {
         switch (avctx->sample_fmt) {
         case AV_SAMPLE_FMT_FLT:
             ret = twolame_encode_buffer_float32_interleaved(s->glopts,
718907cd
                                                             (const float *)frame->data[0],
                                                             frame->nb_samples,
                                                             avpkt->data,
                                                             avpkt->size);
f5f98727
             break;
         case AV_SAMPLE_FMT_FLTP:
             ret = twolame_encode_buffer_float32(s->glopts,
718907cd
                                                 (const float *)frame->data[0],
                                                 (const float *)frame->data[1],
                                                 frame->nb_samples,
                                                 avpkt->data, avpkt->size);
f5f98727
             break;
         case AV_SAMPLE_FMT_S16:
             ret = twolame_encode_buffer_interleaved(s->glopts,
718907cd
                                                     (const short int *)frame->data[0],
                                                     frame->nb_samples,
                                                     avpkt->data, avpkt->size);
f5f98727
             break;
         case AV_SAMPLE_FMT_S16P:
             ret = twolame_encode_buffer(s->glopts,
718907cd
                                         (const short int *)frame->data[0],
                                         (const short int *)frame->data[1],
f5f98727
                                         frame->nb_samples,
                                         avpkt->data, avpkt->size);
             break;
         default:
718907cd
             av_log(avctx, AV_LOG_ERROR,
                    "Unsupported sample format %d.\n", avctx->sample_fmt);
f5f98727
             return AVERROR_BUG;
         }
     } else {
         ret = twolame_encode_flush(s->glopts, avpkt->data, avpkt->size);
     }
 
718907cd
     if (!ret)     // no bytes written
f5f98727
         return 0;
718907cd
     if (ret < 0)  // twolame error
         return AVERROR_UNKNOWN;
 
     if (frame) {
a586b3d9
         avpkt->duration = ff_samples_to_time_base(avctx, frame->nb_samples);
718907cd
         if (frame->pts != AV_NOPTS_VALUE)
2df0c32e
             avpkt->pts = frame->pts - ff_samples_to_time_base(avctx, avctx->initial_padding);
718907cd
     } else {
         avpkt->pts = s->next_pts;
f5f98727
     }
718907cd
     // this is for setting pts for flushed packet(s).
     if (avpkt->pts != AV_NOPTS_VALUE)
         s->next_pts = avpkt->pts + avpkt->duration;
f5f98727
 
718907cd
     av_shrink_packet(avpkt, ret);
     *got_packet_ptr = 1;
     return 0;
f5f98727
 }
 
 #define OFFSET(x) offsetof(TWOLAMEContext, x)
 #define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 static const AVOption options[] = {
718907cd
     { "mode", "Mpeg Mode", OFFSET(mode), AV_OPT_TYPE_INT, { .i64 = TWOLAME_AUTO_MODE }, TWOLAME_AUTO_MODE, TWOLAME_MONO, AE, "mode"},
         { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_AUTO_MODE }, 0, 0, AE, "mode" },
         { "stereo", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_STEREO }, 0, 0, AE, "mode" },
         { "joint_stereo", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_JOINT_STEREO }, 0, 0, AE, "mode" },
         { "dual_channel", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_DUAL_CHANNEL }, 0, 0, AE, "mode" },
         { "mono", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_MONO }, 0, 0, AE, "mode" },
     { "psymodel", "Psychoacoustic Model", OFFSET(psymodel), AV_OPT_TYPE_INT, { .i64 = 3 }, -1, 4, AE},
     { "energy_levels","enable energy levels", OFFSET(energy), AV_OPT_TYPE_INT, { .i64 = 0 },  0, 1, AE},
d46c1c72
     { "error_protection","enable CRC error protection", OFFSET(error_protection), AV_OPT_TYPE_INT, { .i64 = 0 },  0, 1, AE},
718907cd
     { "copyright", "set MPEG Audio Copyright flag", OFFSET(copyright), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE},
     { "original", "set MPEG Audio Original flag", OFFSET(original), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE},
     { "verbosity", "set library optput level (0-10)", OFFSET(verbosity), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 10, AE},
f5f98727
     { NULL },
 };
 
718907cd
 static const AVClass twolame_class = {
f5f98727
     .class_name = "libtwolame encoder",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
718907cd
 static const AVCodecDefault twolame_defaults[] = {
5ab51f75
     { "b", "0" },
718907cd
     { NULL },
 };
 
 static const int twolame_samplerates[] = {
     16000, 22050, 24000, 32000, 44100, 48000, 0
 };
 
f5f98727
 AVCodec ff_libtwolame_encoder = {
718907cd
     .name           = "libtwolame",
     .long_name      = NULL_IF_CONFIG_SMALL("libtwolame MP2 (MPEG audio layer 2)"),
     .type           = AVMEDIA_TYPE_AUDIO,
     .id             = AV_CODEC_ID_MP2,
     .priv_data_size = sizeof(TWOLAMEContext),
     .init           = twolame_encode_init,
     .encode2        = twolame_encode_frame,
     .close          = twolame_encode_close,
def97856
     .capabilities   = AV_CODEC_CAP_DELAY,
718907cd
     .defaults       = twolame_defaults,
     .priv_class     = &twolame_class,
     .sample_fmts    = (const enum AVSampleFormat[]) {
         AV_SAMPLE_FMT_FLT,
         AV_SAMPLE_FMT_FLTP,
         AV_SAMPLE_FMT_S16,
         AV_SAMPLE_FMT_S16P,
         AV_SAMPLE_FMT_NONE
     },
     .channel_layouts = (const uint64_t[]) {
         AV_CH_LAYOUT_MONO,
         AV_CH_LAYOUT_STEREO,
         0 },
     .supported_samplerates = twolame_samplerates,
f5f98727
 };