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
08dd823c
Commit
08dd823c
authored
Aug 16, 2011
by
Jörg Höhle
Committed by
Alexandre Julliard
Sep 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi: Use UINT32 for a number of frames and UINT64 to sum them.
parent
1c1da3e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
mmdevdrv.c
dlls/winealsa.drv/mmdevdrv.c
+2
-2
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+2
-2
mmdevdrv.c
dlls/wineoss.drv/mmdevdrv.c
+2
-2
No files found.
dlls/winealsa.drv/mmdevdrv.c
View file @
08dd823c
...
...
@@ -108,8 +108,8 @@ struct ACImpl {
float
*
vols
;
BOOL
initted
,
started
;
UINT64
written_frames
,
held_frames
,
tmp_buffer_frames
;
UINT32
bufsize_frames
,
period_us
;
UINT64
written_frames
;
UINT32
bufsize_frames
,
held_frames
,
tmp_buffer_frames
,
period_us
;
UINT32
lcl_offs_frames
;
/* offs into local_buffer where valid data starts */
HANDLE
timer
;
...
...
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
08dd823c
...
...
@@ -124,8 +124,8 @@ struct ACImpl {
AudioQueueRef
aqueue
;
AudioObjectPropertyScope
scope
;
HANDLE
timer
;
UINT32
period_ms
,
bufsize_frames
,
inbuf_frames
,
written_frames
;
UINT64
last_time
;
UINT32
period_ms
,
bufsize_frames
,
inbuf_frames
;
UINT64
last_time
,
written_frames
;
AudioQueueBufferRef
public_buffer
;
UINT32
getbuf_last
;
int
playing
;
...
...
dlls/wineoss.drv/mmdevdrv.c
View file @
08dd823c
...
...
@@ -121,8 +121,8 @@ struct ACImpl {
oss_audioinfo
ai
;
BOOL
initted
,
playing
;
UINT64
written_frames
,
held_frames
,
tmp_buffer_frames
,
inbuf_frames
;
UINT32
period_us
,
bufsize_frames
;
UINT64
written_frames
;
UINT32
period_us
,
bufsize_frames
,
held_frames
,
tmp_buffer_frames
,
inbuf_frames
;
UINT32
lcl_offs_frames
;
/* offs into local_buffer where valid data starts */
BYTE
*
local_buffer
,
*
tmp_buffer
;
...
...
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