comparison mdct.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 3d011a01a6a0
children 6f1697664bf2
comparison
equal deleted inserted replaced
11369:98970e51365a 11370:4b3da727d832
16 * 16 *
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 "dsputil.h" 21
22 #include "libavutil/mathematics.h"
23 #include "fft.h"
22 24
23 /** 25 /**
24 * @file libavcodec/mdct.c 26 * @file libavcodec/mdct.c
25 * MDCT/IMDCT transforms. 27 * MDCT/IMDCT transforms.
26 */ 28 */