diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2021-02-18 13:47:13 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2021-04-28 11:13:43 +1000 |
commit | a859e57424ca0a00d17bdc034c52005c18184961 (patch) | |
tree | 1bbed5e5e65e544442ef51887c9d6fa99e6468ee /libavcodec/adpcm.c | |
parent | 9e13df3776da3a101e895e2840f6f23f5a6f74a0 (diff) | |
download | ffmpeg-a859e57424ca0a00d17bdc034c52005c18184961.tar.gz |
avcodec/adpcm_ima_apm: remove old extradata format
Was added in error very early on, passing in only the required fields.
Later, the muxer and demuxer were changed to pass the entire APMState
struct as extradata.
Technically a breaking change, but this was only around for a *very* short
time before it was updated,
Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 16e015b0f8..8d94cefa0e 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -2107,11 +2107,6 @@ static void adpcm_flush(AVCodecContext *avctx) c->status[0].step_index = av_clip(AV_RL32(avctx->extradata + 20), 0, 88); c->status[1].predictor = av_clip_intp2(AV_RL32(avctx->extradata + 4), 18); c->status[1].step_index = av_clip(AV_RL32(avctx->extradata + 8), 0, 88); - } else if (avctx->extradata_size >= 16) { - c->status[0].predictor = av_clip_intp2(AV_RL32(avctx->extradata + 0), 18); - c->status[0].step_index = av_clip(AV_RL32(avctx->extradata + 4), 0, 88); - c->status[1].predictor = av_clip_intp2(AV_RL32(avctx->extradata + 8), 18); - c->status[1].step_index = av_clip(AV_RL32(avctx->extradata + 12), 0, 88); } } break; |