Mercurial > libavcodec.hg
comparison rdft.c @ 11370:4b3da727d832 libavcodec
Move FFT parts from dsputil.h to fft.h
author | mru |
---|---|
date | Sat, 06 Mar 2010 14:34:46 +0000 |
parents | 74b0c1a0851e |
children | 1cd8731bbe7f |
comparison
equal
deleted
inserted
replaced
11369:98970e51365a | 11370:4b3da727d832 |
---|---|
17 * You should have received a copy of the GNU Lesser General Public | 17 * You should have received a copy of the GNU Lesser General Public |
18 * License along with FFmpeg; if not, write to the Free Software | 18 * License along with FFmpeg; if not, write to the Free Software |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 */ | 20 */ |
21 #include <math.h> | 21 #include <math.h> |
22 #include "dsputil.h" | 22 #include "libavutil/mathematics.h" |
23 #include "fft.h" | |
23 | 24 |
24 /** | 25 /** |
25 * @file libavcodec/rdft.c | 26 * @file libavcodec/rdft.c |
26 * (Inverse) Real Discrete Fourier Transforms. | 27 * (Inverse) Real Discrete Fourier Transforms. |
27 */ | 28 */ |