Commit 2211c762 authored by Michael Niedermayer's avatar Michael Niedermayer

smacker: remove av_clip_int16()

Fixes Ticket2425
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2187600f
......@@ -688,7 +688,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data,
}
val |= h[3].values[res] << 8;
pred[1] += sign_extend(val, 16);
*samples++ = av_clip_int16(pred[1]);
*samples++ = pred[1];
} else {
if(vlc[0].table)
res = get_vlc2(&gb, vlc[0].table, SMKTREE_BITS, 3);
......@@ -709,7 +709,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data,
}
val |= h[1].values[res] << 8;
pred[0] += sign_extend(val, 16);
*samples++ = av_clip_int16(pred[0]);
*samples++ = pred[0];
}
}
} else { //8-bit data
......
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