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
03e8df65
Commit
03e8df65
authored
Oct 02, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix signedness gcc warning
parent
7c9e1768
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+2
-2
No files found.
modules/audio_output/alsa.c
View file @
03e8df65
...
...
@@ -52,7 +52,7 @@
struct
aout_sys_t
{
snd_pcm_t
*
p_snd_pcm
;
int
i_period_time
;
unsigned
int
i_period_time
;
#ifdef ALSA_DEBUG
snd_output_t
*
p_snd_stderr
;
...
...
@@ -579,7 +579,7 @@ static int Open( vlc_object_t *p_this )
&
p_sys
->
i_period_time
,
NULL
)
)
<
0
)
#else
if
(
(
p_sys
->
i_period_time
=
snd_pcm_hw_params_get_period_time
(
p_hw
,
NULL
)
)
<
0
)
(
int
)
snd_pcm_hw_params_get_period_time
(
p_hw
,
NULL
)
)
<
0
)
#endif
{
msg_Err
(
p_aout
,
"unable to get period time (%s)"
,
...
...
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