Commit 8aea2f05 authored by Michael Niedermayer's avatar Michael Niedermayer

alacenc: Fix missing sign_extend()

Possibly fixes Ticket2497
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d3c4ea8b
......@@ -274,7 +274,7 @@ static void alac_linear_predictor(AlacEncodeContext *s, int ch)
// generate warm-up samples
residual[0] = samples[0];
for (i = 1; i <= lpc.lpc_order; i++)
residual[i] = samples[i] - samples[i-1];
residual[i] = sign_extend(samples[i] - samples[i-1], s->write_sample_size);
// perform lpc on remaining samples
for (i = lpc.lpc_order + 1; i < s->frame_size; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment