Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-06-20 21:31:53 +0300
committerAndriy Gelman <andriy.gelman@gmail.com>2020-06-21 06:20:27 +0300
commit536e5dfa73b0c5e87deb7f36d22dcc784b3570de (patch)
treef0ce739f2a92658ea8c2defaabddff1c9a94f2da /libavcodec/adpcmenc.c
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/adpcmenc.c')
-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;