winemp3.acm: Remove superfluous pointer casts.

This commit is contained in:
Michael Stefaniuc 2009-02-27 10:52:30 +01:00 committed by Alexandre Julliard
parent bc48bd9577
commit 8dfbaf6703

View file

@ -146,12 +146,12 @@ int do_layer1(struct frame *fr,unsigned char *pcm_sample,int *pcm_point)
I_step_two(fraction,balloc,scale_index,fr);
if(single >= 0) {
clip += synth_1to1_mono(fr->mp,(real*)fraction[single],pcm_sample,pcm_point);
clip += synth_1to1_mono(fr->mp,fraction[single],pcm_sample,pcm_point);
}
else {
int p1 = *pcm_point;
clip += synth_1to1(fr->mp,(real*)fraction[0],0,pcm_sample,&p1);
clip += synth_1to1(fr->mp,(real*)fraction[1],1,pcm_sample,pcm_point);
clip += synth_1to1(fr->mp,fraction[0],0,pcm_sample,&p1);
clip += synth_1to1(fr->mp,fraction[1],1,pcm_sample,pcm_point);
}
}