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
f09b30c7
Commit
f09b30c7
authored
Sep 16, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Memory error handling
parent
e23d890e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
modules/access/bda/bdagraph.cpp
modules/access/bda/bdagraph.cpp
+18
-9
No files found.
modules/access/bda/bdagraph.cpp
View file @
f09b30c7
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include "bdagraph.h"
#include "bdagraph.h"
#include <ctype.h>
/****************************************************************************
/****************************************************************************
* Interfaces for calls from C
* Interfaces for calls from C
...
@@ -534,21 +535,29 @@ int BDAGraph::SubmitDVBSTuneRequest()
...
@@ -534,21 +535,29 @@ int BDAGraph::SubmitDVBSTuneRequest()
l_lnb_lof1
=
var_GetInteger
(
p_access
,
"dvb-lnb-lof1"
);
l_lnb_lof1
=
var_GetInteger
(
p_access
,
"dvb-lnb-lof1"
);
l_lnb_lof2
=
var_GetInteger
(
p_access
,
"dvb-lnb-lof2"
);
l_lnb_lof2
=
var_GetInteger
(
p_access
,
"dvb-lnb-lof2"
);
l_lnb_slof
=
var_GetInteger
(
p_access
,
"dvb-lnb-slof"
);
l_lnb_slof
=
var_GetInteger
(
p_access
,
"dvb-lnb-slof"
);
psz_polarisation
=
var_GetString
(
p_access
,
"dvb-polarisation"
);
psz_polarisation
=
var_Get
NonEmpty
String
(
p_access
,
"dvb-polarisation"
);
l_inversion
=
var_GetInteger
(
p_access
,
"dvb-inversion"
);
l_inversion
=
var_GetInteger
(
p_access
,
"dvb-inversion"
);
l_network_id
=
var_GetInteger
(
p_access
,
"dvb-network_id"
);
l_network_id
=
var_GetInteger
(
p_access
,
"dvb-network_id"
);
b_west
=
(
l_longitude
<
0
)
?
TRUE
:
FALSE
;
b_west
=
(
l_longitude
<
0
)
?
TRUE
:
FALSE
;
i_polar
=
BDA_POLARISATION_NOT_SET
;
i_polar
=
BDA_POLARISATION_NOT_SET
;
if
(
*
psz_polarisation
==
'H'
||
*
psz_polarisation
==
'h'
)
if
(
psz_polarisation
!=
NULL
)
i_polar
=
BDA_POLARISATION_LINEAR_H
;
switch
(
toupper
(
psz_polarisation
[
0
]
)
)
if
(
*
psz_polarisation
==
'V'
||
*
psz_polarisation
==
'v'
)
{
i_polar
=
BDA_POLARISATION_LINEAR_V
;
case
'H'
:
if
(
*
psz_polarisation
==
'L'
||
*
psz_polarisation
==
'l'
)
i_polar
=
BDA_POLARISATION_LINEAR_H
;
i_polar
=
BDA_POLARISATION_CIRCULAR_L
;
break
;
if
(
*
psz_polarisation
==
'R'
||
*
psz_polarisation
==
'r'
)
case
'V'
:
i_polar
=
BDA_POLARISATION_CIRCULAR_R
;
i_polar
=
BDA_POLARISATION_LINEAR_V
;
break
;
case
'L'
:
i_polar
=
BDA_POLARISATION_CIRCULAR_L
;
break
;
case
'R'
:
i_polar
=
BDA_POLARISATION_CIRCULAR_R
;
break
;
}
i_inversion
=
BDA_SPECTRAL_INVERSION_NOT_SET
;
i_inversion
=
BDA_SPECTRAL_INVERSION_NOT_SET
;
if
(
l_inversion
==
0
)
if
(
l_inversion
==
0
)
...
...
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