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
b5114e9a
Commit
b5114e9a
authored
Sep 17, 2012
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PSI: be slightly more verbose when table_id does not match.
parent
37465c76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/psi.c
src/psi.c
+2
-2
src/tables/rst.c
src/tables/rst.c
+2
-2
No files found.
src/psi.c
View file @
b5114e9a
...
...
@@ -105,8 +105,8 @@ bool dvbpsi_CheckPSISection(dvbpsi_t *p_dvbpsi, dvbpsi_psi_section_t *p_section,
{
/* Invalid table_id value */
dvbpsi_error
(
p_dvbpsi
,
psz_table_name
,
"invalid section (table_id == 0x%02x)"
,
p_section
->
i_table_id
);
"invalid section (table_id == 0x%02x
expected 0x%02x
)"
,
p_section
->
i_table_id
,
table_id
);
goto
error
;
}
...
...
src/tables/rst.c
View file @
b5114e9a
...
...
@@ -313,8 +313,8 @@ static bool dvbpsi_rst_section_check(dvbpsi_t *p_dvbpsi, dvbpsi_psi_section_t *p
{
/* Invalid table_id value */
dvbpsi_error
(
p_dvbpsi
,
psz_table_name
,
"invalid section (table_id == 0x%02x)"
,
p_section
->
i_table_id
);
"invalid section (table_id == 0x%02x
expected 0x%02
)"
,
p_section
->
i_table_id
,
table_id
);
goto
error
;
}
...
...
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