summaryrefslogtreecommitdiff
path: root/libavcodec/g726.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/g726.c')
-rw-r--r--libavcodec/g726.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/g726.c b/libavcodec/g726.c
index 2a60a926cd..14ce545017 100644
--- a/libavcodec/g726.c
+++ b/libavcodec/g726.c
@@ -380,6 +380,7 @@ AVCodec ff_adpcm_g726_encoder = {
};
#endif
+#if CONFIG_ADPCM_G726_DECODER
static av_cold int g726_decode_init(AVCodecContext *avctx)
{
G726Context* c = avctx->priv_data;
@@ -448,3 +449,4 @@ AVCodec ff_adpcm_g726_decoder = {
.decode = g726_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"),
};
+#endif