Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e43ea251
Commit
e43ea251
authored
Feb 24, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forward port [25261]
workaround buggy alsa drivers
parent
f46398cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+4
-2
No files found.
modules/audio_output/alsa.c
View file @
e43ea251
...
...
@@ -834,9 +834,11 @@ static void ALSAFill( aout_instance_t * p_aout )
}
else
{
/* Here the device should be in RUNNING state.
* p_status is valid. */
/* Here the device should be in RUNNING state, p_status is valid. */
snd_pcm_sframes_t
delay
=
snd_pcm_status_get_delay
(
p_status
);
if
(
delay
==
0
)
/* workaround buggy alsa drivers */
if
(
snd_pcm_delay
(
p_sys
->
p_snd_pcm
,
&
delay
)
<
0
)
delay
=
0
;
/* FIXME: use a positive minimal delay */
int
i_bytes
=
snd_pcm_frames_to_bytes
(
p_sys
->
p_snd_pcm
,
delay
);
next_date
=
mdate
()
+
(
(
mtime_t
)
i_bytes
*
1000000
/
p_aout
->
output
.
output
.
i_bytes_per_frame
...
...
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