summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-06-20 14:31:53 -0400
committerAndriy Gelman <andriy.gelman@gmail.com>2020-06-20 23:20:27 -0400
commit536e5dfa73b0c5e87deb7f36d22dcc784b3570de (patch)
treef0ce739f2a92658ea8c2defaabddff1c9a94f2da /libavcodec
parent29ea4e1b3c511de0a406722bcfffa11604745451 (diff)
avcodec/adpcmenc: remove forward declaration
Reviewed-by: Limin Wang <lance.lmwang@gmail.com> Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/adpcmenc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c
index 1fe1aef6f5..1e94ef4047 100644
--- a/libavcodec/adpcmenc.c
+++ b/libavcodec/adpcmenc.c
@@ -58,8 +58,6 @@ typedef struct ADPCMEncodeContext {
#define FREEZE_INTERVAL 128
-static av_cold int adpcm_encode_close(AVCodecContext *avctx);
-
static av_cold int adpcm_encode_init(AVCodecContext *avctx)
{
ADPCMEncodeContext *s = avctx->priv_data;