Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
705499c6
Commit
705499c6
authored
Aug 09, 2005
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warning about comparing signed and unsigned
parent
3a189811
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/codec/ffmpeg/audio.c
modules/codec/ffmpeg/audio.c
+1
-1
No files found.
modules/codec/ffmpeg/audio.c
View file @
705499c6
...
...
@@ -254,7 +254,7 @@ aout_buffer_t *E_( DecodeAudio )( decoder_t *p_dec, block_t **pp_block )
return
NULL
;
}
if
(
p_dec
->
fmt_out
.
audio
.
i_rate
!=
p_sys
->
p_context
->
sample_rate
)
if
(
p_dec
->
fmt_out
.
audio
.
i_rate
!=
(
unsigned
int
)
p_sys
->
p_context
->
sample_rate
)
{
aout_DateInit
(
&
p_sys
->
end_date
,
p_sys
->
p_context
->
sample_rate
);
aout_DateSet
(
&
p_sys
->
end_date
,
p_block
->
i_pts
);
...
...
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