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
38fbfe06
Commit
38fbfe06
authored
Mar 28, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DTV: don't use NULL for config items
parent
1d63113c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/access/dtv/access.c
modules/access/dtv/access.c
+5
-5
No files found.
modules/access/dtv/access.c
View file @
38fbfe06
...
@@ -192,7 +192,7 @@ static const char *const satno_user[] = { N_("Unspecified"),
...
@@ -192,7 +192,7 @@ static const char *const satno_user[] = { N_("Unspecified"),
#endif
#endif
/* BDA module additional DVB-S Parameters */
/* BDA module additional DVB-S Parameters */
#define NETID_TEXT N_("Network
I
dentifier")
#define NETID_TEXT N_("Network
i
dentifier")
#define AZIMUTH_TEXT N_("Satellite azimuth")
#define AZIMUTH_TEXT N_("Satellite azimuth")
#define AZIMUTH_LONGTEXT N_("Satellite azimuth in tenths of degree")
#define AZIMUTH_LONGTEXT N_("Satellite azimuth in tenths of degree")
#define ELEVATION_TEXT N_("Satellite elevation")
#define ELEVATION_TEXT N_("Satellite elevation")
...
@@ -242,9 +242,9 @@ vlc_module_begin ()
...
@@ -242,9 +242,9 @@ vlc_module_begin ()
#endif
#endif
#ifdef WIN32
#ifdef WIN32
add_integer
(
"dvb-adapter"
,
-
1
,
ADAPTER_TEXT
,
ADAPTER_LONGTEXT
,
true
)
add_integer
(
"dvb-adapter"
,
-
1
,
ADAPTER_TEXT
,
ADAPTER_LONGTEXT
,
true
)
add_string
(
"dvb-network-name"
,
NULL
,
NAME_TEXT
,
NAME_LONGTEXT
,
true
)
add_string
(
"dvb-network-name"
,
""
,
NAME_TEXT
,
NAME_LONGTEXT
,
true
)
/* Hmm: is this one really safe??: */
/* Hmm: is this one really safe??: */
add_string
(
"dvb-create-name"
,
NULL
,
CREATE_TEXT
,
CREATE_LONGTEXT
,
true
)
add_string
(
"dvb-create-name"
,
""
,
CREATE_TEXT
,
CREATE_LONGTEXT
,
true
)
change_private
()
change_private
()
#endif
#endif
add_integer
(
"dvb-frequency"
,
0
,
FREQ_TEXT
,
FREQ_LONGTEXT
,
false
)
add_integer
(
"dvb-frequency"
,
0
,
FREQ_TEXT
,
FREQ_LONGTEXT
,
false
)
...
@@ -327,11 +327,11 @@ vlc_module_begin ()
...
@@ -327,11 +327,11 @@ vlc_module_begin ()
change_integer_list
(
auto_off_on_vlc
,
auto_off_on_user
)
change_integer_list
(
auto_off_on_vlc
,
auto_off_on_user
)
#endif
#endif
#ifdef WIN23
#ifdef WIN23
add_integer
(
"dvb-network-id"
,
0
,
NETID_TEXT
,
N
ULL
,
true
)
add_integer
(
"dvb-network-id"
,
0
,
NETID_TEXT
,
N
ETID_TEXT
,
true
)
add_integer
(
"dvb-azimuth"
,
0
,
AZIMUTH_TEXT
,
AZIMUTH_LONGTEXT
,
true
)
add_integer
(
"dvb-azimuth"
,
0
,
AZIMUTH_TEXT
,
AZIMUTH_LONGTEXT
,
true
)
add_integer
(
"dvb-elevation"
,
0
,
ELEVATION_TEXT
,
ELEVATION_LONGTEXT
,
true
)
add_integer
(
"dvb-elevation"
,
0
,
ELEVATION_TEXT
,
ELEVATION_LONGTEXT
,
true
)
add_integer
(
"dvb-longitude"
,
0
,
LONGITUDE_TEXT
,
LONGITUDE_LONGTEXT
,
true
)
add_integer
(
"dvb-longitude"
,
0
,
LONGITUDE_TEXT
,
LONGITUDE_LONGTEXT
,
true
)
add_string
(
"dvb-range"
,
NULL
,
RANGE_TEXT
,
RANGE_LONGTEXT
,
true
)
add_string
(
"dvb-range"
,
""
,
RANGE_TEXT
,
RANGE_LONGTEXT
,
true
)
/* dvb-range corresponds to the BDA InputRange parameter which is
/* dvb-range corresponds to the BDA InputRange parameter which is
* used by some drivers to control the diseqc */
* used by some drivers to control the diseqc */
...
...
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