diff options
author | Andriy Gelman <andriy.gelman@gmail.com> | 2020-06-20 14:31:53 -0400 |
---|---|---|
committer | Andriy Gelman <andriy.gelman@gmail.com> | 2020-06-20 23:20:27 -0400 |
commit | 536e5dfa73b0c5e87deb7f36d22dcc784b3570de (patch) | |
tree | f0ce739f2a92658ea8c2defaabddff1c9a94f2da | |
parent | 29ea4e1b3c511de0a406722bcfffa11604745451 (diff) | |
download | ffmpeg-536e5dfa73b0c5e87deb7f36d22dcc784b3570de.tar.gz |
avcodec/adpcmenc: remove forward declaration
Reviewed-by: Limin Wang <lance.lmwang@gmail.com>
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
-rw-r--r-- | libavcodec/adpcmenc.c | 2 |
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; |