Rename libcelt/static_modes_(fixed|float).c to .h to better reflect

their usage and to make any toolchain that doesn't like to #include
.c file happy.
This commit is contained in:
Gregory Maxwell 2011-08-02 17:13:06 -04:00
parent 2852cb1486
commit 63fd63d665
6 changed files with 6 additions and 9 deletions

View file

@ -63,9 +63,9 @@ static const unsigned char band_allocation[] = {
#ifndef CUSTOM_MODES_ONLY
#ifdef FIXED_POINT
#include "static_modes_fixed.c"
#include "static_modes_fixed.h"
#else
#include "static_modes_float.c"
#include "static_modes_float.h"
#endif
#endif /* CUSTOM_MODES_ONLY */