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
723c37d3
Commit
723c37d3
authored
Jan 19, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_idet: reduce noisyness if the filter has been auto inserted
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
90c98994
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
vf_idet.c
libavfilter/vf_idet.c
+4
-3
No files found.
libavfilter/vf_idet.c
View file @
723c37d3
...
...
@@ -330,19 +330,20 @@ static int request_frame(AVFilterLink *link)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
IDETContext
*
idet
=
ctx
->
priv
;
int
level
=
strncmp
(
ctx
->
name
,
"auto-inserted"
,
13
)
?
AV_LOG_INFO
:
AV_LOG_DEBUG
;
av_log
(
ctx
,
AV_LOG_INFO
,
"Repeated Fields: Neither:%6"
PRId64
" Top:%6"
PRId64
" Bottom:%6"
PRId64
"
\n
"
,
av_log
(
ctx
,
level
,
"Repeated Fields: Neither:%6"
PRId64
" Top:%6"
PRId64
" Bottom:%6"
PRId64
"
\n
"
,
idet
->
total_repeats
[
REPEAT_NONE
],
idet
->
total_repeats
[
REPEAT_TOP
],
idet
->
total_repeats
[
REPEAT_BOTTOM
]
);
av_log
(
ctx
,
AV_LOG_INFO
,
"Single frame detection: TFF:%6"
PRId64
" BFF:%6"
PRId64
" Progressive:%6"
PRId64
" Undetermined:%6"
PRId64
"
\n
"
,
av_log
(
ctx
,
level
,
"Single frame detection: TFF:%6"
PRId64
" BFF:%6"
PRId64
" Progressive:%6"
PRId64
" Undetermined:%6"
PRId64
"
\n
"
,
idet
->
total_prestat
[
TFF
],
idet
->
total_prestat
[
BFF
],
idet
->
total_prestat
[
PROGRESSIVE
],
idet
->
total_prestat
[
UNDETERMINED
]
);
av_log
(
ctx
,
AV_LOG_INFO
,
"Multi frame detection: TFF:%6"
PRId64
" BFF:%6"
PRId64
" Progressive:%6"
PRId64
" Undetermined:%6"
PRId64
"
\n
"
,
av_log
(
ctx
,
level
,
"Multi frame detection: TFF:%6"
PRId64
" BFF:%6"
PRId64
" Progressive:%6"
PRId64
" Undetermined:%6"
PRId64
"
\n
"
,
idet
->
total_poststat
[
TFF
],
idet
->
total_poststat
[
BFF
],
idet
->
total_poststat
[
PROGRESSIVE
],
...
...
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