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
Steve Lhomme
VLC
Commits
a7d566c6
Commit
a7d566c6
authored
Aug 05, 2007
by
Rémi Denis-Courmont
Browse files
Fix void arithmethic
parent
2c32483b
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/theora.c
View file @
a7d566c6
...
...
@@ -216,7 +216,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
p_dec
->
fmt_in
.
p_extra
=
realloc
(
p_dec
->
fmt_in
.
p_extra
,
p_dec
->
fmt_in
.
i_extra
+
oggpacket
.
bytes
+
2
);
p_extra
=
p_dec
->
fmt_in
.
p_extra
+
p_dec
->
fmt_in
.
i_extra
;
p_extra
=
((
uint8_t
*
)
p_dec
->
fmt_in
.
p_extra
)
+
p_dec
->
fmt_in
.
i_extra
;
*
(
p_extra
++
)
=
oggpacket
.
bytes
>>
8
;
*
(
p_extra
++
)
=
oggpacket
.
bytes
&
0xFF
;
...
...
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