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
c71e1e60
Commit
c71e1e60
authored
6 years ago
by
Gyan Doshi
Browse files
Options
Downloads
Patches
Plain Diff
avfilter/setpts: add FR shorthand for FRAME_RATE
parent
115b7c96
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/filters.texi
+1
-1
1 addition, 1 deletion
doc/filters.texi
libavfilter/setpts.c
+4
-1
4 additions, 1 deletion
libavfilter/setpts.c
with
5 additions
and
2 deletions
doc/filters.texi
+
1
−
1
View file @
c71e1e60
...
@@ -19392,7 +19392,7 @@ The expression is evaluated through the eval API and can contain the following
...
@@ -19392,7 +19392,7 @@ The expression is evaluated through the eval API and can contain the following
constants:
constants:
@table @option
@table @option
@item FRAME_RATE
@item FRAME_RATE
, FR
frame rate, only defined for constant frame-rate video
frame rate, only defined for constant frame-rate video
@item PTS
@item PTS
...
...
This diff is collapsed.
Click to expand it.
libavfilter/setpts.c
+
4
−
1
View file @
c71e1e60
...
@@ -57,6 +57,7 @@ static const char *const var_names[] = {
...
@@ -57,6 +57,7 @@ static const char *const var_names[] = {
"RTCSTART"
,
///< wallclock (RTC) time at the start of the movie in micro seconds
"RTCSTART"
,
///< wallclock (RTC) time at the start of the movie in micro seconds
"S"
,
// Number of samples in the current frame
"S"
,
// Number of samples in the current frame
"SR"
,
// Audio sample rate
"SR"
,
// Audio sample rate
"FR"
,
///< defined only for constant frame-rate video
NULL
NULL
};
};
...
@@ -81,6 +82,7 @@ enum var_name {
...
@@ -81,6 +82,7 @@ enum var_name {
VAR_RTCSTART
,
VAR_RTCSTART
,
VAR_S
,
VAR_S
,
VAR_SR
,
VAR_SR
,
VAR_FR
,
VAR_VARS_NB
VAR_VARS_NB
};
};
...
@@ -127,7 +129,8 @@ static int config_input(AVFilterLink *inlink)
...
@@ -127,7 +129,8 @@ static int config_input(AVFilterLink *inlink)
setpts
->
var_values
[
VAR_SAMPLE_RATE
]
=
setpts
->
var_values
[
VAR_SAMPLE_RATE
]
=
setpts
->
type
==
AVMEDIA_TYPE_AUDIO
?
inlink
->
sample_rate
:
NAN
;
setpts
->
type
==
AVMEDIA_TYPE_AUDIO
?
inlink
->
sample_rate
:
NAN
;
setpts
->
var_values
[
VAR_FRAME_RATE
]
=
inlink
->
frame_rate
.
num
&&
setpts
->
var_values
[
VAR_FRAME_RATE
]
=
setpts
->
var_values
[
VAR_FR
]
=
inlink
->
frame_rate
.
num
&&
inlink
->
frame_rate
.
den
?
inlink
->
frame_rate
.
den
?
av_q2d
(
inlink
->
frame_rate
)
:
NAN
;
av_q2d
(
inlink
->
frame_rate
)
:
NAN
;
...
...
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