g726: wrap the decoder functions with a CONFIG_ADPCM_G726_DECODER check

This commit is contained in:
Justin Ruggles
2011-10-27 20:51:40 -04:00
parent 437c11ca16
commit 7abb73d4ba

View File

@@ -380,6 +380,7 @@ AVCodec ff_adpcm_g726_encoder = {
}; };
#endif #endif
#if CONFIG_ADPCM_G726_DECODER
static av_cold int g726_decode_init(AVCodecContext *avctx) static av_cold int g726_decode_init(AVCodecContext *avctx)
{ {
G726Context* c = avctx->priv_data; G726Context* c = avctx->priv_data;
@@ -448,3 +449,4 @@ AVCodec ff_adpcm_g726_decoder = {
.decode = g726_decode_frame, .decode = g726_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"), .long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"),
}; };
#endif