Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7f06ca6e
Commit
7f06ca6e
authored
Mar 03, 2012
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_mp: uninit filter chain.
Most of the code was taken from MPlayer's vf_uninit_filter_chain.
parent
d8d1fbbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
vf_mp.c
libavfilter/vf_mp.c
+18
-0
No files found.
libavfilter/vf_mp.c
View file @
7f06ca6e
...
...
@@ -769,6 +769,23 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
return
0
;
}
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
MPContext
*
m
=
ctx
->
priv
;
vf_instance_t
*
vf
=
&
m
->
vf
;
while
(
vf
){
vf_instance_t
*
next
=
vf
->
next
;
if
(
vf
->
uninit
)
vf
->
uninit
(
vf
);
free_mp_image
(
vf
->
imgctx
.
static_images
[
0
]);
free_mp_image
(
vf
->
imgctx
.
static_images
[
1
]);
free_mp_image
(
vf
->
imgctx
.
temp_images
[
0
]);
free_mp_image
(
vf
->
imgctx
.
export_images
[
0
]);
vf
=
next
;
}
}
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
AVFilterFormats
*
avfmts
=
NULL
;
...
...
@@ -881,6 +898,7 @@ AVFilter avfilter_vf_mp = {
.
name
=
"mp"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Apply a libmpcodecs filter to the input video."
),
.
init
=
init
,
.
uninit
=
uninit
,
.
priv_size
=
sizeof
(
MPContext
),
.
query_formats
=
query_formats
,
...
...
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