Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
9035e1a6
Commit
9035e1a6
authored
Apr 05, 2007
by
Rémi Denis-Courmont
Browse files
Fix compiler warning
parent
5c0e385a
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/video_output/image.c
View file @
9035e1a6
...
...
@@ -268,12 +268,15 @@ static void Destroy( vlc_object_t *p_this )
*****************************************************************************/
static
void
Display
(
vout_thread_t
*
p_vout
,
picture_t
*
p_pic
)
{
video_format_t
fmt_in
=
{
0
}
,
fmt_out
=
{
0
}
;
video_format_t
fmt_in
,
fmt_out
;
char
*
psz_filename
;
char
*
psz_prefix
;
char
*
psz_tmp
;
memset
(
&
fmt_in
,
0
,
sizeof
(
fmt_in
));
memset
(
&
fmt_out
,
0
,
sizeof
(
fmt_out
));
if
(
p_vout
->
p_sys
->
i_frames
%
p_vout
->
p_sys
->
i_ratio
!=
0
)
{
p_vout
->
p_sys
->
i_frames
++
;
...
...
Write
Preview
Supports
Markdown
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