You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Fix out-of-tree builds with --enable-hardcoded-tables
Originally committed as revision 20404 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -37,7 +37,7 @@ int main(int argc, char *argv[])
|
|||||||
double (*func)(double) = do_sin ? sin : cos;
|
double (*func)(double) = do_sin ? sin : cos;
|
||||||
|
|
||||||
printf("/* This file was generated by libavcodec/costablegen */\n");
|
printf("/* This file was generated by libavcodec/costablegen */\n");
|
||||||
printf("#include \"dsputil.h\"\n");
|
printf("#include \"libavcodec/dsputil.h\"\n");
|
||||||
for (i = 4; i <= BITS; i++) {
|
for (i = 4; i <= BITS; i++) {
|
||||||
int m = 1 << i;
|
int m = 1 << i;
|
||||||
double freq = 2*M_PI/m;
|
double freq = 2*M_PI/m;
|
||||||
|
@@ -31,7 +31,7 @@
|
|||||||
#define TABLE_4_3_SIZE (8191 + 16)*4
|
#define TABLE_4_3_SIZE (8191 + 16)*4
|
||||||
#if CONFIG_HARDCODED_TABLES
|
#if CONFIG_HARDCODED_TABLES
|
||||||
#define mpegaudio_tableinit()
|
#define mpegaudio_tableinit()
|
||||||
#include "mpegaudio_tables.h"
|
#include "libavcodec/mpegaudio_tables.h"
|
||||||
#else
|
#else
|
||||||
static int8_t table_4_3_exp[TABLE_4_3_SIZE];
|
static int8_t table_4_3_exp[TABLE_4_3_SIZE];
|
||||||
static uint32_t table_4_3_value[TABLE_4_3_SIZE];
|
static uint32_t table_4_3_value[TABLE_4_3_SIZE];
|
||||||
|
Reference in New Issue
Block a user