Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
2f541e74
Commit
2f541e74
authored
Mar 17, 2008
by
Jean-Baptiste Kempf
Browse files
Fix warning in rawvid demxuer.
parent
2e8d84e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/rawvid.c
View file @
2f541e74
...
...
@@ -181,7 +181,7 @@ static int Open( vlc_object_t * p_this )
{
char
*
psz
;
char
*
buf
;
int
a
,
b
;
int
a
,
b
=
1
;
psz
=
stream_ReadLine
(
p_demux
->
s
);
/* TODO: handle interlacing */
...
...
@@ -240,7 +240,7 @@ static int Open( vlc_object_t * p_this )
{
psz_chroma
=
strdup
(
"I444"
);
}
else
if
(
!
strncmp
(
buf
,
"mono"
,
3
)
)
else
if
(
!
strncmp
(
buf
,
"mono"
,
4
)
)
{
psz_chroma
=
strdup
(
"GREY"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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