Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
9bee423b
Commit
9bee423b
authored
Jul 15, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check that p_pic->pf_release != NULL before calling it
parent
7588d6a1
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
6 deletions
+12
-6
modules/video_filter/adjust.c
modules/video_filter/adjust.c
+2
-1
modules/video_filter/gradient.c
modules/video_filter/gradient.c
+2
-1
modules/video_filter/invert.c
modules/video_filter/invert.c
+2
-1
modules/video_filter/psychedelic.c
modules/video_filter/psychedelic.c
+2
-1
modules/video_filter/ripple.c
modules/video_filter/ripple.c
+2
-1
modules/video_filter/wave.c
modules/video_filter/wave.c
+2
-1
No files found.
modules/video_filter/adjust.c
View file @
9bee423b
...
...
@@ -426,7 +426,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_outpic
->
b_progressive
=
p_pic
->
b_progressive
;
p_outpic
->
b_top_field_first
=
p_pic
->
b_top_field_first
;
p_pic
->
pf_release
(
p_pic
);
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
return
p_outpic
;
}
modules/video_filter/gradient.c
View file @
9bee423b
...
...
@@ -240,7 +240,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_outpic
->
b_progressive
=
p_pic
->
b_progressive
;
p_outpic
->
b_top_field_first
=
p_pic
->
b_top_field_first
;
p_pic
->
pf_release
(
p_pic
);
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
return
p_outpic
;
}
...
...
modules/video_filter/invert.c
View file @
9bee423b
...
...
@@ -170,7 +170,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_outpic
->
b_progressive
=
p_pic
->
b_progressive
;
p_outpic
->
b_top_field_first
=
p_pic
->
b_top_field_first
;
p_pic
->
pf_release
(
p_pic
);
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
return
p_outpic
;
}
modules/video_filter/psychedelic.c
View file @
9bee423b
...
...
@@ -246,7 +246,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_outpic
->
b_progressive
=
p_pic
->
b_progressive
;
p_outpic
->
b_top_field_first
=
p_pic
->
b_top_field_first
;
p_pic
->
pf_release
(
p_pic
);
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
return
p_outpic
;
}
modules/video_filter/ripple.c
View file @
9bee423b
...
...
@@ -205,7 +205,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_outpic
->
b_progressive
=
p_pic
->
b_progressive
;
p_outpic
->
b_top_field_first
=
p_pic
->
b_top_field_first
;
p_pic
->
pf_release
(
p_pic
);
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
return
p_outpic
;
}
modules/video_filter/wave.c
View file @
9bee423b
...
...
@@ -192,7 +192,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_outpic
->
b_progressive
=
p_pic
->
b_progressive
;
p_outpic
->
b_top_field_first
=
p_pic
->
b_top_field_first
;
p_pic
->
pf_release
(
p_pic
);
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
return
p_outpic
;
}
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