Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
8dfbaf67
Commit
8dfbaf67
authored
Feb 27, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemp3.acm: Remove superfluous pointer casts.
parent
bc48bd95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
layer1.c
dlls/winemp3.acm/layer1.c
+3
-3
No files found.
dlls/winemp3.acm/layer1.c
View file @
8dfbaf67
...
...
@@ -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
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment