Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
dfa2523b
Commit
dfa2523b
authored
Jan 15, 2018
by
Vishwanath Dixit
Committed by
Marton Balint
Jan 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/decklink: addition of PTS_SRC_NB in enum DecklinkPtsSource
Signed-off-by:
Marton Balint
<
cus@passwd.hu
>
parent
7c27bbd5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
decklink_common_c.h
libavdevice/decklink_common_c.h
+1
-0
decklink_dec_c.c
libavdevice/decklink_dec_c.c
+2
-2
No files found.
libavdevice/decklink_common_c.h
View file @
dfa2523b
...
...
@@ -28,6 +28,7 @@ typedef enum DecklinkPtsSource {
PTS_SRC_VIDEO
=
2
,
PTS_SRC_REFERENCE
=
3
,
PTS_SRC_WALLCLOCK
=
4
,
PTS_SRC_NB
}
DecklinkPtsSource
;
struct
decklink_cctx
{
...
...
libavdevice/decklink_dec_c.c
View file @
dfa2523b
...
...
@@ -64,8 +64,8 @@ static const AVOption options[] = {
{
"analog_xlr"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
4
},
0
,
0
,
DEC
,
"audio_input"
},
{
"analog_rca"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
5
},
0
,
0
,
DEC
,
"audio_input"
},
{
"microphone"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
6
},
0
,
0
,
DEC
,
"audio_input"
},
{
"audio_pts"
,
"audio pts source"
,
OFFSET
(
audio_pts_source
),
AV_OPT_TYPE_INT
,
{
.
i64
=
PTS_SRC_AUDIO
},
1
,
4
,
DEC
,
"pts_source"
},
{
"video_pts"
,
"video pts source"
,
OFFSET
(
video_pts_source
),
AV_OPT_TYPE_INT
,
{
.
i64
=
PTS_SRC_VIDEO
},
1
,
4
,
DEC
,
"pts_source"
},
{
"audio_pts"
,
"audio pts source"
,
OFFSET
(
audio_pts_source
),
AV_OPT_TYPE_INT
,
{
.
i64
=
PTS_SRC_AUDIO
},
1
,
PTS_SRC_NB
-
1
,
DEC
,
"pts_source"
},
{
"video_pts"
,
"video pts source"
,
OFFSET
(
video_pts_source
),
AV_OPT_TYPE_INT
,
{
.
i64
=
PTS_SRC_VIDEO
},
1
,
PTS_SRC_NB
-
1
,
DEC
,
"pts_source"
},
{
"audio"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PTS_SRC_AUDIO
},
0
,
0
,
DEC
,
"pts_source"
},
{
"video"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PTS_SRC_VIDEO
},
0
,
0
,
DEC
,
"pts_source"
},
{
"reference"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PTS_SRC_REFERENCE
},
0
,
0
,
DEC
,
"pts_source"
},
...
...
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