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
ef32ce11
Commit
ef32ce11
authored
Aug 20, 2012
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename dvbpsi_decoder_sections_completed() to dvbpsi_decoder_psi_sections_completed()
parent
9ee6abd6
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
19 additions
and
19 deletions
+19
-19
src/dvbpsi.c
src/dvbpsi.c
+2
-2
src/dvbpsi.h
src/dvbpsi.h
+3
-3
src/tables/atsc_eit.c
src/tables/atsc_eit.c
+1
-1
src/tables/atsc_ett.c
src/tables/atsc_ett.c
+1
-1
src/tables/atsc_mgt.c
src/tables/atsc_mgt.c
+1
-1
src/tables/atsc_stt.c
src/tables/atsc_stt.c
+1
-1
src/tables/atsc_vct.c
src/tables/atsc_vct.c
+1
-1
src/tables/bat.c
src/tables/bat.c
+1
-1
src/tables/cat.c
src/tables/cat.c
+1
-1
src/tables/nit.c
src/tables/nit.c
+1
-1
src/tables/pat.c
src/tables/pat.c
+1
-1
src/tables/pmt.c
src/tables/pmt.c
+1
-1
src/tables/rst.c
src/tables/rst.c
+1
-1
src/tables/sdt.c
src/tables/sdt.c
+1
-1
src/tables/sis.c
src/tables/sis.c
+1
-1
src/tables/tot.c
src/tables/tot.c
+1
-1
No files found.
src/dvbpsi.c
View file @
ef32ce11
...
...
@@ -211,9 +211,9 @@ void dvbpsi_decoder_reset(dvbpsi_decoder_t* p_decoder, const bool b_force)
}
/*****************************************************************************
* dvbpsi_decoder_sections_completed
* dvbpsi_decoder_
psi_
sections_completed
*****************************************************************************/
bool
dvbpsi_decoder_sections_completed
(
dvbpsi_decoder_t
*
p_decoder
)
bool
dvbpsi_decoder_
psi_
sections_completed
(
dvbpsi_decoder_t
*
p_decoder
)
{
assert
(
p_decoder
);
assert
(
p_decoder
->
i_last_section_number
<=
255
);
...
...
src/dvbpsi.h
View file @
ef32ce11
...
...
@@ -262,15 +262,15 @@ void dvbpsi_decoder_delete(dvbpsi_decoder_t *p_decoder);
void
dvbpsi_decoder_reset
(
dvbpsi_decoder_t
*
p_decoder
,
const
bool
b_force
);
/*****************************************************************************
* dvbpsi_decoder_sections_completed
* dvbpsi_decoder_
psi_
sections_completed
*****************************************************************************/
/*!
* \fn bool dvbpsi_decoder_sections_completed(dvbpsi_decoder_t* p_decoder);
* \fn bool dvbpsi_decoder_
psi_
sections_completed(dvbpsi_decoder_t* p_decoder);
* \brief Have all sections for this decoder been received?
* \param p_decoder pointer to dvbpsi_decoder_t with decoder
* \return true when all PSI sections have been received, false otherwise
*/
bool
dvbpsi_decoder_sections_completed
(
dvbpsi_decoder_t
*
p_decoder
);
bool
dvbpsi_decoder_
psi_
sections_completed
(
dvbpsi_decoder_t
*
p_decoder
);
/*****************************************************************************
* dvbpsi_decoder_psi_section_add
...
...
src/tables/atsc_eit.c
View file @
ef32ce11
...
...
@@ -458,7 +458,7 @@ static void dvbpsi_atsc_GatherEITSections(dvbpsi_t * p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_eit_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_eit_decoder
)))
{
assert
(
p_eit_decoder
->
pf_eit_callback
);
...
...
src/tables/atsc_ett.c
View file @
ef32ce11
...
...
@@ -380,7 +380,7 @@ static void dvbpsi_atsc_GatherETTSections(dvbpsi_t* p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_ett_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_ett_decoder
)))
{
assert
(
p_ett_decoder
->
pf_ett_callback
);
...
...
src/tables/atsc_mgt.c
View file @
ef32ce11
...
...
@@ -487,7 +487,7 @@ static void dvbpsi_atsc_GatherMGTSections(dvbpsi_t * p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_mgt_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_mgt_decoder
)))
{
assert
(
p_mgt_decoder
->
pf_mgt_callback
);
...
...
src/tables/atsc_stt.c
View file @
ef32ce11
...
...
@@ -387,7 +387,7 @@ static void dvbpsi_atsc_GatherSTTSections(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_stt_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_stt_decoder
)))
{
assert
(
p_stt_decoder
->
pf_stt_callback
);
...
...
src/tables/atsc_vct.c
View file @
ef32ce11
...
...
@@ -524,7 +524,7 @@ static void dvbpsi_atsc_GatherVCTSections(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_vct_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_vct_decoder
)))
{
assert
(
p_vct_decoder
->
pf_vct_callback
);
...
...
src/tables/bat.c
View file @
ef32ce11
...
...
@@ -434,7 +434,7 @@ void dvbpsi_bat_sections_gather(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_bat_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_bat_decoder
)))
{
assert
(
p_bat_decoder
->
pf_bat_callback
);
...
...
src/tables/cat.c
View file @
ef32ce11
...
...
@@ -313,7 +313,7 @@ void dvbpsi_cat_sections_gather(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_cat_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_cat_decoder
)))
{
assert
(
p_cat_decoder
->
pf_cat_callback
);
...
...
src/tables/nit.c
View file @
ef32ce11
...
...
@@ -420,7 +420,7 @@ void dvbpsi_nit_sections_gather(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_nit_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_nit_decoder
)))
{
assert
(
p_nit_decoder
->
pf_nit_callback
);
...
...
src/tables/pat.c
View file @
ef32ce11
...
...
@@ -322,7 +322,7 @@ void dvbpsi_pat_sections_gather(dvbpsi_t* p_dvbpsi, dvbpsi_psi_section_t* p_sect
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_pat_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_pat_decoder
)))
{
assert
(
p_pat_decoder
->
pf_pat_callback
);
...
...
src/tables/pmt.c
View file @
ef32ce11
...
...
@@ -383,7 +383,7 @@ void dvbpsi_pmt_sections_gather(dvbpsi_t *p_dvbpsi, dvbpsi_psi_section_t* p_sect
return
;
}
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_pmt_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_pmt_decoder
)))
{
assert
(
p_pmt_decoder
->
pf_pmt_callback
);
...
...
src/tables/rst.c
View file @
ef32ce11
...
...
@@ -378,7 +378,7 @@ void dvbpsi_rst_sections_gather(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_rst_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_rst_decoder
)))
{
assert
(
p_rst_decoder
->
pf_rst_callback
);
...
...
src/tables/sdt.c
View file @
ef32ce11
...
...
@@ -400,7 +400,7 @@ void dvbpsi_sdt_sections_gather(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_sdt_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_sdt_decoder
)))
{
assert
(
p_sdt_decoder
->
pf_sdt_callback
);
...
...
src/tables/sis.c
View file @
ef32ce11
...
...
@@ -392,7 +392,7 @@ void dvbpsi_sis_sections_gather(dvbpsi_t *p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_sis_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_sis_decoder
)))
{
assert
(
p_sis_decoder
->
pf_sis_callback
);
...
...
src/tables/tot.c
View file @
ef32ce11
...
...
@@ -370,7 +370,7 @@ void dvbpsi_tot_sections_gather(dvbpsi_t* p_dvbpsi,
}
/* Check if we have all the sections */
if
(
dvbpsi_decoder_sections_completed
(
DVBPSI_DECODER
(
p_tot_decoder
)))
if
(
dvbpsi_decoder_
psi_
sections_completed
(
DVBPSI_DECODER
(
p_tot_decoder
)))
{
assert
(
p_tot_decoder
->
pf_tot_callback
);
...
...
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