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
8f3d5d03
Commit
8f3d5d03
authored
Jan 18, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alsa: sets period size before buffer size, patch by Matthias P. Nowak
parent
5c358414
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
13 deletions
+14
-13
THANKS
THANKS
+1
-0
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+13
-13
No files found.
THANKS
View file @
8f3d5d03
...
...
@@ -148,6 +148,7 @@ Mateus Krepsky Ludwich <mateus @t csp dot com d.t br> - rc interface mosaic-orde
Mathias C. Berens | welcome-soft <berens at welcome-soft.de> - German translation
Mathias Kretschmer <mathias at research.att.com> - IP Multicast support
Mats Rojestal <mats.rojestal at bredband dot net> - compilation fixes for Solaris 9
Matthias P. Nowak <mpnowak at broadpark dot no> - ALSA 5.1 fix
Matthieu Lochegnies <prof at tocard dot org> - MPEG audio emphasis fix
Max Rudberg <max_08 at mac.com> - Mac OS X controller art (v0.7.0)
Meelad Zakaria <meelad at farsiweb dot info> - Persian localisation
...
...
modules/audio_output/alsa.c
View file @
8f3d5d03
...
...
@@ -585,34 +585,34 @@ static int Open( vlc_object_t *p_this )
p_aout
->
output
.
output
.
i_rate
);
}
/* Set
buffer
size. */
/* Set
period
size. */
#ifdef HAVE_ALSA_NEW_API
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
buffer
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
&
i_
buffer_size
)
)
<
0
)
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
period
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
&
i_
period_size
,
NULL
)
)
<
0
)
#else
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
buffer
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
i_
buffer_size
)
)
<
0
)
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
period
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
i_
period_size
,
NULL
)
)
<
0
)
#endif
{
msg_Err
(
p_aout
,
"unable to set
buffer
size (%s)"
,
msg_Err
(
p_aout
,
"unable to set
period
size (%s)"
,
snd_strerror
(
i_snd_rc
)
);
goto
error
;
}
p_aout
->
output
.
i_nb_samples
=
i_period_size
;
/* Set period
size. */
/* Set buffer
size. */
#ifdef HAVE_ALSA_NEW_API
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
period
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
&
i_
period_size
,
NULL
)
)
<
0
)
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
buffer
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
&
i_
buffer_size
)
)
<
0
)
#else
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
period
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
i_
period_size
,
NULL
)
)
<
0
)
if
(
(
i_snd_rc
=
snd_pcm_hw_params_set_
buffer
_size_near
(
p_sys
->
p_snd_pcm
,
p_hw
,
i_
buffer_size
)
)
<
0
)
#endif
{
msg_Err
(
p_aout
,
"unable to set
period
size (%s)"
,
msg_Err
(
p_aout
,
"unable to set
buffer
size (%s)"
,
snd_strerror
(
i_snd_rc
)
);
goto
error
;
}
p_aout
->
output
.
i_nb_samples
=
i_period_size
;
/* Commit hardware parameters. */
if
(
(
i_snd_rc
=
snd_pcm_hw_params
(
p_sys
->
p_snd_pcm
,
p_hw
)
)
<
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