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
6d7e1e73
Commit
6d7e1e73
authored
Feb 02, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemp3.acm: Declare some items static.
parent
6ef74bc9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
layer1.c
dlls/winemp3.acm/layer1.c
+3
-3
layer2.c
dlls/winemp3.acm/layer2.c
+3
-2
layer3.c
dlls/winemp3.acm/layer3.c
+2
-2
No files found.
dlls/winemp3.acm/layer1.c
View file @
6d7e1e73
...
...
@@ -24,7 +24,7 @@
#include "mpg123.h"
void
I_step_one
(
unsigned
int
balloc
[],
unsigned
int
scale_index
[
2
][
SBLIMIT
],
struct
frame
*
fr
)
static
void
I_step_one
(
unsigned
int
balloc
[],
unsigned
int
scale_index
[
2
][
SBLIMIT
],
struct
frame
*
fr
)
{
unsigned
int
*
ba
=
balloc
;
unsigned
int
*
sca
=
(
unsigned
int
*
)
scale_index
;
...
...
@@ -64,8 +64,8 @@ void I_step_one(unsigned int balloc[], unsigned int scale_index[2][SBLIMIT],stru
}
}
void
I_step_two
(
real
fraction
[
2
][
SBLIMIT
],
unsigned
int
balloc
[
2
*
SBLIMIT
],
unsigned
int
scale_index
[
2
][
SBLIMIT
],
struct
frame
*
fr
)
static
void
I_step_two
(
real
fraction
[
2
][
SBLIMIT
],
unsigned
int
balloc
[
2
*
SBLIMIT
],
unsigned
int
scale_index
[
2
][
SBLIMIT
],
struct
frame
*
fr
)
{
int
i
,
n
;
int
smpb
[
2
*
SBLIMIT
];
/* values: 0-65535 */
...
...
dlls/winemp3.acm/layer2.c
View file @
6d7e1e73
...
...
@@ -71,7 +71,7 @@ void init_layer2(void)
}
void
II_step_one
(
unsigned
int
*
bit_alloc
,
int
*
scale
,
struct
frame
*
fr
)
static
void
II_step_one
(
unsigned
int
*
bit_alloc
,
int
*
scale
,
struct
frame
*
fr
)
{
int
stereo
=
fr
->
stereo
-
1
;
int
sblimit
=
fr
->
II_sblimit
;
...
...
@@ -144,7 +144,8 @@ void II_step_one(unsigned int *bit_alloc,int *scale,struct frame *fr)
}
void
II_step_two
(
unsigned
int
*
bit_alloc
,
real
fraction
[
2
][
4
][
SBLIMIT
],
int
*
scale
,
struct
frame
*
fr
,
int
x1
)
static
void
II_step_two
(
unsigned
int
*
bit_alloc
,
real
fraction
[
2
][
4
][
SBLIMIT
],
int
*
scale
,
struct
frame
*
fr
,
int
x1
)
{
int
i
,
j
,
k
,
ba
;
int
stereo
=
fr
->
stereo
;
...
...
dlls/winemp3.acm/layer3.c
View file @
6d7e1e73
...
...
@@ -48,8 +48,8 @@ struct bandInfoStruct {
short
shortDiff
[
13
];
};
int
longLimit
[
9
][
23
];
int
shortLimit
[
9
][
14
];
static
int
longLimit
[
9
][
23
];
static
int
shortLimit
[
9
][
14
];
static
const
struct
bandInfoStruct
bandInfo
[
9
]
=
{
...
...
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