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
5fce4753
Commit
5fce4753
authored
May 09, 2016
by
Przemysław Sobala
Committed by
Michael Niedermayer
May 09, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_fps: set fps value boundaries
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
38eeb85f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vf_fps.c
libavfilter/vf_fps.c
+1
-1
No files found.
libavfilter/vf_fps.c
View file @
5fce4753
...
...
@@ -62,7 +62,7 @@ typedef struct FPSContext {
#define V AV_OPT_FLAG_VIDEO_PARAM
#define F AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
fps_options
[]
=
{
{
"fps"
,
"A string describing desired output framerate"
,
OFFSET
(
framerate
),
AV_OPT_TYPE_VIDEO_RATE
,
{
.
str
=
"25"
},
.
flags
=
V
|
F
},
{
"fps"
,
"A string describing desired output framerate"
,
OFFSET
(
framerate
),
AV_OPT_TYPE_VIDEO_RATE
,
{
.
str
=
"25"
},
0
,
INT_MAX
,
V
|
F
},
{
"start_time"
,
"Assume the first PTS should be this value."
,
OFFSET
(
start_time
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
DBL_MAX
},
-
DBL_MAX
,
DBL_MAX
,
V
},
{
"round"
,
"set rounding method for timestamps"
,
OFFSET
(
rounding
),
AV_OPT_TYPE_INT
,
{
.
i64
=
AV_ROUND_NEAR_INF
},
0
,
5
,
V
|
F
,
"round"
},
{
"zero"
,
"round towards 0"
,
OFFSET
(
rounding
),
AV_OPT_TYPE_CONST
,
{
.
i64
=
AV_ROUND_ZERO
},
0
,
5
,
V
|
F
,
"round"
},
...
...
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