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
b557c99c
Commit
b557c99c
authored
May 23, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/tables: Remove unused parameter from private dvbpsi_DecodeXXX() function.
parent
abaf5349
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
src/tables/bat.c
src/tables/bat.c
+2
-2
src/tables/bat_private.h
src/tables/bat_private.h
+1
-1
src/tables/nit.c
src/tables/nit.c
+2
-2
src/tables/nit_private.h
src/tables/nit_private.h
+1
-1
No files found.
src/tables/bat.c
View file @
b557c99c
...
...
@@ -443,7 +443,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
p_bat_decoder
->
ap_sections
[
j
+
1
];
}
/* Decode the sections */
dvbpsi_DecodeBATSections
(
p_
dvbpsi
,
p_
bat_decoder
->
p_building_bat
,
dvbpsi_DecodeBATSections
(
p_bat_decoder
->
p_building_bat
,
p_bat_decoder
->
ap_sections
[
0
]);
/* Delete the sections */
dvbpsi_DeletePSISections
(
p_bat_decoder
->
ap_sections
[
0
]);
...
...
@@ -465,7 +465,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t *p_dvbpsi,
* p_section as the input parameter
* similar to dvbpsi_DecodeNITSection
*****************************************************************************/
void
dvbpsi_DecodeBATSections
(
dvbpsi_
t
*
p_dvbpsi
,
dvbpsi_
bat_t
*
p_bat
,
void
dvbpsi_DecodeBATSections
(
dvbpsi_bat_t
*
p_bat
,
dvbpsi_psi_section_t
*
p_section
)
{
uint8_t
*
p_byte
,
*
p_end
,
*
p_end2
;
...
...
src/tables/bat_private.h
View file @
b557c99c
...
...
@@ -64,7 +64,7 @@ void dvbpsi_GatherBATSections(dvbpsi_t* p_dvbpsi,
*****************************************************************************
* BAT decoder.
*****************************************************************************/
void
dvbpsi_DecodeBATSections
(
dvbpsi_
t
*
p_dvbpsi
,
dvbpsi_
bat_t
*
p_bat
,
void
dvbpsi_DecodeBATSections
(
dvbpsi_bat_t
*
p_bat
,
dvbpsi_psi_section_t
*
p_section
);
/*****************************************************************************
...
...
src/tables/nit.c
View file @
b557c99c
...
...
@@ -432,7 +432,7 @@ void dvbpsi_GatherNITSections(dvbpsi_t *p_dvbpsi,
p_nit_decoder
->
ap_sections
[
i
+
1
];
}
/* Decode the sections */
dvbpsi_DecodeNITSections
(
p_
dvbpsi
,
p_
nit_decoder
->
p_building_nit
,
dvbpsi_DecodeNITSections
(
p_nit_decoder
->
p_building_nit
,
p_nit_decoder
->
ap_sections
[
0
]);
/* Delete the sections */
dvbpsi_DeletePSISections
(
p_nit_decoder
->
ap_sections
[
0
]);
...
...
@@ -451,7 +451,7 @@ void dvbpsi_GatherNITSections(dvbpsi_t *p_dvbpsi,
*****************************************************************************
* NIT decoder.
*****************************************************************************/
void
dvbpsi_DecodeNITSections
(
dvbpsi_
t
*
p_dvbpsi
,
dvbpsi_
nit_t
*
p_nit
,
void
dvbpsi_DecodeNITSections
(
dvbpsi_nit_t
*
p_nit
,
dvbpsi_psi_section_t
*
p_section
)
{
uint8_t
*
p_byte
,
*
p_end
,
*
p_end2
;
...
...
src/tables/nit_private.h
View file @
b557c99c
...
...
@@ -68,7 +68,7 @@ void dvbpsi_GatherNITSections(dvbpsi_t* p_dvbpsi,
*****************************************************************************
* NIT decoder.
*****************************************************************************/
void
dvbpsi_DecodeNITSections
(
dvbpsi_
t
*
p_dvbpsi
,
dvbpsi_
nit_t
*
p_nit
,
void
dvbpsi_DecodeNITSections
(
dvbpsi_nit_t
*
p_nit
,
dvbpsi_psi_section_t
*
p_section
);
#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