1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-06-19 19:03:00 +02:00

avcodec/aacsbr: fix compilation with hardcoded tables

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2015-07-20 16:48:07 -03:00
parent eca84946ea
commit 651448a8a7
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -21,9 +21,11 @@
*/
#include <stdlib.h>
#include "libavutil/internal.h"
#include "libavutil/common.h"
#undef CONFIG_HARDCODED_TABLES
#define CONFIG_HARDCODED_TABLES 0
#define USE_FIXED 1
#include "libavutil/common.h"
#include "aacsbr_fixed_tablegen.h"
#include "tableprint.h"
+3 -1
View File
@@ -21,9 +21,11 @@
*/
#include <stdlib.h>
#include "libavutil/internal.h"
#include "libavutil/common.h"
#undef CONFIG_HARDCODED_TABLES
#define CONFIG_HARDCODED_TABLES 0
#define USE_FIXED 0
#include "libavutil/common.h"
#include "aacsbr_tablegen.h"
#include "tableprint.h"