Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
c784eacf
Commit
c784eacf
authored
Dec 02, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Dec 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemp3.acm: Sign-compare warnings fix.
parent
3e8f6538
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
layer3.c
dlls/winemp3.acm/layer3.c
+3
-3
No files found.
dlls/winemp3.acm/layer3.c
View file @
c784eacf
...
...
@@ -1837,7 +1837,7 @@ static void III_hybrid(real fsIn[SBLIMIT][SSLIMIT],real tsOut[SSLIMIT][SBLIMIT],
int
*
blc
=
mp
->
hybrid_blc
;
real
*
rawout1
,
*
rawout2
;
int
bt
;
int
sb
=
0
;
unsigned
int
sb
=
0
;
{
int
b
=
blc
[
ch
];
...
...
@@ -1986,7 +1986,7 @@ int do_layer3(struct frame *fr,unsigned char *pcm_sample,int *pcm_point)
switch
(
single
)
{
case
3
:
{
register
int
i
;
register
unsigned
int
i
;
register
real
*
in0
=
(
real
*
)
hybridIn
[
0
],
*
in1
=
(
real
*
)
hybridIn
[
1
];
for
(
i
=
0
;
i
<
SSLIMIT
*
gr_info
->
maxb
;
i
++
,
in0
++
)
*
in0
=
(
*
in0
+
*
in1
++
);
/* *0.5 done by pow-scale */
...
...
@@ -1994,7 +1994,7 @@ int do_layer3(struct frame *fr,unsigned char *pcm_sample,int *pcm_point)
break
;
case
1
:
{
register
int
i
;
register
unsigned
int
i
;
register
real
*
in0
=
(
real
*
)
hybridIn
[
0
],
*
in1
=
(
real
*
)
hybridIn
[
1
];
for
(
i
=
0
;
i
<
SSLIMIT
*
gr_info
->
maxb
;
i
++
)
*
in0
++
=
*
in1
++
;
...
...
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