Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
vlc
Commits
4c420f95
Commit
4c420f95
authored
May 24, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AVI: reduce the debug tree size
parent
1cea6f76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
modules/demux/avi/libavi.c
modules/demux/avi/libavi.c
+5
-6
No files found.
modules/demux/avi/libavi.c
View file @
4c420f95
...
...
@@ -867,23 +867,22 @@ void _AVI_ChunkFree( stream_t *s,
static
void
AVI_ChunkDumpDebug_level
(
vlc_object_t
*
p_obj
,
avi_chunk_t
*
p_chk
,
unsigned
i_level
)
{
unsigned
i
;
avi_chunk_t
*
p_child
;
char
str
[
512
];
if
(
i_level
>=
(
sizeof
(
str
)
-
1
)
/
5
)
if
(
i_level
>=
(
sizeof
(
str
)
-
1
)
/
4
)
return
;
memset
(
str
,
' '
,
sizeof
(
str
)
);
for
(
i
=
1
;
i
<
i_level
;
i
++
)
for
(
unsigned
i
=
1
;
i
<
i_level
;
i
++
)
{
str
[
i
*
5
]
=
'|'
;
str
[
i
*
4
]
=
'|'
;
}
if
(
p_chk
->
common
.
i_chunk_fourcc
==
AVIFOURCC_RIFF
||
p_chk
->
common
.
i_chunk_fourcc
==
AVIFOURCC_ON2
||
p_chk
->
common
.
i_chunk_fourcc
==
AVIFOURCC_LIST
)
{
snprintf
(
&
str
[
i_level
*
5
],
sizeof
(
str
)
-
5
*
i_level
,
snprintf
(
&
str
[
i_level
*
4
],
sizeof
(
str
)
-
4
*
i_level
,
"%c %4.4s-%4.4s size:%"
PRIu64
" pos:%"
PRIu64
,
i_level
?
'+'
:
'*'
,
(
char
*
)
&
p_chk
->
common
.
i_chunk_fourcc
,
...
...
@@ -893,7 +892,7 @@ static void AVI_ChunkDumpDebug_level( vlc_object_t *p_obj,
}
else
{
snprintf
(
&
str
[
i_level
*
5
],
sizeof
(
str
)
-
5
*
i_level
,
snprintf
(
&
str
[
i_level
*
4
],
sizeof
(
str
)
-
4
*
i_level
,
"+ %4.4s size:%"
PRIu64
" pos:%"
PRIu64
,
(
char
*
)
&
p_chk
->
common
.
i_chunk_fourcc
,
p_chk
->
common
.
i_chunk_size
,
...
...
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