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
5cae43e7
Commit
5cae43e7
authored
Sep 11, 2015
by
Clément Bœsch
Committed by
Clément Bœsch
Sep 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/v4l2: use AV_OPT_TYPE_BOOL for use_libv4l2 option
parent
7a256133
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
v4l2.c
libavdevice/v4l2.c
+1
-1
No files found.
libavdevice/v4l2.c
View file @
5cae43e7
...
...
@@ -1112,7 +1112,7 @@ static const AVOption options[] = {
{
"default"
,
"use timestamps from the kernel"
,
OFFSET
(
ts_mode
),
AV_OPT_TYPE_CONST
,
{.
i64
=
V4L_TS_DEFAULT
},
0
,
2
,
DEC
,
"timestamps"
},
{
"abs"
,
"use absolute timestamps (wall clock)"
,
OFFSET
(
ts_mode
),
AV_OPT_TYPE_CONST
,
{.
i64
=
V4L_TS_ABS
},
0
,
2
,
DEC
,
"timestamps"
},
{
"mono2abs"
,
"force conversion from monotonic to absolute timestamps"
,
OFFSET
(
ts_mode
),
AV_OPT_TYPE_CONST
,
{.
i64
=
V4L_TS_MONO2ABS
},
0
,
2
,
DEC
,
"timestamps"
},
{
"use_libv4l2"
,
"use libv4l2 (v4l-utils) conversion functions"
,
OFFSET
(
use_libv4l2
),
AV_OPT_TYPE_
INT
,
{.
i64
=
0
},
0
,
1
,
DEC
},
{
"use_libv4l2"
,
"use libv4l2 (v4l-utils) conversion functions"
,
OFFSET
(
use_libv4l2
),
AV_OPT_TYPE_
BOOL
,
{.
i64
=
0
},
0
,
1
,
DEC
},
{
NULL
},
};
...
...
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