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
926ac6d4
Commit
926ac6d4
authored
Apr 27, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ASF: better logging and more consistent with MKV/MP4 demux
parent
c2773039
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+4
-4
No files found.
modules/demux/asf/libasf.c
View file @
926ac6d4
...
...
@@ -1440,12 +1440,12 @@ static void ASF_ObjectDumpDebug( vlc_object_t *p_obj,
return
;
memset
(
str
,
' '
,
sizeof
(
str
)
);
for
(
i
=
1
;
i
<
i_level
;
i
++
)
for
(
i
=
0
;
i
<
i_level
;
i
++
)
{
str
[
i
*
5
]
=
'|'
;
str
[
i
*
4
]
=
'|'
;
}
snprintf
(
&
str
[
5
*
i_level
],
sizeof
(
str
)
-
5
*
i_level
,
"+ '%s' GUID "
GUID_FMT
" size:%"
PRIu64
"pos:%"
PRIu64
,
snprintf
(
&
str
[
4
*
i_level
],
sizeof
(
str
)
-
5
*
i_level
,
"+ '%s' GUID "
GUID_FMT
" size:%"
PRIu64
"
pos:%"
PRIu64
,
psz_name
,
GUID_PRINT
(
p_node
->
i_object_id
),
p_node
->
i_object_size
,
p_node
->
i_object_pos
);
...
...
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