Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-04-13 20:11:36 +0400
committerMichael Niedermayer <michaelni@gmx.at>2008-04-13 20:11:36 +0400
commit8c2a4ddca39a1ef6ca1cfe0bd45de06ae57ffc68 (patch)
treee928d36d9ff13426ce89954cf31a6765f1bf4b81 /libavcodec/adpcm.c
parent7ce76ee433192a0413a1f542c578e18957ec8b83 (diff)
ILP64 fixes (untested)
Originally committed as revision 12807 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 88450fd5be..3a4a2d062b 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1215,8 +1215,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
src++;
for (count2 = 0; count2 < 28; count2++) {
- next_left_sample = (((*src & 0xF0) << 24) >> shift_left);
- next_right_sample = (((*src & 0x0F) << 28) >> shift_right);
+ next_left_sample = (int32_t)((*src & 0xF0) << 24) >> shift_left;
+ next_right_sample = (int32_t)((*src & 0x0F) << 28) >> shift_right;
src++;
next_left_sample = (next_left_sample +
@@ -1289,9 +1289,9 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
for (count2=0; count2<28; count2++) {
if (count2 & 1)
- next_sample = ((*srcC++ & 0x0F) << 28) >> shift;
+ next_sample = (int32_t)((*srcC++ & 0x0F) << 28) >> shift;
else
- next_sample = ((*srcC & 0xF0) << 24) >> shift;
+ next_sample = (int32_t)((*srcC & 0xF0) << 24) >> shift;
next_sample += (current_sample * coeff1) +
(previous_sample * coeff2);
@@ -1336,7 +1336,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
s = &samples[m*avctx->channels + channel];
for (n=0; n<4; n++, src++, s+=32*avctx->channels) {
for (s2=s, i=0; i<8; i+=4, s2+=avctx->channels) {
- int level = ((*src & (0xF0>>i)) << (24+i)) >> shift[n];
+ int level = (int32_t)((*src & (0xF0>>i)) << (24+i)) >> shift[n];
int pred = s2[-1*avctx->channels] * coeff[0][n]
+ s2[-2*avctx->channels] * coeff[1][n];
s2[0] = av_clip_int16((level + pred + 0x80) >> 8);