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
ba7e4ce0
Commit
ba7e4ce0
authored
Mar 15, 2008
by
Rafaël Carré
Browse files
Add assert()ions to help fighting a bug
parent
eb73dbd3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/video_output/vout_pictures.c
View file @
ba7e4ce0
...
...
@@ -936,7 +936,9 @@ void __vout_CopyPicture( vlc_object_t *p_this,
{
/* We need to proceed line by line */
uint8_t
*
p_in
=
p_src
->
p
[
i
].
p_pixels
;
assert
(
p_in
);
uint8_t
*
p_out
=
p_dest
->
p
[
i
].
p_pixels
;
assert
(
p_out
);
int
i_line
;
for
(
i_line
=
p_src
->
p
[
i
].
i_visible_lines
;
i_line
--
;
)
...
...
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