Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
db670e53
Commit
db670e53
authored
Mar 15, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/ebur128: add framelog option.
parent
1f68bac5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
3 deletions
+30
-3
filters.texi
doc/filters.texi
+13
-0
f_ebur128.c
libavfilter/f_ebur128.c
+16
-2
version.h
libavfilter/version.h
+1
-1
No files found.
doc/filters.texi
View file @
db670e53
...
...
@@ -6531,6 +6531,19 @@ Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
@code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
other integer value between this range is allowed.
@item framelog
Force the frame logging level.
Available values are:
@table @samp
@item info
information logging level
@item verbose
verbose logging level
@end table
By default, the logging level is set to @var{info}. If the @option{video}
option is set, it switches to @var{verbose}.
@end table
@subsection Examples
...
...
libavfilter/f_ebur128.c
View file @
db670e53
...
...
@@ -123,6 +123,9 @@ typedef struct {
double
integrated_loudness
;
///< integrated loudness in LUFS (I)
double
loudness_range
;
///< loudness range in LU (LRA)
double
lra_low
,
lra_high
;
///< low and high LRA values
/* misc */
int
loglevel
;
///< log level for frame logging
}
EBUR128Context
;
#define OFFSET(x) offsetof(EBUR128Context, x)
...
...
@@ -133,6 +136,9 @@ static const AVOption ebur128_options[] = {
{
"video"
,
"set video output"
,
OFFSET
(
do_video
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
1
,
V
|
F
},
{
"size"
,
"set video size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"640x480"
},
0
,
0
,
V
|
F
},
{
"meter"
,
"set scale meter (+9 to +18)"
,
OFFSET
(
meter
),
AV_OPT_TYPE_INT
,
{.
i64
=
9
},
9
,
18
,
V
|
F
},
{
"framelog"
,
"force frame logging level"
,
OFFSET
(
loglevel
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
INT_MIN
,
INT_MAX
,
A
|
V
|
F
,
"level"
},
{
"info"
,
"information logging level"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
AV_LOG_INFO
},
INT_MIN
,
INT_MAX
,
A
|
V
|
F
,
"level"
},
{
"verbose"
,
"verbose logging level"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
AV_LOG_VERBOSE
},
INT_MIN
,
INT_MAX
,
A
|
V
|
F
,
"level"
},
{
NULL
},
};
...
...
@@ -386,6 +392,14 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
if
((
ret
=
av_set_options_string
(
ebur128
,
args
,
"="
,
":"
))
<
0
)
return
ret
;
if
(
ebur128
->
loglevel
!=
AV_LOG_INFO
&&
ebur128
->
loglevel
!=
AV_LOG_VERBOSE
)
{
if
(
ebur128
->
do_video
)
ebur128
->
loglevel
=
AV_LOG_VERBOSE
;
else
ebur128
->
loglevel
=
AV_LOG_INFO
;
}
// if meter is +9 scale, scale range is from -18 LU to +9 LU (or 3*9)
// if meter is +18 scale, scale range is from -36 LU to +18 LU (or 3*18)
ebur128
->
scale_range
=
3
*
ebur128
->
meter
;
...
...
@@ -643,8 +657,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
return
ret
;
}
av_log
(
ctx
,
ebur128
->
do_video
?
AV_LOG_VERBOSE
:
AV_LOG_INFO
,
"t: %-10s "
LOG_FMT
"
\n
"
,
av_ts2timestr
(
pts
,
&
outlink
->
time_base
),
av_log
(
ctx
,
ebur128
->
loglevel
,
"t: %-10s "
LOG_FMT
"
\n
"
,
av_ts2timestr
(
pts
,
&
outlink
->
time_base
),
loudness_400
,
loudness_3000
,
ebur128
->
integrated_loudness
,
ebur128
->
loudness_range
);
}
...
...
libavfilter/version.h
View file @
db670e53
...
...
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 3
#define LIBAVFILTER_VERSION_MINOR 45
#define LIBAVFILTER_VERSION_MICRO 10
3
#define LIBAVFILTER_VERSION_MICRO 10
4
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
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