Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-23 02:00:13 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-23 15:43:52 +0300
commit5be809fed905cc8aebaa20a10548a8341f3d6425 (patch)
treee125fa4e14d3b2828fe579cf1f2314c3e20e7069 /libavcodec/tableprint_vlc.h
parent69aa2488fc1b7c208f1b94966439b1cd225239c4 (diff)
avcodec/tableprint_vlc: Fix building with hardcoded tables
This has been broken in 25c8507818d8559a6654a5b30a0f8aae11a48181, because the hacks for headers that are incompatible with building for the host in libavcodec/tableprint_vlc.h have not been adjusted. Moving AV_INPUT_BUFFER_PADDING_SIZE to defs.h which is valid for both the target as well as the host allowed to remove some of the hacks. Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/tableprint_vlc.h')
-rw-r--r--libavcodec/tableprint_vlc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/tableprint_vlc.h b/libavcodec/tableprint_vlc.h
index b3ff36562b..0cbd7a9d2b 100644
--- a/libavcodec/tableprint_vlc.h
+++ b/libavcodec/tableprint_vlc.h
@@ -33,9 +33,7 @@
#define av_realloc_f(p, o, n) NULL
#define av_free(p) while(0)
#define av_freep(p) while(0)
-#define AVCODEC_AVCODEC_H
-#define AVCODEC_INTERNAL_H
-#define AV_INPUT_BUFFER_PADDING_SIZE 64 // the value does not matter for this
+#define AVUTIL_INTERNAL_H
#define avpriv_request_sample(...)
#include "tableprint.h"
#include "get_bits.h"