Commit 4f46099b authored by Benoit Fouet's avatar Benoit Fouet

Use sign_extend().

On behalf of Jai.

Originally committed as revision 17759 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c7509fff
......@@ -23,6 +23,7 @@
#include "bitstream.h"
#include "dsputil.h"
#include "lpc.h"
#include "mathops.h"
#define DEFAULT_FRAME_SIZE 4096
#define DEFAULT_SAMPLE_SIZE 16
......@@ -253,8 +254,8 @@ static void alac_linear_predictor(AlacEncodeContext *s, int ch)
sum >>= lpc.lpc_quant;
sum += samples[0];
residual[i] = (samples[lpc.lpc_order+1] - sum) << (32 - s->write_sample_size) >>
(32 - s->write_sample_size);
residual[i] = sign_extend(samples[lpc.lpc_order+1] - sum,
s->write_sample_size);
res_val = residual[i];
if(res_val) {
......
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