avcodec/aacsbr: fix compilation with hardcoded tables

Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
pull/140/head
James Almer 10 years ago
parent eca84946ea
commit 651448a8a7
  1. 4
      libavcodec/aacsbr_fixed_tablegen.c
  2. 4
      libavcodec/aacsbr_tablegen.c

@ -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"

@ -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"

Loading…
Cancel
Save