Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
33b6e2a4
Commit
33b6e2a4
authored
May 20, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused variables
parent
3d23a7a3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+0
-3
No files found.
modules/audio_output/alsa.c
View file @
33b6e2a4
...
@@ -761,10 +761,8 @@ static int ALSAThread( aout_instance_t * p_aout )
...
@@ -761,10 +761,8 @@ static int ALSAThread( aout_instance_t * p_aout )
static
void
ALSAFill
(
aout_instance_t
*
p_aout
)
static
void
ALSAFill
(
aout_instance_t
*
p_aout
)
{
{
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
aout_buffer_t
*
p_buffer
;
aout_buffer_t
*
p_buffer
;
snd_pcm_status_t
*
p_status
=
p_sys
->
p_status
;
snd_pcm_status_t
*
p_status
=
p_sys
->
p_status
;
snd_timestamp_t
ts_next
;
int
i_snd_rc
;
int
i_snd_rc
;
mtime_t
next_date
;
mtime_t
next_date
;
...
@@ -833,7 +831,6 @@ static void ALSAFill( aout_instance_t * p_aout )
...
@@ -833,7 +831,6 @@ static void ALSAFill( aout_instance_t * p_aout )
/* With screwed ALSA drivers the timestamp is always zero;
/* With screwed ALSA drivers the timestamp is always zero;
* use another method then */
* use another method then */
snd_pcm_sframes_t
delay
=
0
;
snd_pcm_sframes_t
delay
=
0
;
ssize_t
i_bytes
=
0
;
snd_pcm_delay
(
p_sys
->
p_snd_pcm
,
&
delay
);
snd_pcm_delay
(
p_sys
->
p_snd_pcm
,
&
delay
);
next_date
=
mdate
()
+
(
mtime_t
)(
delay
)
*
1000000
/
next_date
=
mdate
()
+
(
mtime_t
)(
delay
)
*
1000000
/
...
...
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