Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
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
libdvbpsi
Commits
b8303d17
Commit
b8303d17
authored
Jun 13, 2012
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SIS: handle multiple PSI sections.
parent
ad90fcf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
9 deletions
+32
-9
src/tables/sis.c
src/tables/sis.c
+32
-9
No files found.
src/tables/sis.c
View file @
b8303d17
...
@@ -94,6 +94,11 @@ bool dvbpsi_AttachSIS(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extensi
...
@@ -94,6 +94,11 @@ bool dvbpsi_AttachSIS(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extensi
p_sis_decoder
->
pf_sis_callback
=
pf_callback
;
p_sis_decoder
->
pf_sis_callback
=
pf_callback
;
p_sis_decoder
->
p_cb_data
=
p_cb_data
;
p_sis_decoder
->
p_cb_data
=
p_cb_data
;
/* SIS decoder initial state */
p_sis_decoder
->
b_current_valid
=
false
;
p_sis_decoder
->
p_building_sis
=
NULL
;
for
(
unsigned
int
i
=
0
;
i
<=
255
;
i
++
)
p_sis_decoder
->
ap_sections
[
i
]
=
NULL
;
return
true
;
return
true
;
}
}
...
@@ -122,6 +127,23 @@ void dvbpsi_DetachSIS(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
...
@@ -122,6 +127,23 @@ void dvbpsi_DetachSIS(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
return
;
return
;
}
}
assert
(
p_subdec
->
p_decoder
);
dvbpsi_sis_decoder_t
*
p_sis_decoder
;
p_sis_decoder
=
(
dvbpsi_sis_decoder_t
*
)
p_subdec
->
p_decoder
;
if
(
p_sis_decoder
->
p_building_sis
)
dvbpsi_DeleteSIS
(
p_sis_decoder
->
p_building_sis
);
p_sis_decoder
->
p_building_sis
=
NULL
;
for
(
unsigned
int
i
=
0
;
i
<=
255
;
i
++
)
{
if
(
p_sis_decoder
->
ap_sections
[
i
])
{
dvbpsi_DeletePSISections
(
p_sis_decoder
->
ap_sections
[
i
]);
p_sis_decoder
->
ap_sections
[
i
]
=
NULL
;
}
}
dvbpsi_DetachDemuxSubDecoder
(
p_demux
,
p_subdec
);
dvbpsi_DetachDemuxSubDecoder
(
p_demux
,
p_subdec
);
dvbpsi_DeleteDemuxSubDecoder
(
p_subdec
);
dvbpsi_DeleteDemuxSubDecoder
(
p_subdec
);
}
}
...
@@ -237,11 +259,13 @@ static void dvbpsi_ReInitSIS(dvbpsi_sis_decoder_t* p_decoder, const bool b_force
...
@@ -237,11 +259,13 @@ static void dvbpsi_ReInitSIS(dvbpsi_sis_decoder_t* p_decoder, const bool b_force
/* Force redecoding */
/* Force redecoding */
if
(
b_force
)
if
(
b_force
)
{
p_decoder
->
b_current_valid
=
false
;
p_decoder
->
b_current_valid
=
false
;
/* Free structures */
/* Free structures */
if
(
p_decoder
->
p_building_sis
)
if
(
p_decoder
->
p_building_sis
)
free
(
p_decoder
->
p_building_sis
);
dvbpsi_DeleteSIS
(
p_decoder
->
p_building_sis
);
}
p_decoder
->
p_building_sis
=
NULL
;
p_decoder
->
p_building_sis
=
NULL
;
/* Clear the section array */
/* Clear the section array */
...
@@ -255,13 +279,12 @@ static void dvbpsi_ReInitSIS(dvbpsi_sis_decoder_t* p_decoder, const bool b_force
...
@@ -255,13 +279,12 @@ static void dvbpsi_ReInitSIS(dvbpsi_sis_decoder_t* p_decoder, const bool b_force
}
}
}
}
static
bool
dvbpsi_CheckSIS
(
dvbpsi_t
*
p_dvbpsi
,
dvbpsi_psi_section_t
*
p_section
)
static
bool
dvbpsi_CheckSIS
(
dvbpsi_t
*
p_dvbpsi
,
dvbpsi_sis_decoder_t
*
p_sis_decoder
,
dvbpsi_psi_section_t
*
p_section
)
{
{
bool
b_reinit
=
false
;
bool
b_reinit
=
false
;
assert
(
p_dvbpsi
->
p_private
);
assert
(
p_dvbpsi
);
assert
(
p_sis_decoder
);
dvbpsi_sis_decoder_t
*
p_sis_decoder
;
p_sis_decoder
=
(
dvbpsi_sis_decoder_t
*
)
p_dvbpsi
->
p_private
;
if
(
p_sis_decoder
->
p_building_sis
->
i_protocol_version
!=
0
)
if
(
p_sis_decoder
->
p_building_sis
->
i_protocol_version
!=
0
)
{
{
...
@@ -385,7 +408,7 @@ void dvbpsi_GatherSISSections(dvbpsi_t *p_dvbpsi,
...
@@ -385,7 +408,7 @@ void dvbpsi_GatherSISSections(dvbpsi_t *p_dvbpsi,
/* Perform a few sanity checks */
/* Perform a few sanity checks */
if
(
p_sis_decoder
->
p_building_sis
)
if
(
p_sis_decoder
->
p_building_sis
)
{
{
if
(
dvbpsi_CheckSIS
(
p_dvbpsi
,
p_section
))
if
(
dvbpsi_CheckSIS
(
p_dvbpsi
,
p_s
is_decoder
,
p_s
ection
))
dvbpsi_ReInitSIS
(
p_sis_decoder
,
true
);
dvbpsi_ReInitSIS
(
p_sis_decoder
,
true
);
}
}
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