diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-04-27 17:33:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-27 17:57:50 +0200 |
commit | 6fe2afaa71270c8030c4afde72608668e42fed67 (patch) | |
tree | f83092d6657756424cbaa0133c3d334df58fc492 | |
parent | 4a7b50679db3a3c902d459745f2f1f622e27eab6 (diff) | |
download | ffmpeg-6fe2afaa71270c8030c4afde72608668e42fed67.tar.gz |
Adapt libavcodec/tableprint_vlc.h to the av_dlog -> ff_dlog change.
This fixes the build with --enable-hardcoded-tables that was broken since [8f7b022c8c2f40bf8ddfd90778a4c91424d3a8e5].
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/tableprint_vlc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/tableprint_vlc.h b/libavcodec/tableprint_vlc.h index aa4c82bbbf..7f46f2e7d5 100644 --- a/libavcodec/tableprint_vlc.h +++ b/libavcodec/tableprint_vlc.h @@ -26,7 +26,7 @@ #define FFMPEG_CONFIG_H #define AVUTIL_LOG_H #define av_log(a, ...) -#define av_dlog(a, ...) +#define ff_dlog(a, ...) #define AVUTIL_MEM_H #define av_malloc(s) NULL #define av_malloc_array(a, b) NULL @@ -34,6 +34,7 @@ #define av_free(p) #define av_freep(p) #define AVCODEC_AVCODEC_H +#define AVCODEC_INTERNAL_H #include "tableprint.h" #include "get_bits.h" #include "mathtables.c" |