From 5fd81cf6f082ed00878a5898f47550cb1646d219 Mon Sep 17 00:00:00 2001 From: Djordje Pesut Date: Mon, 20 Jul 2015 13:36:19 +0200 Subject: avcodec: Implementation of AAC_fixed_decoder (PS-module) Add fixed point implementation. Signed-off-by: Nedeljko Babic Signed-off-by: Michael Niedermayer --- libavcodec/aacps_fixed.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libavcodec/aacps_fixed.c (limited to 'libavcodec/aacps_fixed.c') diff --git a/libavcodec/aacps_fixed.c b/libavcodec/aacps_fixed.c new file mode 100644 index 0000000000..46af21339a --- /dev/null +++ b/libavcodec/aacps_fixed.c @@ -0,0 +1,24 @@ +/* + * MPEG-4 Parametric Stereo decoding functions + * Copyright (c) 2010 Alex Converse + * + * 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 + +#include "aacps.c" -- cgit v1.2.3