Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
6635e480
Commit
6635e480
authored
Mar 03, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DVB: list possible voltages
parent
bc90d2ed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/access/dvb/access.c
modules/access/dvb/access.c
+5
-2
No files found.
modules/access/dvb/access.c
View file @
6635e480
...
@@ -111,8 +111,10 @@ static void Close( vlc_object_t *p_this );
...
@@ -111,8 +111,10 @@ static void Close( vlc_object_t *p_this );
#define SATNO_TEXT N_("Satellite number in the Diseqc system")
#define SATNO_TEXT N_("Satellite number in the Diseqc system")
#define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=satellite number].")
#define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=satellite number].")
#define VOLTAGE_TEXT N_("LNB voltage")
#define VOLTAGE_TEXT N_("LNB voltage (V)")
#define VOLTAGE_LONGTEXT N_("In Volts [0, 13=vertical, 18=horizontal].")
#define VOLTAGE_LONGTEXT ""
static
const
int
voltages
[]
=
{
0
,
13
,
18
};
static
const
char
*
const
voltages_text
[]
=
{
N_
(
"off"
),
N_
(
"13 V"
),
N_
(
"18 V"
)
};
#define HIGH_VOLTAGE_TEXT N_("High LNB voltage")
#define HIGH_VOLTAGE_TEXT N_("High LNB voltage")
#define HIGH_VOLTAGE_LONGTEXT N_("Enable high voltage if your cables are " \
#define HIGH_VOLTAGE_LONGTEXT N_("Enable high voltage if your cables are " \
...
@@ -221,6 +223,7 @@ vlc_module_begin ()
...
@@ -221,6 +223,7 @@ vlc_module_begin ()
true
)
true
)
add_integer
(
"dvb-voltage"
,
13
,
VOLTAGE_TEXT
,
VOLTAGE_LONGTEXT
,
add_integer
(
"dvb-voltage"
,
13
,
VOLTAGE_TEXT
,
VOLTAGE_LONGTEXT
,
true
)
true
)
change_integer_list
(
voltages
,
voltages_text
)
add_bool
(
"dvb-high-voltage"
,
false
,
HIGH_VOLTAGE_TEXT
,
add_bool
(
"dvb-high-voltage"
,
false
,
HIGH_VOLTAGE_TEXT
,
HIGH_VOLTAGE_LONGTEXT
,
true
)
HIGH_VOLTAGE_LONGTEXT
,
true
)
add_integer
(
"dvb-tone"
,
-
1
,
TONE_TEXT
,
TONE_LONGTEXT
,
add_integer
(
"dvb-tone"
,
-
1
,
TONE_TEXT
,
TONE_LONGTEXT
,
...
...
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