mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
adpcmenc: ensure calls to adpcm_ima_compress_sample() are in the right order
Should fix fate-acodec-adpcm-ima_wav with several compilers.
This commit is contained in:
parent
62ae37decd
commit
5364327186
@ -537,8 +537,9 @@ static int adpcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
|||||||
ADPCMChannelStatus *status = &c->status[ch];
|
ADPCMChannelStatus *status = &c->status[ch];
|
||||||
const int16_t *smp = &samples_p[ch][1 + i * 8];
|
const int16_t *smp = &samples_p[ch][1 + i * 8];
|
||||||
for (j = 0; j < 8; j += 2) {
|
for (j = 0; j < 8; j += 2) {
|
||||||
*dst++ = adpcm_ima_compress_sample(status, smp[j ]) |
|
uint8_t v = adpcm_ima_compress_sample(status, smp[j ]);
|
||||||
(adpcm_ima_compress_sample(status, smp[j + 1]) << 4);
|
v |= adpcm_ima_compress_sample(status, smp[j + 1]) << 4;
|
||||||
|
*dst++ = v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user