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
4745353e
Commit
4745353e
authored
Jun 14, 2004
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in DVB-T tuning code.
parent
c56944cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/access/dvb/linux_dvb.c
modules/access/dvb/linux_dvb.c
+3
-3
No files found.
modules/access/dvb/linux_dvb.c
View file @
4745353e
...
...
@@ -401,7 +401,7 @@ static fe_code_rate_t DecodeFEC( input_thread_t * p_input, int i_val )
{
fe_code_rate_t
fe_fec
=
FEC_NONE
;
msg_Dbg
(
p_input
,
"using fe
q
=%d"
,
i_val
);
msg_Dbg
(
p_input
,
"using fe
c
=%d"
,
i_val
);
switch
(
i_val
)
{
...
...
@@ -811,9 +811,9 @@ static int FrontendSetOFDM( input_thread_t * p_input )
fep
.
inversion
=
DecodeInversion
(
p_input
);
fep
.
u
.
ofdm
.
bandwidth
=
DecodeBandwidth
(
p_input
);
var_Get
(
p_input
,
"dvb-code-rate-
HP
"
,
&
val
);
var_Get
(
p_input
,
"dvb-code-rate-
hp
"
,
&
val
);
fep
.
u
.
ofdm
.
code_rate_HP
=
DecodeFEC
(
p_input
,
val
.
i_int
);
var_Get
(
p_input
,
"dvb-code-rate-
LP
"
,
&
val
);
var_Get
(
p_input
,
"dvb-code-rate-
lp
"
,
&
val
);
fep
.
u
.
ofdm
.
code_rate_LP
=
DecodeFEC
(
p_input
,
val
.
i_int
);
fep
.
u
.
ofdm
.
constellation
=
DecodeModulation
(
p_input
);
fep
.
u
.
ofdm
.
transmission_mode
=
DecodeTransmission
(
p_input
);
...
...
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