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
14e2cd90
Commit
14e2cd90
authored
Dec 02, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemp3.acm: Make some variables static.
parent
e01ea707
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
common.c
dlls/winemp3.acm/common.c
+3
-3
mpg123.h
dlls/winemp3.acm/mpg123.h
+0
-3
No files found.
dlls/winemp3.acm/common.c
View file @
14e2cd90
...
...
@@ -32,7 +32,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mpeg3
);
const
struct
parameter
param
=
{
1
,
1
,
0
,
0
};
static
const
struct
parameter
param
=
{
1
,
1
,
0
,
0
};
static
const
int
tabsel_123
[
2
][
3
][
16
]
=
{
{
{
0
,
32
,
64
,
96
,
128
,
160
,
192
,
224
,
256
,
288
,
320
,
352
,
384
,
416
,
448
,},
...
...
@@ -44,7 +44,7 @@ static const int tabsel_123[2][3][16] = {
{
0
,
8
,
16
,
24
,
32
,
40
,
48
,
56
,
64
,
80
,
96
,
112
,
128
,
144
,
160
,}
}
};
const
long
freqs
[
9
]
=
{
44100
,
48000
,
32000
,
static
const
long
freqs
[
9
]
=
{
44100
,
48000
,
32000
,
22050
,
24000
,
16000
,
11025
,
12000
,
8000
};
...
...
@@ -56,7 +56,7 @@ int pcm_point = 0;
#define HDRCMPMASK 0xfffffd00
int
head_check
(
unsigned
long
head
)
static
int
head_check
(
unsigned
long
head
)
{
if
(
(
head
&
0xffe00000
)
!=
0xffe00000
)
return
FALSE
;
...
...
dlls/winemp3.acm/mpg123.h
View file @
14e2cd90
...
...
@@ -161,9 +161,6 @@ extern void make_decode_tables(long scale);
extern
void
dct64
(
real
*
,
real
*
,
real
*
);
extern
unsigned
char
*
conv16to8
;
extern
const
long
freqs
[
9
];
extern
real
muls
[
27
][
64
];
extern
real
decwin
[
512
+
32
];
extern
real
*
pnts
[
5
];
extern
const
struct
parameter
param
;
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