Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
9d8b9b4b
Commit
9d8b9b4b
authored
Apr 14, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consistent DeckLink strings
parent
c2325c89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
modules/access/decklink.cpp
modules/access/decklink.cpp
+1
-1
modules/video_output/decklink.cpp
modules/video_output/decklink.cpp
+5
-5
No files found.
modules/access/decklink.cpp
View file @
9d8b9b4b
...
...
@@ -135,7 +135,7 @@ struct demux_sys_t
DeckLinkCaptureDelegate
*
delegate
;
/* We need to hold onto the IDeckLinkConfiguration object, or our settings will not apply.
See section 2.4.15 of the Blackmagic Deck
l
ink SDK documentation. */
See section 2.4.15 of the Blackmagic Deck
L
ink SDK documentation. */
IDeckLinkConfiguration
*
config
;
IDeckLinkAttributes
*
attributes
;
...
...
modules/video_output/decklink.cpp
View file @
9d8b9b4b
...
...
@@ -176,17 +176,17 @@ static void CloseAudio (vlc_object_t *);
vlc_module_begin
()
set_shortname
(
N_
(
"DecklinkOutput"
))
set_description
(
N_
(
"output module to write to Blackmagic SDI card"
))
set_section
(
N_
(
"Deck
l
ink General Options"
),
NULL
)
set_section
(
N_
(
"Deck
L
ink General Options"
),
NULL
)
add_integer
(
CFG_PREFIX
"card-index"
,
0
,
CARD_INDEX_TEXT
,
CARD_INDEX_LONGTEXT
,
true
)
add_submodule
()
set_description
(
N_
(
"Deck
l
ink Video Output module"
))
set_description
(
N_
(
"Deck
L
ink Video Output module"
))
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
set_capability
(
"vout display"
,
0
)
set_callbacks
(
OpenVideo
,
CloseVideo
)
set_section
(
N_
(
"Deck
l
ink Video Options"
),
NULL
)
set_section
(
N_
(
"Deck
L
ink Video Options"
),
NULL
)
add_string
(
VIDEO_CFG_PREFIX
"video-connection"
,
"sdi"
,
VIDEO_CONNECTION_TEXT
,
VIDEO_CONNECTION_LONGTEXT
,
true
)
change_string_list
(
ppsz_videoconns
,
ppsz_videoconns_text
)
...
...
@@ -201,12 +201,12 @@ vlc_module_begin()
add_submodule
()
set_description
(
N_
(
"Deck
l
ink Audio Output module"
))
set_description
(
N_
(
"Deck
L
ink Audio Output module"
))
set_category
(
CAT_AUDIO
)
set_subcategory
(
SUBCAT_AUDIO_AOUT
)
set_capability
(
"audio output"
,
0
)
set_callbacks
(
OpenAudio
,
CloseAudio
)
set_section
(
N_
(
"Deck
l
ink Audio Options"
),
NULL
)
set_section
(
N_
(
"Deck
L
ink Audio Options"
),
NULL
)
add_obsolete_string
(
"audio-connection"
)
add_integer
(
AUDIO_CFG_PREFIX
"audio-rate"
,
48000
,
RATE_TEXT
,
RATE_LONGTEXT
,
true
)
...
...
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