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
b2b5e869
Commit
b2b5e869
authored
Feb 16, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/table/bat*: Cleanup
- Use bool for structure members that are used as bools - Indentation
parent
2e95f74f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
126 deletions
+121
-126
src/tables/bat.c
src/tables/bat.c
+117
-122
src/tables/bat.h
src/tables/bat.h
+3
-3
src/tables/bat_private.h
src/tables/bat_private.h
+1
-1
No files found.
src/tables/bat.c
View file @
b2b5e869
...
...
@@ -99,7 +99,7 @@ bool dvbpsi_AttachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
p_bat_decoder
->
pf_bat_callback
=
pf_callback
;
p_bat_decoder
->
p_cb_data
=
p_cb_data
;
/* BAT decoder initial state */
p_bat_decoder
->
b_current_valid
=
0
;
p_bat_decoder
->
b_current_valid
=
false
;
p_bat_decoder
->
p_building_bat
=
NULL
;
for
(
unsigned
int
i
=
0
;
i
<
256
;
i
++
)
...
...
@@ -158,7 +158,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extensi
* Initialize a pre-allocated dvbpsi_bat_t structure.
*****************************************************************************/
void
dvbpsi_InitBAT
(
dvbpsi_bat_t
*
p_bat
,
uint16_t
i_bouquet_id
,
uint8_t
i_version
,
int
b_current_next
)
bool
b_current_next
)
{
p_bat
->
i_bouquet_id
=
i_bouquet_id
;
p_bat
->
i_version
=
i_version
;
...
...
@@ -287,33 +287,35 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
dvbpsi_demux_t
*
p_demux
=
(
dvbpsi_demux_t
*
)
p_dvbpsi
->
p_private
;
dvbpsi_bat_decoder_t
*
p_bat_decoder
=
(
dvbpsi_bat_decoder_t
*
)
p_private_decoder
;
int
b_append
=
1
;
int
b_reinit
=
0
;
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
"Table version %2d, "
"i_table_id %2d, "
"i_extension %5d, "
"section %3d up to %3d, "
"current %1d"
,
p_section
->
i_version
,
p_section
->
i_table_id
,
p_section
->
i_extension
,
p_section
->
i_number
,
p_section
->
i_last_number
,
p_section
->
b_current_next
);
bool
b_reinit
=
false
;
assert
(
p_dvbpsi
);
assert
(
p_dvbpsi
->
p_private
);
if
(
!
p_section
->
b_syntax_indicator
)
{
/* Invalid section_syntax_indicator */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"invalid section (section_syntax_indicator == 0)"
);
b_append
=
0
;
dvbpsi_DeletePSISections
(
p_section
);
return
;
}
/* Now if b_append is true then we have a valid BAT section */
if
(
b_append
)
{
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
"Table version %2d, "
"i_table_id %2d, "
"i_extension %5d, "
"section %3d up to %3d, "
"current %1d"
,
p_section
->
i_version
,
p_section
->
i_table_id
,
p_section
->
i_extension
,
p_section
->
i_number
,
p_section
->
i_last_number
,
p_section
->
b_current_next
);
/* We have a valid BAT section */
/* TS discontinuity check */
if
(
p_demux
->
b_discontinuity
)
{
b_reinit
=
1
;
p_demux
->
b_discontinuity
=
0
;
b_reinit
=
true
;
p_demux
->
b_discontinuity
=
false
;
}
else
{
...
...
@@ -323,49 +325,49 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
if
(
p_bat_decoder
->
p_building_bat
->
i_bouquet_id
!=
p_section
->
i_extension
)
{
/* bouquet_id */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'bouquet_id' differs"
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'bouquet_id' differs"
" whereas no TS discontinuity has occured"
);
b_reinit
=
1
;
b_reinit
=
true
;
}
else
if
(
p_bat_decoder
->
p_building_bat
->
i_version
!=
p_section
->
i_version
)
{
/* version_number */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'version_number' differs"
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'version_number' differs"
" whereas no discontinuity has occured"
);
b_reinit
=
1
;
b_reinit
=
true
;
}
else
if
(
p_bat_decoder
->
i_last_section_number
!=
p_section
->
i_last_number
)
{
/* last_section_number */
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'last_section_number' differs"
dvbpsi_error
(
p_dvbpsi
,
"BAT decoder"
,
"'last_section_number' differs"
" whereas no discontinuity has occured"
);
b_reinit
=
1
;
b_reinit
=
true
;
}
}
else
{
if
(
(
p_bat_decoder
->
b_current_valid
)
&&
(
p_bat_decoder
->
current_bat
.
i_version
==
p_section
->
i_version
))
&&
(
p_bat_decoder
->
current_bat
.
i_version
==
p_section
->
i_version
)
&&
(
p_bat_decoder
->
current_bat
.
b_current_next
==
p_section
->
b_current_next
))
{
/* Signal a new BAT if the previous one wasn't active */
if
(
(
!
p_bat_decoder
->
current_bat
.
b_current_next
)
/* Don't decode since this version is already decoded */
dvbpsi_debug
(
p_dvbpsi
,
"BAT decoder"
,
"ignoring already decoded section %d"
,
p_section
->
i_number
);
}
else
if
(
(
!
p_bat_decoder
->
current_bat
.
b_current_next
)
&&
(
p_section
->
b_current_next
))
{
{
/* Signal a new BAT if the previous one wasn't active */
dvbpsi_bat_t
*
p_bat
=
NULL
;
p_bat_decoder
->
current_bat
.
b_current_next
=
1
;
p_bat_decoder
->
current_bat
.
b_current_next
=
true
;
*
p_bat
=
p_bat_decoder
->
current_bat
;
p_bat_decoder
->
pf_bat_callback
(
p_bat_decoder
->
p_cb_data
,
p_bat
);
}
/* Don't decode since this version is already decoded */
b_append
=
0
;
}
}
dvbpsi_DeletePSISections
(
p_section
);
return
;
}
}
...
...
@@ -373,7 +375,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
if
(
b_reinit
)
{
/* Force redecoding */
p_bat_decoder
->
b_current_valid
=
0
;
p_bat_decoder
->
b_current_valid
=
false
;
/* Free structures */
if
(
p_bat_decoder
->
p_building_bat
)
{
...
...
@@ -392,9 +394,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
}
/* Append the section to the list if wanted */
if
(
b_append
)
{
int
b_complete
=
0
;
bool
b_complete
=
false
;
/* Initialize the structures if it's the first section received */
if
(
!
p_bat_decoder
->
p_building_bat
)
...
...
@@ -427,14 +427,14 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
if
(
!
p_bat_decoder
->
ap_sections
[
i
])
break
;
if
(
i
==
p_bat_decoder
->
i_last_section_number
)
b_complete
=
1
;
b_complete
=
true
;
}
if
(
b_complete
)
{
/* Save the current information */
p_bat_decoder
->
current_bat
=
*
p_bat_decoder
->
p_building_bat
;
p_bat_decoder
->
b_current_valid
=
1
;
p_bat_decoder
->
b_current_valid
=
true
;
/* Chain the sections */
if
(
p_bat_decoder
->
i_last_section_number
)
{
...
...
@@ -455,11 +455,6 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
for
(
unsigned
int
i
=
0
;
i
<=
p_bat_decoder
->
i_last_section_number
;
i
++
)
p_bat_decoder
->
ap_sections
[
i
]
=
NULL
;
}
}
else
{
dvbpsi_DeletePSISections
(
p_section
);
}
}
/*****************************************************************************
...
...
@@ -544,8 +539,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
uint8_t
*
p_transport_stream_loop_length
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
b_syntax_indicator
=
1
;
p_current
->
b_private_indicator
=
1
;
p_current
->
b_syntax_indicator
=
true
;
p_current
->
b_private_indicator
=
true
;
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_version
=
p_bat
->
i_version
;
...
...
@@ -577,8 +572,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
p_prev
->
p_next
=
p_current
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
b_syntax_indicator
=
1
;
p_current
->
b_private_indicator
=
1
;
p_current
->
b_syntax_indicator
=
true
;
p_current
->
b_private_indicator
=
true
;
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_version
=
p_bat
->
i_version
;
...
...
@@ -648,8 +643,8 @@ dvbpsi_psi_section_t* dvbpsi_GenBATSections(dvbpsi_t *p_dvbpsi, dvbpsi_bat_t* p_
p_prev
->
p_next
=
p_current
;
p_current
->
i_table_id
=
0x4a
;
p_current
->
b_syntax_indicator
=
1
;
p_current
->
b_private_indicator
=
1
;
p_current
->
b_syntax_indicator
=
true
;
p_current
->
b_private_indicator
=
true
;
p_current
->
i_length
=
13
;
/* including CRC_32 */
p_current
->
i_extension
=
p_bat
->
i_bouquet_id
;
p_current
->
i_version
=
p_bat
->
i_version
;
...
...
src/tables/bat.h
View file @
b2b5e869
...
...
@@ -91,7 +91,7 @@ typedef struct dvbpsi_bat_s
{
uint16_t
i_bouquet_id
;
/*!< bouquet_id */
uint8_t
i_version
;
/*!< version_number */
int
b_current_next
;
/*!< current_next_indicator */
bool
b_current_next
;
/*!< current_next_indicator */
dvbpsi_descriptor_t
*
p_first_descriptor
;
/*!< descriptor list */
...
...
@@ -150,7 +150,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
*****************************************************************************/
/*!
* \fn void dvbpsi_InitBAT(dvbpsi_bat_t *p_bat, uint16_t i_bouquet_id, uint8_t i_version,
int
b_current_next)
bool
b_current_next)
* \brief Initialize a user-allocated dvbpsi_bat_t structure.
* \param p_bat pointer to the BAT structure
* \param i_bouquet_id bouquet ID
...
...
@@ -159,7 +159,7 @@ void dvbpsi_DetachBAT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
* \return nothing.
*/
void
dvbpsi_InitBAT
(
dvbpsi_bat_t
*
p_bat
,
uint16_t
i_bouquet_id
,
uint8_t
i_version
,
int
b_current_next
);
bool
b_current_next
);
/*!
* \def dvbpsi_NewBAT(p_bat, i_bouquet_id, i_version, b_current_next)
...
...
src/tables/bat_private.h
View file @
b2b5e869
...
...
@@ -44,7 +44,7 @@ typedef struct dvbpsi_bat_decoder_s
dvbpsi_bat_t
current_bat
;
dvbpsi_bat_t
*
p_building_bat
;
int
b_current_valid
;
bool
b_current_valid
;
uint8_t
i_last_section_number
;
dvbpsi_psi_section_t
*
ap_sections
[
256
];
...
...
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