Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
33b6e2a4
Commit
33b6e2a4
authored
May 20, 2006
by
Jean-Paul Saman
Browse files
Remove unused variables
parent
3d23a7a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/audio_output/alsa.c
View file @
33b6e2a4
...
...
@@ -761,10 +761,8 @@ static int ALSAThread( aout_instance_t * p_aout )
static
void
ALSAFill
(
aout_instance_t
*
p_aout
)
{
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
aout_buffer_t
*
p_buffer
;
snd_pcm_status_t
*
p_status
=
p_sys
->
p_status
;
snd_timestamp_t
ts_next
;
int
i_snd_rc
;
mtime_t
next_date
;
...
...
@@ -833,7 +831,6 @@ static void ALSAFill( aout_instance_t * p_aout )
/* With screwed ALSA drivers the timestamp is always zero;
* use another method then */
snd_pcm_sframes_t
delay
=
0
;
ssize_t
i_bytes
=
0
;
snd_pcm_delay
(
p_sys
->
p_snd_pcm
,
&
delay
);
next_date
=
mdate
()
+
(
mtime_t
)(
delay
)
*
1000000
/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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