diff options
author | Djordje Pesut <djordje.pesut@imgtec.com> | 2015-07-20 13:36:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-22 21:51:28 +0200 |
commit | 5fd81cf6f082ed00878a5898f47550cb1646d219 (patch) | |
tree | 307a630e3bedb5a186367f08377f5ea3d22b854a /libavcodec/aacps_float.c | |
parent | 631496e057a203e656d0a952acecf217a83bb26b (diff) | |
download | ffmpeg-5fd81cf6f082ed00878a5898f47550cb1646d219.tar.gz |
avcodec: Implementation of AAC_fixed_decoder (PS-module)
Add fixed point implementation.
Signed-off-by: Nedeljko Babic <nedeljko.babic@imgtec.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/aacps_float.c')
-rw-r--r-- | libavcodec/aacps_float.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libavcodec/aacps_float.c b/libavcodec/aacps_float.c new file mode 100644 index 0000000000..73259c10fb --- /dev/null +++ b/libavcodec/aacps_float.c @@ -0,0 +1,24 @@ +/* + * MPEG-4 Parametric Stereo decoding functions + * Copyright (c) 2010 Alex Converse <alex.converse@gmail.com> + * + * 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 0 + +#include "aacps.c" |