Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
a798c20a
Commit
a798c20a
authored
13 years ago
by
Stefano Sabatini
Browse files
Options
Downloads
Patches
Plain Diff
lavfi/testsrc: add "decimals" option to the testsrc filter
parent
9f7144b4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/filters.texi
+8
-0
8 additions, 0 deletions
doc/filters.texi
libavfilter/version.h
+1
-1
1 addition, 1 deletion
libavfilter/version.h
libavfilter/vsrc_testsrc.c
+14
-1
14 additions, 1 deletion
libavfilter/vsrc_testsrc.c
with
23 additions
and
2 deletions
doc/filters.texi
+
8
−
0
View file @
a798c20a
...
...
@@ -3237,6 +3237,14 @@ See also the function @code{av_parse_time()}.
If not specified, or the expressed duration is negative, the video is
supposed to be generated forever.
@item decimals, n
Set the number of decimals to show in the timestamp, only used in the
@code{testsrc} source.
The displayed timestamp value will correspond to the original
timestamp value multiplied by the power of 10 of the specified
value. Default value is 0.
@end table
For example the following:
...
...
This diff is collapsed.
Click to expand it.
libavfilter/version.h
+
1
−
1
View file @
a798c20a
...
...
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 59
#define LIBAVFILTER_VERSION_MICRO 10
0
#define LIBAVFILTER_VERSION_MICRO 10
1
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
This diff is collapsed.
Click to expand it.
libavfilter/vsrc_testsrc.c
+
14
−
1
View file @
a798c20a
...
...
@@ -47,6 +47,7 @@ typedef struct {
char
*
rate
;
///< video frame rate
char
*
duration
;
///< total duration of the generated video
AVRational
sar
;
///< sample aspect ratio
int
nb_decimals
;
void
(
*
fill_picture_fn
)(
AVFilterContext
*
ctx
,
AVFilterBufferRef
*
picref
);
...
...
@@ -64,6 +65,8 @@ static const AVOption testsrc_options[]= {
{
"duration"
,
"set video duration"
,
OFFSET
(
duration
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
},
{
"d"
,
"set video duration"
,
OFFSET
(
duration
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
},
{
"sar"
,
"set video sample aspect ratio"
,
OFFSET
(
sar
),
AV_OPT_TYPE_RATIONAL
,
{.
dbl
=
1
},
0
,
INT_MAX
},
{
"decimals"
,
"set number of decimals to show"
,
OFFSET
(
nb_decimals
),
AV_OPT_TYPE_INT
,
{.
dbl
=
0
},
INT_MIN
,
INT_MAX
},
{
"n"
,
"set number of decimals to show"
,
OFFSET
(
nb_decimals
),
AV_OPT_TYPE_INT
,
{.
dbl
=
0
},
INT_MIN
,
INT_MAX
},
{
NULL
},
};
...
...
@@ -97,6 +100,12 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
return
ret
;
}
if
(
test
->
nb_decimals
&&
strcmp
(
ctx
->
filter
->
name
,
"testsrc"
))
{
av_log
(
ctx
,
AV_LOG_WARNING
,
"Option 'decimals' is ignored with source '%s'
\n
"
,
ctx
->
filter
->
name
);
}
test
->
time_base
.
num
=
frame_rate_q
.
den
;
test
->
time_base
.
den
=
frame_rate_q
.
num
;
test
->
max_pts
=
duration
>=
0
?
...
...
@@ -361,7 +370,11 @@ static void test_fill_picture(AVFilterContext *ctx, AVFilterBufferRef *picref)
/* draw digits */
seg_size
=
width
/
80
;
if
(
seg_size
>=
1
&&
height
>=
13
*
seg_size
)
{
second
=
test
->
nb_frame
*
test
->
time_base
.
num
/
test
->
time_base
.
den
;
double
time
=
av_q2d
(
test
->
time_base
)
*
test
->
nb_frame
*
pow
(
10
,
test
->
nb_decimals
);
if
(
time
>
INT_MAX
)
return
;
second
=
(
int
)
time
;
x
=
width
-
(
width
-
seg_size
*
64
)
/
2
;
y
=
(
height
-
seg_size
*
13
)
/
2
;
p
=
data
+
(
x
*
3
+
y
*
picref
->
linesize
[
0
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment