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
fd122ba2
Commit
fd122ba2
authored
Mar 11, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Linux DVB: distinguish Clear QAM from terrestrial ATSC
This will be needed for proper DVBv5.5 support.
parent
a9862530
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
modules/access/dtv/dtv.h
modules/access/dtv/dtv.h
+1
-0
modules/access/dtv/linux.c
modules/access/dtv/linux.c
+2
-2
No files found.
modules/access/dtv/dtv.h
View file @
fd122ba2
...
...
@@ -28,6 +28,7 @@ extern "C" {
enum
{
ATSC
=
0x00000001
,
CQAM
=
0x00000002
,
DVB_C
=
0x00000010
,
DVB_C2
=
0x00000020
,
...
...
modules/access/dtv/linux.c
View file @
fd122ba2
...
...
@@ -460,7 +460,7 @@ static unsigned dvb_probe_frontend (dvb_device_t *d, int fd)
case
FE_QPSK
:
systems
=
DVB_S
;
break
;
case
FE_QAM
:
systems
=
DVB_C
;
break
;
case
FE_OFDM
:
systems
=
DVB_T
;
break
;
case
FE_ATSC
:
systems
=
ATSC
;
break
;
case
FE_ATSC
:
systems
=
ATSC
|
CQAM
;
break
;
default:
systems
=
0
;
msg_Err
(
d
->
obj
,
"unknown frontend type %u"
,
info
.
type
);
...
...
@@ -1032,7 +1032,7 @@ int dvb_set_cqam (dvb_device_t *d, uint32_t freq, const char *modstr)
{
unsigned
mod
=
dvb_parse_modulation
(
modstr
,
QAM_AUTO
);
if
(
dvb_find_frontend
(
d
,
ATSC
))
if
(
dvb_find_frontend
(
d
,
CQAM
))
return
-
1
;
return
dvb_set_props
(
d
,
4
,
DTV_CLEAR
,
0
,
DTV_DELIVERY_SYSTEM
,
SYS_DVBC_ANNEX_B
,
...
...
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