diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-28 21:24:14 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-10-01 01:02:53 +0200 |
commit | 7d1401ed02040f6b4ecc429c3b21c96ec86890e9 (patch) | |
tree | 7ed202b1b9bbcb4450b5b185a8d5233f520f6bfa | |
parent | b2f5899ec2062f209b9a4d4277910678c6d55f79 (diff) | |
download | ffmpeg-7d1401ed02040f6b4ecc429c3b21c96ec86890e9.tar.gz |
avcodec/sipr: Remove write-only AVCodecContext*
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/sipr.c | 1 | ||||
-rw-r--r-- | libavcodec/sipr.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/sipr.c b/libavcodec/sipr.c index 692b59b3e8..3ddc579f09 100644 --- a/libavcodec/sipr.c +++ b/libavcodec/sipr.c @@ -532,7 +532,6 @@ static int sipr_decode_frame(AVCodecContext *avctx, AVFrame *frame, int subframe_size = ctx->mode == MODE_16k ? L_SUBFR_16k : SUBFR_SIZE; int i, ret; - ctx->avctx = avctx; if (avpkt->size < (mode_par->bits_per_frame >> 3)) { av_log(avctx, AV_LOG_ERROR, "Error processing packet: packet size (%d) too small\n", diff --git a/libavcodec/sipr.h b/libavcodec/sipr.h index e1ef35d658..e7073987ed 100644 --- a/libavcodec/sipr.h +++ b/libavcodec/sipr.h @@ -24,7 +24,6 @@ #ifndef AVCODEC_SIPR_H #define AVCODEC_SIPR_H -#include "avcodec.h" #include "acelp_pitch_delay.h" #include "libavutil/mem_internal.h" @@ -63,8 +62,6 @@ typedef struct SiprParameters { } SiprParameters; typedef struct SiprContext { - AVCodecContext *avctx; - SiprMode mode; float past_pitch_gain; |