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
e7e4c8df
Commit
e7e4c8df
authored
8 years ago
by
Nicolas George
Browse files
Options
Downloads
Patches
Plain Diff
lavfi: add ff_inlink_evaluate_timeline_at_frame().
parent
0e3d2496
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavfilter/avfilter.c
+21
-13
21 additions, 13 deletions
libavfilter/avfilter.c
libavfilter/filters.h
+8
-0
8 additions, 0 deletions
libavfilter/filters.h
with
29 additions
and
13 deletions
libavfilter/avfilter.c
+
21
−
13
View file @
e7e4c8df
...
...
@@ -1100,7 +1100,6 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
AVFilterContext
*
dstctx
=
link
->
dst
;
AVFilterPad
*
dst
=
link
->
dstpad
;
int
ret
;
int64_t
pts
;
if
(
!
(
filter_frame
=
dst
->
filter_frame
))
filter_frame
=
default_filter_frame
;
...
...
@@ -1112,24 +1111,15 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
}
ff_inlink_process_commands
(
link
,
frame
);
dstctx
->
is_disabled
=
!
ff_inlink_evaluate_timeline_at_frame
(
link
,
frame
);
pts
=
frame
->
pts
;
if
(
dstctx
->
enable_str
)
{
int64_t
pos
=
av_frame_get_pkt_pos
(
frame
);
dstctx
->
var_values
[
VAR_N
]
=
link
->
frame_count_out
;
dstctx
->
var_values
[
VAR_T
]
=
pts
==
AV_NOPTS_VALUE
?
NAN
:
pts
*
av_q2d
(
link
->
time_base
);
dstctx
->
var_values
[
VAR_W
]
=
link
->
w
;
dstctx
->
var_values
[
VAR_H
]
=
link
->
h
;
dstctx
->
var_values
[
VAR_POS
]
=
pos
==
-
1
?
NAN
:
pos
;
dstctx
->
is_disabled
=
fabs
(
av_expr_eval
(
dstctx
->
enable
,
dstctx
->
var_values
,
NULL
))
<
0
.
5
;
/* TODO reindent */
if
(
dstctx
->
is_disabled
&&
(
dstctx
->
filter
->
flags
&
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
))
filter_frame
=
default_filter_frame
;
}
ret
=
filter_frame
(
link
,
frame
);
link
->
frame_count_out
++
;
ff_update_link_current_pts
(
link
,
pts
);
ff_update_link_current_pts
(
link
,
frame
->
pts
);
return
ret
;
fail:
...
...
@@ -1575,6 +1565,24 @@ int ff_inlink_process_commands(AVFilterLink *link, const AVFrame *frame)
return
0
;
}
int
ff_inlink_evaluate_timeline_at_frame
(
AVFilterLink
*
link
,
const
AVFrame
*
frame
)
{
AVFilterContext
*
dstctx
=
link
->
dst
;
int64_t
pts
=
frame
->
pts
;
int64_t
pos
=
av_frame_get_pkt_pos
(
frame
);
if
(
!
dstctx
->
enable_str
)
return
1
;
dstctx
->
var_values
[
VAR_N
]
=
link
->
frame_count_out
;
dstctx
->
var_values
[
VAR_T
]
=
pts
==
AV_NOPTS_VALUE
?
NAN
:
pts
*
av_q2d
(
link
->
time_base
);
dstctx
->
var_values
[
VAR_W
]
=
link
->
w
;
dstctx
->
var_values
[
VAR_H
]
=
link
->
h
;
dstctx
->
var_values
[
VAR_POS
]
=
pos
==
-
1
?
NAN
:
pos
;
return
fabs
(
av_expr_eval
(
dstctx
->
enable
,
dstctx
->
var_values
,
NULL
))
>=
0
.
5
;
}
const
AVClass
*
avfilter_get_class
(
void
)
{
return
&
avfilter_class
;
...
...
This diff is collapsed.
Click to expand it.
libavfilter/filters.h
+
8
−
0
View file @
e7e4c8df
...
...
@@ -46,6 +46,14 @@ void ff_filter_set_ready(AVFilterContext *filter, unsigned priority);
*/
int
ff_inlink_process_commands
(
AVFilterLink
*
link
,
const
AVFrame
*
frame
);
/**
* Evaluate the timeline expression of the link for the time and properties
* of the frame.
* @return >0 if enabled, 0 if disabled
* @note It does not update link->dst->is_disabled.
*/
int
ff_inlink_evaluate_timeline_at_frame
(
AVFilterLink
*
link
,
const
AVFrame
*
frame
);
/**
* Make sure a frame is writable.
* This is similar to av_frame_make_writable() except it uses the link's
...
...
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