2011-01-04 11:53:44 +00:00
|
|
|
/*
|
|
|
|
* The simplest AC-3 encoder
|
|
|
|
* Copyright (c) 2000 Fabrice Bellard
|
|
|
|
* Copyright (c) 2006-2010 Justin Ruggles <justin.ruggles@gmail.com>
|
|
|
|
* Copyright (c) 2006-2010 Prakash Punnoor <prakash@punnoor.de>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2011-01-04 11:53:44 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2011-01-04 11:53:44 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2011-01-04 11:53:44 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2011-01-04 11:53:44 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* floating-point AC-3 encoder.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CONFIG_AC3ENC_FLOAT 1
|
2012-01-30 00:01:10 +00:00
|
|
|
#include "internal.h"
|
2011-06-10 18:57:19 +00:00
|
|
|
#include "ac3enc.h"
|
|
|
|
#include "eac3enc.h"
|
2011-03-19 17:19:04 +00:00
|
|
|
#include "kbdwin.h"
|
2011-01-04 11:53:44 +00:00
|
|
|
|
|
|
|
|
2011-06-10 18:57:19 +00:00
|
|
|
#if CONFIG_AC3_ENCODER
|
|
|
|
#define AC3ENC_TYPE AC3ENC_TYPE_AC3
|
|
|
|
#include "ac3enc_opts_template.c"
|
2011-07-14 21:21:15 +00:00
|
|
|
static const AVClass ac3enc_class = { "AC-3 Encoder", av_default_item_name,
|
|
|
|
ac3_options, LIBAVUTIL_VERSION_INT };
|
2011-06-10 18:57:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ac3enc_template.c"
|
|
|
|
|
|
|
|
|
2011-01-04 11:53:44 +00:00
|
|
|
/**
|
|
|
|
* Finalize MDCT and free allocated memory.
|
2011-11-02 14:38:10 +00:00
|
|
|
*
|
|
|
|
* @param s AC-3 encoder private context
|
2011-01-04 11:53:44 +00:00
|
|
|
*/
|
2011-07-13 19:12:11 +00:00
|
|
|
av_cold void ff_ac3_float_mdct_end(AC3EncodeContext *s)
|
2011-01-04 11:53:44 +00:00
|
|
|
{
|
2011-07-13 19:12:11 +00:00
|
|
|
ff_mdct_end(&s->mdct);
|
|
|
|
av_freep(&s->mdct_window);
|
2011-01-04 11:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize MDCT tables.
|
2011-11-02 14:38:10 +00:00
|
|
|
*
|
|
|
|
* @param s AC-3 encoder private context
|
|
|
|
* @return 0 on success, negative error code on failure
|
2011-01-04 11:53:44 +00:00
|
|
|
*/
|
2011-07-13 19:12:11 +00:00
|
|
|
av_cold int ff_ac3_float_mdct_init(AC3EncodeContext *s)
|
2011-01-04 11:53:44 +00:00
|
|
|
{
|
|
|
|
float *window;
|
2011-01-13 20:28:06 +00:00
|
|
|
int i, n, n2;
|
2011-01-04 11:53:44 +00:00
|
|
|
|
2011-07-13 19:12:11 +00:00
|
|
|
n = 1 << 9;
|
2011-01-04 11:53:44 +00:00
|
|
|
n2 = n >> 1;
|
|
|
|
|
2011-01-13 20:28:06 +00:00
|
|
|
window = av_malloc(n * sizeof(*window));
|
2011-01-04 11:53:44 +00:00
|
|
|
if (!window) {
|
2011-07-13 19:12:11 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "Cannot allocate memory.\n");
|
2011-01-04 11:53:44 +00:00
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
ff_kbd_window_init(window, 5.0, n2);
|
2011-01-13 20:28:06 +00:00
|
|
|
for (i = 0; i < n2; i++)
|
|
|
|
window[n-1-i] = window[i];
|
2011-07-13 19:12:11 +00:00
|
|
|
s->mdct_window = window;
|
2011-01-04 11:53:44 +00:00
|
|
|
|
2011-07-13 19:12:11 +00:00
|
|
|
return ff_mdct_init(&s->mdct, 9, 0, -2.0 / n);
|
2011-01-04 11:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-02 14:38:10 +00:00
|
|
|
/*
|
2011-06-27 03:58:19 +00:00
|
|
|
* Normalize the input samples.
|
|
|
|
* Not needed for the floating-point encoder.
|
|
|
|
*/
|
|
|
|
static int normalize_samples(AC3EncodeContext *s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-02 14:38:10 +00:00
|
|
|
/*
|
2011-01-05 20:35:36 +00:00
|
|
|
* Scale MDCT coefficients from float to 24-bit fixed-point.
|
|
|
|
*/
|
2011-06-27 03:58:19 +00:00
|
|
|
static void scale_coefficients(AC3EncodeContext *s)
|
2011-01-05 20:35:36 +00:00
|
|
|
{
|
2011-07-14 17:02:45 +00:00
|
|
|
int chan_size = AC3_MAX_COEFS * s->num_blocks;
|
2011-08-07 21:51:13 +00:00
|
|
|
int cpl = s->cpl_on;
|
|
|
|
s->ac3dsp.float_to_fixed24(s->fixed_coef_buffer + (chan_size * !cpl),
|
|
|
|
s->mdct_coef_buffer + (chan_size * !cpl),
|
|
|
|
chan_size * (s->channels + cpl));
|
2011-01-05 20:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-02 14:38:10 +00:00
|
|
|
/*
|
2011-06-27 18:29:33 +00:00
|
|
|
* Clip MDCT coefficients to allowable range.
|
|
|
|
*/
|
|
|
|
static void clip_coefficients(DSPContext *dsp, float *coef, unsigned int len)
|
|
|
|
{
|
|
|
|
dsp->vector_clipf(coef, coef, COEF_MIN, COEF_MAX, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-02 14:38:10 +00:00
|
|
|
/*
|
2011-08-07 21:47:42 +00:00
|
|
|
* Calculate a single coupling coordinate.
|
|
|
|
*/
|
|
|
|
static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl)
|
|
|
|
{
|
|
|
|
float coord = 0.125;
|
|
|
|
if (energy_cpl > 0)
|
|
|
|
coord *= sqrtf(energy_ch / energy_cpl);
|
|
|
|
return FFMIN(coord, COEF_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-24 19:20:56 +00:00
|
|
|
#if CONFIG_AC3_ENCODER
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_ac3_encoder = {
|
2012-04-06 16:19:39 +00:00
|
|
|
.name = "ac3",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"),
|
2012-04-06 16:19:39 +00:00
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_AC3,
|
2012-04-06 16:19:39 +00:00
|
|
|
.priv_data_size = sizeof(AC3EncodeContext),
|
|
|
|
.init = ff_ac3_encode_init,
|
|
|
|
.encode2 = ff_ac3_float_encode_frame,
|
|
|
|
.close = ff_ac3_encode_close,
|
2012-08-25 17:11:10 +00:00
|
|
|
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLTP,
|
2012-04-06 16:19:39 +00:00
|
|
|
AV_SAMPLE_FMT_NONE },
|
|
|
|
.priv_class = &ac3enc_class,
|
2011-06-10 18:57:19 +00:00
|
|
|
.channel_layouts = ff_ac3_channel_layouts,
|
2012-02-23 02:45:06 +00:00
|
|
|
.defaults = ac3_defaults,
|
2011-05-24 19:20:56 +00:00
|
|
|
};
|
|
|
|
#endif
|