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
efa50840
Commit
efa50840
authored
May 30, 2015
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples/dvbinfo: clean output
parent
8d3d27eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
examples/dvbinfo/libdvbpsi.c
examples/dvbinfo/libdvbpsi.c
+3
-3
No files found.
examples/dvbinfo/libdvbpsi.c
View file @
efa50840
...
...
@@ -960,7 +960,7 @@ static void DumpSmoothingBufferDescriptor(const void *p_descriptor)
{
const
dvbpsi_smoothing_buffer_dr_t
*
smoothing_descriptor
=
p_descriptor
;
printf
(
"Leak rate: %d
\n
"
,
smoothing_descriptor
->
i_sb_leak_rate
);
printf
(
"Size: %d
\n
"
,
smoothing_descriptor
->
i_sb_size
);
printf
(
"
\t\t
Size: %d
\n
"
,
smoothing_descriptor
->
i_sb_size
);
}
/*****************************************************************************
...
...
@@ -979,8 +979,8 @@ static void DumpIBPDescriptor(const void *p_descriptor)
{
const
dvbpsi_ibp_dr_t
*
ibp_descriptor
=
p_descriptor
;
printf
(
"Closed GOP flag: %d
\n
"
,
ibp_descriptor
->
b_closed_gop_flag
);
printf
(
"Identical GOP flag: %d
\n
"
,
ibp_descriptor
->
b_identical_gop_flag
);
printf
(
"Max GOP length: %"
PRIu16
"
\n
"
,
ibp_descriptor
->
i_max_gop_length
);
printf
(
"
\t\t
Identical GOP flag: %d
\n
"
,
ibp_descriptor
->
b_identical_gop_flag
);
printf
(
"
\t\t
Max GOP length: %"
PRIu16
"
\n
"
,
ibp_descriptor
->
i_max_gop_length
);
}
static
const
char
*
MPEG4VideoProfileToString
(
dvbpsi_mpeg4_visual_profile_and_level_t
profile
)
...
...
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