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
9af57553
Commit
9af57553
authored
Nov 05, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic fix (excessive indentation)
parent
35c8e86d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
88 deletions
+79
-88
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+79
-88
No files found.
modules/audio_output/alsa.c
View file @
9af57553
...
...
@@ -788,16 +788,13 @@ static void ALSAFill( aout_instance_t * p_aout )
mtime_t
next_date
;
/* Fill in the buffer until space or audio output buffer shortage */
{
/* Get the status */
i_snd_rc
=
snd_pcm_status
(
p_sys
->
p_snd_pcm
,
p_status
);
if
(
i_snd_rc
<
0
)
{
msg_Err
(
p_aout
,
"unable to get the device's status (%s)"
,
snd_strerror
(
i_snd_rc
)
);
msleep
(
p_sys
->
i_period_time
>>
1
);
return
;
msg_Err
(
p_aout
,
"cannot get device status"
);
goto
error
;
}
/* Handle buffer underruns and get the status again */
...
...
@@ -806,27 +803,20 @@ static void ALSAFill( aout_instance_t * p_aout )
/* Prepare the device */
i_snd_rc
=
snd_pcm_prepare
(
p_sys
->
p_snd_pcm
);
if
(
i_snd_rc
==
0
)
if
(
i_snd_rc
)
{
msg_Err
(
p_aout
,
"cannot recover from buffer underrun"
);
goto
error
;
}
msg_Dbg
(
p_aout
,
"recovered from buffer underrun"
);
/* Get the new status */
i_snd_rc
=
snd_pcm_status
(
p_sys
->
p_snd_pcm
,
p_status
);
if
(
i_snd_rc
<
0
)
{
msg_Err
(
p_aout
,
"unable to get the device's status after "
"recovery (%s)"
,
snd_strerror
(
i_snd_rc
)
);
msleep
(
p_sys
->
i_period_time
>>
1
);
return
;
}
}
else
{
msg_Err
(
p_aout
,
"unable to recover from buffer underrun"
);
msleep
(
p_sys
->
i_period_time
>>
1
);
return
;
msg_Err
(
p_aout
,
"cannot get device status after recovery"
);
goto
error
;
}
/* Underrun, try to recover as quickly as possible */
...
...
@@ -854,22 +844,18 @@ static void ALSAFill( aout_instance_t * p_aout )
snd_pcm_sframes_t
delay
=
0
;
snd_pcm_delay
(
p_sys
->
p_snd_pcm
,
&
delay
);
next_date
=
mdate
()
+
(
mtime_t
)(
delay
)
*
1000000
/
p_aout
->
output
.
output
.
i_rate
next_date
=
mdate
()
+
(
mtime_t
)(
delay
)
*
1000000
/
p_aout
->
output
.
output
.
i_rate
*
p_aout
->
output
.
output
.
i_frame_length
;
}
}
p_buffer
=
aout_OutputNextBuffer
(
p_aout
,
next_date
,
(
p_aout
->
output
.
output
.
i_format
==
VLC_FOURCC
(
's'
,
'p'
,
'd'
,
'i'
))
);
(
p_aout
->
output
.
output
.
i_format
==
VLC_FOURCC
(
's'
,
'p'
,
'd'
,
'i'
))
);
/* Audio output buffer shortage -> stop the fill process and wait */
if
(
p_buffer
==
NULL
)
{
msleep
(
p_sys
->
i_period_time
>>
1
);
return
;
}
goto
error
;
for
(;;)
{
...
...
@@ -884,21 +870,26 @@ static void ALSAFill( aout_instance_t * p_aout )
while
(
!
p_aout
->
b_die
&&
!
p_aout
->
p_libvlc
->
b_die
&&
(
i_snd_rc
=
snd_pcm_resume
(
p_sys
->
p_snd_pcm
)
)
==
-
EAGAIN
)
msleep
(
100000
);
{
msleep
(
1000000
);
}
if
(
i_snd_rc
<
0
)
/* Device does not supprot resuming, restart it */
i_snd_rc
=
snd_pcm_prepare
(
p_sys
->
p_snd_pcm
);
}
if
(
i_snd_rc
<
0
)
{
msg_Err
(
p_aout
,
"write failed (%s)"
,
snd_strerror
(
i_snd_rc
)
);
}
msg_Err
(
p_aout
,
"cannot write: %s"
,
snd_strerror
(
i_snd_rc
)
);
aout_BufferFree
(
p_buffer
);
}
return
;
error:
if
(
i_snd_rc
<
0
)
msg_Err
(
p_aout
,
"ALSA error: %s"
,
snd_strerror
(
i_snd_rc
)
);
msleep
(
p_sys
->
i_period_time
>>
1
);
}
static
void
GetDevicesForCard
(
module_config_t
*
p_item
,
int
i_card
);
...
...
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