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
4afbaf58
Commit
4afbaf58
authored
Sep 06, 2012
by
Benjamin Drung
Committed by
Jean-Baptiste Kempf
Sep 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo: bandwith -> bandwidth.
parent
840d47a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/access/dtv/dtv.h
modules/access/dtv/dtv.h
+1
-1
modules/access/dvb/linux_dvb.c
modules/access/dvb/linux_dvb.c
+3
-3
No files found.
modules/access/dtv/dtv.h
View file @
4afbaf58
...
...
@@ -108,7 +108,7 @@ typedef struct isdbt_layer
uint8_t
time_interleaving
;
}
isdbt_layer_t
;
int
dvb_set_isdbt
(
dvb_device_t
*
,
uint32_t
freq
,
uint32_t
bandwith
,
int
dvb_set_isdbt
(
dvb_device_t
*
,
uint32_t
freq
,
uint32_t
bandwi
d
th
,
int
transmission
,
uint32_t
guard
,
const
isdbt_layer_t
[
3
]);
typedef
struct
isdbt_sound
...
...
modules/access/dvb/linux_dvb.c
View file @
4afbaf58
...
...
@@ -959,11 +959,11 @@ static int FrontendSetQAM( access_t *p_access )
static
fe_bandwidth_t
DecodeBandwidth
(
access_t
*
p_access
)
{
fe_bandwidth_t
fe_bandwidth
=
0
;
int
i_bandwith
=
var_GetInteger
(
p_access
,
"dvb-bandwidth"
);
int
i_bandwi
d
th
=
var_GetInteger
(
p_access
,
"dvb-bandwidth"
);
msg_Dbg
(
p_access
,
"using bandwidth=%d"
,
i_bandwith
);
msg_Dbg
(
p_access
,
"using bandwidth=%d"
,
i_bandwi
d
th
);
switch
(
i_bandwith
)
switch
(
i_bandwi
d
th
)
{
case
0
:
fe_bandwidth
=
BANDWIDTH_AUTO
;
break
;
case
6
:
fe_bandwidth
=
BANDWIDTH_6_MHZ
;
break
;
...
...
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