diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-22 18:26:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-22 18:26:38 +0000 |
commit | 65e4c8c919c63b947b157bdb8f141685b6553fba (patch) | |
tree | 31e406da0e96c9e9547cb153907a9a2e35bdc658 /libavcodec/faandct.h | |
parent | 9d9e31722ad6dda86da0ccb7eb72004c99057274 (diff) | |
download | ffmpeg-65e4c8c919c63b947b157bdb8f141685b6553fba.tar.gz |
floating point AAN DCT
Originally committed as revision 2415 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/faandct.h')
-rw-r--r-- | libavcodec/faandct.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libavcodec/faandct.h b/libavcodec/faandct.h new file mode 100644 index 0000000000..cf6f128f15 --- /dev/null +++ b/libavcodec/faandct.h @@ -0,0 +1,28 @@ +/* + * Floating point AAN DCT + * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at> + * + * This library 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 of the License, or (at your option) any later version. + * + * This library 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 this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +/** + * @file faandct.h + * @brief + * Floating point AAN DCT + * @author Michael Niedermayer <michaelni@gmx.at> + */ + +void ff_faandct(DCTELEM * data); |