Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
6db314c1
Commit
6db314c1
authored
Oct 29, 2009
by
Marian Ďurkovič
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
en50221: Provide compile-time option for slow CAMs
parent
8bfd4061
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/access/dvb/en50221.c
modules/access/dvb/en50221.c
+5
-1
No files found.
modules/access/dvb/en50221.c
View file @
6db314c1
...
...
@@ -79,6 +79,7 @@
#undef DEBUG_TPDU
#define HLCI_WAIT_CAM_READY 0
#define CAM_PROG_MAX MAX_PROGRAMS
//#define CAPMT_WAIT 100 /* uncomment this for slow CAMs */
static
void
ResourceManagerOpen
(
access_t
*
p_access
,
int
i_session_id
);
static
void
ApplicationInformationOpen
(
access_t
*
p_access
,
int
i_session_id
);
...
...
@@ -973,7 +974,7 @@ typedef struct
static
bool
CheckSystemID
(
system_ids_t
*
p_ids
,
uint16_t
i_id
)
{
int
i
=
0
;
if
(
!
p_ids
)
return
false
;
if
(
!
p_ids
)
return
true
;
/* dummy session for high-level CI intf */
while
(
p_ids
->
pi_system_ids
[
i
]
)
{
...
...
@@ -1243,6 +1244,9 @@ static void CAPMTAdd( access_t * p_access, int i_session_id,
return
;
}
#ifdef CAPMT_WAIT
msleep
(
CAPMT_WAIT
*
1000
);
#endif
msg_Dbg
(
p_access
,
"adding CAPMT for SID %d on session %d"
,
p_pmt
->
i_program_number
,
i_session_id
);
...
...
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