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
f4341c64
Commit
f4341c64
authored
May 06, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add av_cold to uninit()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
d2bf8aec
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
af_astats.c
libavfilter/af_astats.c
+1
-1
af_volumedetect.c
libavfilter/af_volumedetect.c
+1
-1
asrc_aevalsrc.c
libavfilter/asrc_aevalsrc.c
+1
-1
f_interleave.c
libavfilter/f_interleave.c
+1
-1
vf_extractplanes.c
libavfilter/vf_extractplanes.c
+1
-1
vf_removelogo.c
libavfilter/vf_removelogo.c
+1
-1
No files found.
libavfilter/af_astats.c
View file @
f4341c64
...
...
@@ -236,7 +236,7 @@ static void print_stats(AVFilterContext *ctx)
av_log
(
ctx
,
AV_LOG_INFO
,
"Number of samples: %lld
\n
"
,
nb_samples
/
s
->
nb_channels
);
}
static
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
AudioStatsContext
*
s
=
ctx
->
priv
;
...
...
libavfilter/af_volumedetect.c
View file @
f4341c64
...
...
@@ -126,7 +126,7 @@ static void print_stats(AVFilterContext *ctx)
}
}
static
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
print_stats
(
ctx
);
}
...
...
libavfilter/asrc_aevalsrc.c
View file @
f4341c64
...
...
@@ -152,7 +152,7 @@ end:
return
ret
;
}
static
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
EvalContext
*
eval
=
ctx
->
priv
;
int
i
;
...
...
libavfilter/f_interleave.c
View file @
f4341c64
...
...
@@ -135,7 +135,7 @@ static int init(AVFilterContext *ctx)
return
0
;
}
static
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
InterleaveContext
*
interleave
=
ctx
->
priv
;
int
i
;
...
...
libavfilter/vf_extractplanes.c
View file @
f4341c64
...
...
@@ -222,7 +222,7 @@ static int init(AVFilterContext *ctx)
return
0
;
}
static
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
int
i
;
...
...
libavfilter/vf_removelogo.c
View file @
f4341c64
...
...
@@ -527,7 +527,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
return
ff_filter_frame
(
outlink
,
outpicref
);
}
static
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
RemovelogoContext
*
removelogo
=
ctx
->
priv
;
int
a
,
b
;
...
...
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