Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] avcodec/adpcm: Fix the decoding error caused by incorrect (PR #21075)
@ 2025-12-02  1:49 tangsha via ffmpeg-devel
  0 siblings, 0 replies; only message in thread
From: tangsha via ffmpeg-devel @ 2025-12-02  1:49 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: tangsha

PR #21075 opened by tangsha
URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21075
Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21075.patch

The this patch is based on the latest master branch (not a release branch) – I’ve synced with the mainline before submitting the changes.
Attached is error.wav – this is the problematic audio file that gets fixed by the patch. Prior to the change, decoding this file resulted in [briefly describe the issue, e.g., "distorted audio, incorrect step index calculations, or data misalignment"]; after applying the patch, the audio decodes correctly.
 
Regarding the skipped byte: Based on analyzing the ADPCM format of this sample, the skipped byte is padding/reserved space (not part of the step_index field). The original code incorrectly read this padding byte as part of a 16-bit step_index, leading to the decoding error in error.wav.


From ec27e082181600f31c1aaad3e565853cfa81daaa Mon Sep 17 00:00:00 2001
From: tangsha <tangsha@kylinos.cn>
Date: Mon, 1 Dec 2025 16:15:35 +0800
Subject: [PATCH] avcodec/adpcm: Fix the decoding error caused by incorrect

---
 libavcodec/adpcm.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 72fbb841a4..7aac254a4c 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1512,7 +1512,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx, AVFrame *frame,
             ADPCMChannelStatus *cs = &c->status[i];
             cs->predictor = samples_p[i][0] = sign_extend(bytestream2_get_le16u(&gb), 16);
 
-            cs->step_index = sign_extend(bytestream2_get_le16u(&gb), 16);
+	    cs->step_index = bytestream2_get_byteu(&gb);
+	    bytestream2_skip(&gb, sizeof(uint8_t));
             if (cs->step_index > 88u){
                 av_log(avctx, AV_LOG_ERROR, "ERROR: step_index[%d] = %i\n",
                        i, cs->step_index);
-- 
2.49.1

_______________________________________________
ffmpeg-devel mailing list -- ffmpeg-devel@ffmpeg.org
To unsubscribe send an email to ffmpeg-devel-leave@ffmpeg.org

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2025-12-02  1:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-02  1:49 [FFmpeg-devel] [PATCH] avcodec/adpcm: Fix the decoding error caused by incorrect (PR #21075) tangsha via ffmpeg-devel

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git