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
60f4db26
Commit
60f4db26
authored
Apr 05, 2007
by
dionoea
Browse files
Please keep the coding style consistent inside the same source file.
parent
e560aff7
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_variables.h
View file @
60f4db26
...
...
@@ -359,11 +359,11 @@ static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name )
static
inline
char
*
__var_GetNonEmptyString
(
vlc_object_t
*
obj
,
const
char
*
name
)
{
vlc_value_t
val
;
if
(
__var_Get
(
obj
,
name
,
&
val
)
)
if
(
__var_Get
(
obj
,
name
,
&
val
)
)
return
NULL
;
if
(
*
val
.
psz_string
)
if
(
*
val
.
psz_string
)
return
val
.
psz_string
;
free
(
val
.
psz_string
);
free
(
val
.
psz_string
);
return
NULL
;
}
...
...
modules/video_output/image.c
View file @
60f4db26
...
...
@@ -274,8 +274,8 @@ static void Display( vout_thread_t *p_vout, picture_t *p_pic )
char
*
psz_prefix
;
char
*
psz_tmp
;
memset
(
&
fmt_in
,
0
,
sizeof
(
fmt_in
)
);
memset
(
&
fmt_out
,
0
,
sizeof
(
fmt_out
)
);
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
)
{
...
...
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