1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-03 01:39:58 +02:00

paf: avoid using expressions with sideeffects in AV_R*

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-09-04 21:25:39 +02:00
parent daa3c28895
commit 8c6d651fc3

View File

@ -418,7 +418,8 @@ static int paf_aud_decode(AVCodecContext *avctx, void *data,
t = buf + 256 * sizeof(uint16_t);
for (j = 0; j < PAF_SOUND_SAMPLES; j++) {
for (k = 0; k < 2; k++) {
*output_samples++ = AV_RL16(buf + *t++ * 2);
*output_samples++ = AV_RL16(buf + *t * 2);
t++;
}
}
buf += PAF_SOUND_FRAME_SIZE;