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
4e5fc784
Commit
4e5fc784
authored
Jun 13, 2012
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvbinfo: print more information on TDT/TOT tables.
parent
d1f318a2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
examples/dvbinfo/libdvbpsi.c
examples/dvbinfo/libdvbpsi.c
+4
-0
No files found.
examples/dvbinfo/libdvbpsi.c
View file @
4e5fc784
...
@@ -1166,6 +1166,10 @@ static void handle_TOT(void* p_data, dvbpsi_tot_t* p_tot)
...
@@ -1166,6 +1166,10 @@ static void handle_TOT(void* p_data, dvbpsi_tot_t* p_tot)
else
if
(
table_id
==
0x73
)
/* TOT */
else
if
(
table_id
==
0x73
)
/* TOT */
printf
(
" TOT: Time Offset Table
\n
"
);
printf
(
" TOT: Time Offset Table
\n
"
);
printf
(
"
\t
Version number : %d
\n
"
,
p_tot
->
i_version
);
printf
(
"
\t
Current next : %s
\n
"
,
p_tot
->
b_current_next
?
"yes"
:
"no"
);
printf
(
"
\t
Transport stream id : %d
\n
"
,
p_tot
->
i_ts_id
);
printf
(
"
\t
UTC time : %"
PRId64
"
\n
"
,
p_tot
->
i_utc_time
);
printf
(
"
\t
UTC time : %"
PRId64
"
\n
"
,
p_tot
->
i_utc_time
);
if
(
table_id
==
0x73
)
/* TOT */
if
(
table_id
==
0x73
)
/* TOT */
printf
(
"
\t
CRC 32 : %d
\n
"
,
p_tot
->
i_crc
);
printf
(
"
\t
CRC 32 : %d
\n
"
,
p_tot
->
i_crc
);
...
...
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