This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/5.1 in repository ffmpeg.
commit 795002aa0604b62e659ab34dc5c14d15f4c98a72 Author: Priyanshu Thapliyal <[email protected]> AuthorDate: Fri Mar 27 14:22:45 2026 +0530 Commit: Michael Niedermayer <[email protected]> CommitDate: Tue May 5 15:21:14 2026 +0200 avcodec/alsdec: preserve full float value in zero-truncated samples Signed-off-by: Priyanshu Thapliyal <[email protected]> (cherry picked from commit d1bcaab230917250455bc66cefa05b7e77a651ef) Signed-off-by: Michael Niedermayer <[email protected]> --- libavcodec/alsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 7aa020d4c9..a2013b62a5 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -1629,7 +1629,7 @@ static int read_diff_float_data(ALSDecContext *ctx, unsigned int ra_frame) { tmp_32 = (sign << 31) | ((e + EXP_BIAS) << 23) | (mantissa); ctx->raw_samples[c][i] = tmp_32; } else { - ctx->raw_samples[c][i] = raw_mantissa[c][i] & 0x007fffffUL; + ctx->raw_samples[c][i] = raw_mantissa[c][i]; } } align_get_bits(gb); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
