diff --git a/src/libavcodec/lavc_common.c b/src/libavcodec/lavc_common.c index 8c9a26712..b1156eed1 100644 --- a/src/libavcodec/lavc_common.c +++ b/src/libavcodec/lavc_common.c @@ -380,6 +380,7 @@ avc_get_supported_pix_fmts(const AVCodecContext *ctx, const AVCodec *codec) #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(61, 13, 100) return avc_get_supported_config(ctx, codec, AV_CODEC_CONFIG_PIX_FORMAT); #else + (void) ctx; return codec->pix_fmts; #endif } @@ -390,7 +391,8 @@ avc_get_supported_sample_fmts(const AVCodecContext *ctx, const AVCodec *codec) #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(61, 13, 100) return avc_get_supported_config(ctx, codec, AV_CODEC_CONFIG_SAMPLE_FORMAT); #else - return codec->pix_fmts; + (void) ctx; + return codec->sample_fmts; #endif } ///< @copydoc avc_get_supported_config @@ -399,6 +401,7 @@ const int *avc_get_supported_sample_rates(const AVCodecContext *ctx, const AVCod #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(61, 13, 100) return avc_get_supported_config(ctx, codec, AV_CODEC_CONFIG_SAMPLE_RATE); #else + (void) ctx; return codec->supported_samplerates; #endif }