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
ce84a438
Commit
ce84a438
authored
Feb 14, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imaadp32.acm: Constify some variables.
parent
d517b54c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
imaadp32.c
dlls/imaadp32.acm/imaadp32.c
+4
-4
No files found.
dlls/imaadp32.acm/imaadp32.c
View file @
ce84a438
...
...
@@ -73,7 +73,7 @@ typedef struct
int
rate
;
}
Format
;
static
Format
PCM_Formats
[]
=
static
const
Format
PCM_Formats
[]
=
{
{
1
,
8
,
8000
},
{
2
,
8
,
8000
},
{
1
,
16
,
8000
},
{
2
,
16
,
8000
},
{
1
,
8
,
11025
},
{
2
,
8
,
11025
},
{
1
,
16
,
11025
},
{
2
,
16
,
11025
},
...
...
@@ -81,7 +81,7 @@ static Format PCM_Formats[] =
{
1
,
8
,
44100
},
{
2
,
8
,
44100
},
{
1
,
16
,
44100
},
{
2
,
16
,
44100
},
};
static
Format
ADPCM_Formats
[]
=
static
const
Format
ADPCM_Formats
[]
=
{
{
1
,
4
,
8000
},
{
2
,
4
,
8000
},
{
1
,
4
,
11025
},
{
2
,
4
,
11025
},
{
1
,
4
,
22050
},
{
2
,
4
,
22050
},
{
1
,
4
,
44100
},
{
2
,
4
,
44100
},
...
...
@@ -95,8 +95,8 @@ static Format ADPCM_Formats[] =
*/
static
DWORD
ADPCM_GetFormatIndex
(
LPWAVEFORMATEX
wfx
)
{
int
i
,
hi
;
Format
*
fmts
;
int
i
,
hi
;
const
Format
*
fmts
;
switch
(
wfx
->
wFormatTag
)
{
...
...
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