2024-03-13 22:53:49 +02:00
|
|
|
/*
|
|
|
|
* AAC decoder
|
|
|
|
* Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
|
|
|
|
* Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
|
|
|
|
* Copyright (c) 2008-2013 Alex Converse <alex.converse@gmail.com>
|
|
|
|
*
|
|
|
|
* AAC LATM decoder
|
|
|
|
* Copyright (c) 2008-2010 Paul Kendall <paul@kcbbs.gen.nz>
|
|
|
|
* Copyright (c) 2010 Janne Grunau <janne-libav@jannau.net>
|
|
|
|
*
|
|
|
|
* AAC decoder fixed-point implementation
|
|
|
|
* Copyright (c) 2013
|
|
|
|
* MIPS Technologies, Inc., California.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define USE_FIXED 1
|
|
|
|
|
2024-03-16 01:12:56 +02:00
|
|
|
#include "libavutil/thread.h"
|
|
|
|
|
2024-03-14 05:52:28 +02:00
|
|
|
#include "libavcodec/aac_defines.h"
|
|
|
|
|
2024-03-16 07:05:45 +02:00
|
|
|
#include "libavcodec/avcodec.h"
|
2024-03-19 21:19:06 +02:00
|
|
|
#include "aacdec.h"
|
2024-03-14 05:52:28 +02:00
|
|
|
#include "libavcodec/aactab.h"
|
|
|
|
#include "libavcodec/sinewin_fixed_tablegen.h"
|
2024-03-16 01:12:56 +02:00
|
|
|
#include "libavcodec/kbdwin.h"
|
2024-03-16 03:43:33 +02:00
|
|
|
#include "libavcodec/cbrt_data.h"
|
2024-03-22 08:13:08 +02:00
|
|
|
#include "libavcodec/aacsbr.h"
|
2024-03-16 01:12:56 +02:00
|
|
|
|
|
|
|
DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME2(aac_kbd_long_1024))[1024];
|
|
|
|
DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME2(aac_kbd_short_128))[128];
|
|
|
|
DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME(aac_kbd_long_960))[960];
|
|
|
|
DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME(aac_kbd_short_120))[120];
|
|
|
|
|
|
|
|
static void init_tables_fixed_fn(void)
|
|
|
|
{
|
2024-03-16 05:03:12 +02:00
|
|
|
AAC_RENAME(ff_cbrt_tableinit)();
|
|
|
|
|
2024-03-16 01:12:56 +02:00
|
|
|
AAC_RENAME(ff_kbd_window_init)(AAC_RENAME2(aac_kbd_long_1024), 4.0, 1024);
|
|
|
|
AAC_RENAME(ff_kbd_window_init)(AAC_RENAME2(aac_kbd_short_128), 6.0, 128);
|
|
|
|
|
|
|
|
AAC_RENAME(ff_kbd_window_init)(AAC_RENAME(aac_kbd_long_960), 4.0, 960);
|
|
|
|
AAC_RENAME(ff_kbd_window_init)(AAC_RENAME(aac_kbd_short_120), 6.0, 120);
|
|
|
|
|
2024-03-22 08:13:08 +02:00
|
|
|
AAC_RENAME(ff_aac_sbr_init)();
|
|
|
|
|
2024-03-16 01:12:56 +02:00
|
|
|
init_sine_windows_fixed();
|
|
|
|
}
|
2024-03-14 05:52:28 +02:00
|
|
|
|
2024-03-16 07:05:45 +02:00
|
|
|
static int init_fixed(AACDecContext *ac)
|
2024-03-16 01:12:56 +02:00
|
|
|
{
|
|
|
|
static AVOnce init_fixed_once = AV_ONCE_INIT;
|
|
|
|
ff_thread_once(&init_fixed_once, init_tables_fixed_fn);
|
2024-03-16 07:05:45 +02:00
|
|
|
|
|
|
|
ac->fdsp = avpriv_alloc_fixed_dsp(ac->avctx->flags & AV_CODEC_FLAG_BITEXACT);
|
|
|
|
if (!ac->fdsp)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
|
|
|
return 0;
|
2024-03-16 01:12:56 +02:00
|
|
|
}
|
2024-03-14 05:52:28 +02:00
|
|
|
|
2024-03-16 05:17:30 +02:00
|
|
|
static const int cce_scale_fixed[8] = {
|
|
|
|
Q30(1.0), //2^(0/8)
|
|
|
|
Q30(1.0905077327), //2^(1/8)
|
|
|
|
Q30(1.1892071150), //2^(2/8)
|
|
|
|
Q30(1.2968395547), //2^(3/8)
|
|
|
|
Q30(1.4142135624), //2^(4/8)
|
|
|
|
Q30(1.5422108254), //2^(5/8)
|
|
|
|
Q30(1.6817928305), //2^(6/8)
|
|
|
|
Q30(1.8340080864), //2^(7/8)
|
|
|
|
};
|
|
|
|
|
2024-03-16 03:43:33 +02:00
|
|
|
/** Dequantization-related */
|
|
|
|
#include "aacdec_fixed_dequant.h"
|
|
|
|
|
2024-03-16 05:17:30 +02:00
|
|
|
#include "aacdec_fixed_coupling.h"
|
2024-03-16 06:16:50 +02:00
|
|
|
#include "aacdec_fixed_prediction.h"
|
2024-03-13 22:53:49 +02:00
|
|
|
#include "aacdec_dsp_template.c"
|
2024-03-16 03:43:33 +02:00
|
|
|
#include "aacdec_proc_template.c"
|