summaryrefslogtreecommitdiff
path: root/libavcodec/speedhq.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-10 09:41:07 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-31 12:06:04 +0100
commiteea2638e9af9e65198d7002db5c3bd5a14b04bfc (patch)
tree3b0eee998c17bc61111e8db346b26ea45a44a819 /libavcodec/speedhq.c
parent8af82be946186921d8391eff3a82815d75b44b99 (diff)
configure, libavcodec/speedhq: Fix compiling SpeedHQ encoder
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/speedhq.c')
-rw-r--r--libavcodec/speedhq.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c
index 0c08894315..221a70b3e9 100644
--- a/libavcodec/speedhq.c
+++ b/libavcodec/speedhq.c
@@ -26,6 +26,7 @@
#define BITSTREAM_READER_LE
+#include "config.h"
#include "libavutil/attributes.h"
#include "avcodec.h"
@@ -140,6 +141,7 @@ RLTable ff_rl_speedhq = {
speedhq_level,
};
+#if CONFIG_SPEEDHQ_DECODER
/* NOTE: The first element is always 16, unscaled. */
static const uint8_t unscaled_quant_matrix[64] = {
16, 16, 19, 22, 26, 27, 29, 34,
@@ -656,3 +658,4 @@ AVCodec ff_speedhq_decoder = {
.decode = speedhq_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
};
+#endif /* CONFIG_SPEEDHQ_DECODER */