comparison rdft.c @ 11444:6f1697664bf2 libavcodec

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents 4c7afa50df6f
children 1382cfff33bb
comparison
equal deleted inserted replaced
11443:361a5fcb4393 11444:6f1697664bf2
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 <stdlib.h>
21 #include <math.h> 22 #include <math.h>
22 #include "libavutil/mathematics.h" 23 #include "libavutil/mathematics.h"
23 #include "fft.h" 24 #include "fft.h"
24 25
25 /** 26 /**