Commit 8dfbaf67 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winemp3.acm: Remove superfluous pointer casts.

parent bc48bd95
......@@ -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);
}
}
......
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