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
2351f606
Commit
2351f606
authored
Dec 02, 2020
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvbinfo: correct expected continuity counter in error debug
parent
3890ac43
Pipeline
#1
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/dvbinfo/libdvbpsi.c
examples/dvbinfo/libdvbpsi.c
+1
-1
No files found.
examples/dvbinfo/libdvbpsi.c
View file @
2351f606
...
@@ -3132,7 +3132,7 @@ bool libdvbpsi_process(ts_stream_t *stream, uint8_t *buf, ssize_t length, mtime_
...
@@ -3132,7 +3132,7 @@ bool libdvbpsi_process(ts_stream_t *stream, uint8_t *buf, ssize_t length, mtime_
{
{
stream
->
pf_log
(
stream
->
cb_data
,
2
,
stream
->
pf_log
(
stream
->
cb_data
,
2
,
"dvbinfo: Continuity counter discontinuity (pid %u 0x%x found %d expected %d)
\n
"
,
"dvbinfo: Continuity counter discontinuity (pid %u 0x%x found %d expected %d)
\n
"
,
i_pid
,
i_pid
,
stream
->
pid
[
i_pid
].
i_cc
,
i_old_cc
+
1
);
i_pid
,
i_pid
,
stream
->
pid
[
i_pid
].
i_cc
,
(
i_old_cc
+
1
)
%
16
);
/* Discontinuity has been handled */
/* Discontinuity has been handled */
b_discontinuity_seen
=
false
;
b_discontinuity_seen
=
false
;
...
...
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