Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
b2735362
Commit
b2735362
authored
Dec 29, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Waveout: Small scope improvement
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
c85d6074
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+1
-2
No files found.
modules/audio_output/waveout.c
View file @
b2735362
...
@@ -155,7 +155,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -155,7 +155,6 @@ static int Open( vlc_object_t *p_this )
{
{
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
p_this
;
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
p_this
;
vlc_value_t
val
;
vlc_value_t
val
;
int
i
;
/* Allocate structure */
/* Allocate structure */
p_aout
->
output
.
p_sys
=
malloc
(
sizeof
(
aout_sys_t
)
);
p_aout
->
output
.
p_sys
=
malloc
(
sizeof
(
aout_sys_t
)
);
...
@@ -353,7 +352,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -353,7 +352,7 @@ static int Open( vlc_object_t *p_this )
/* We need to kick off the playback in order to have the callback properly
/* We need to kick off the playback in order to have the callback properly
* working */
* working */
for
(
i
=
0
;
i
<
FRAMES_NUM
;
i
++
)
for
(
i
nt
i
=
0
;
i
<
FRAMES_NUM
;
i
++
)
{
{
p_aout
->
output
.
p_sys
->
waveheader
[
i
].
dwFlags
=
WHDR_DONE
;
p_aout
->
output
.
p_sys
->
waveheader
[
i
].
dwFlags
=
WHDR_DONE
;
p_aout
->
output
.
p_sys
->
waveheader
[
i
].
dwUser
=
0
;
p_aout
->
output
.
p_sys
->
waveheader
[
i
].
dwUser
=
0
;
...
...
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