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
c795a13b
Commit
c795a13b
authored
Mar 05, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DVB: fix turbo FEC check
Frontend features are in an enum, so ifdef does not work.
parent
192f7f9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/access/dvb/linux_dvb.c
modules/access/dvb/linux_dvb.c
+2
-1
No files found.
modules/access/dvb/linux_dvb.c
View file @
c795a13b
...
@@ -731,7 +731,8 @@ static int FrontendInfo( access_t *p_access )
...
@@ -731,7 +731,8 @@ static int FrontendInfo( access_t *p_access )
if
(
p_frontend
->
info
.
caps
&
FE_HAS_EXTENDED_CAPS
)
if
(
p_frontend
->
info
.
caps
&
FE_HAS_EXTENDED_CAPS
)
msg_Dbg
(
p_access
,
" 8-level VSB modulation"
);
msg_Dbg
(
p_access
,
" 8-level VSB modulation"
);
/* 3 capabilities that don't exist yet HERE */
/* 3 capabilities that don't exist yet HERE */
#ifdef FE_CAN_TURBO_FEC
#if (DVB_API_VERSION > 5) \
|| ((DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR >= 2))
if
(
p_frontend
->
info
.
caps
&
FE_CAN_TURBO_FEC
)
if
(
p_frontend
->
info
.
caps
&
FE_CAN_TURBO_FEC
)
msg_Dbg
(
p_access
,
" Turbo FEC modulation"
);
msg_Dbg
(
p_access
,
" Turbo FEC modulation"
);
#else
#else
...
...
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