Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
2cc0e83d
Commit
2cc0e83d
authored
May 06, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
waveout: fix volume initialization
(cherry picked from commit 9be0932d795076e8b33cfabb4a2d23042826025d)
parent
1aebb872
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+5
-11
No files found.
modules/audio_output/waveout.c
View file @
2cc0e83d
...
@@ -287,20 +287,14 @@ static int Open( vlc_object_t *p_this )
...
@@ -287,20 +287,14 @@ static int Open( vlc_object_t *p_this )
p_aout
->
format
.
i_bytes_per_frame
;
p_aout
->
format
.
i_bytes_per_frame
;
aout_PacketInit
(
p_aout
,
&
p_aout
->
sys
->
packet
,
FRAME_SIZE
);
aout_PacketInit
(
p_aout
,
&
p_aout
->
sys
->
packet
,
FRAME_SIZE
);
aout_VolumeSoftInit
(
p_aout
);
/* Check for hardware volume support */
/* Check for hardware volume support */
if
(
waveOutGetDevCaps
(
(
UINT_PTR
)
p_aout
->
sys
->
h_waveout
,
if
(
waveOutGetDevCaps
(
(
UINT_PTR
)
p_aout
->
sys
->
h_waveout
,
&
wocaps
,
sizeof
(
wocaps
)
)
==
MMSYSERR_NOERROR
&&
&
wocaps
,
sizeof
(
wocaps
)
)
==
MMSYSERR_NOERROR
wocaps
.
dwSupport
&
WAVECAPS_VOLUME
)
&&
(
wocaps
.
dwSupport
&
WAVECAPS_VOLUME
)
)
{
aout_VolumeHardInit
(
p_aout
,
VolumeSet
);
DWORD
i_dummy
;
else
if
(
waveOutGetVolume
(
p_aout
->
sys
->
h_waveout
,
&
i_dummy
)
aout_VolumeSoftInit
(
p_aout
);
==
MMSYSERR_NOERROR
)
{
p_aout
->
pf_volume_set
=
VolumeSet
;
}
}
}
}
...
...
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