mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
avcodec/aacps_fixed_tablegen: Don't include config.h
It is only valid for the target, not the host and therefore it must not be included when building the tables when hardcoded tables are enabled. Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
ff0618b5c4
commit
e742bf3421
@ -36,8 +36,12 @@
|
|||||||
#else
|
#else
|
||||||
#include "libavutil/common.h"
|
#include "libavutil/common.h"
|
||||||
#include "libavutil/mathematics.h"
|
#include "libavutil/mathematics.h"
|
||||||
#include "libavutil/mem.h"
|
#ifdef BUILD_TABLES
|
||||||
|
#undef DECLARE_ALIGNED
|
||||||
|
#define DECLARE_ALIGNED(align, type, variable) type variable
|
||||||
|
#else
|
||||||
#include "libavutil/mem_internal.h"
|
#include "libavutil/mem_internal.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "aac_defines.h"
|
#include "aac_defines.h"
|
||||||
#include "libavutil/softfloat.h"
|
#include "libavutil/softfloat.h"
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#define BUILD_TABLES
|
||||||
#define CONFIG_HARDCODED_TABLES 0
|
#define CONFIG_HARDCODED_TABLES 0
|
||||||
#include "aac_defines.h"
|
#include "aac_defines.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user