Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
f901bb49
Commit
f901bb49
authored
Aug 20, 2009
by
Pierre
Browse files
vc1: Correct unsigned use.
parent
97c09ca0
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/packetizer/vc1.c
View file @
f901bb49
...
...
@@ -203,7 +203,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
if
(
p_sys
->
b_check_startcode
&&
pp_block
&&
*
pp_block
)
{
/* Fix syntax for (some?) VC1 from asf */
const
int
i_startcode
=
sizeof
(
p_vc1_startcode
);
const
unsigned
i_startcode
=
sizeof
(
p_vc1_startcode
);
block_t
*
p_block
=
*
pp_block
;
if
(
p_block
->
i_buffer
>
0
&&
...
...
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