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
5b91ae5b
Commit
5b91ae5b
authored
Apr 28, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ASF: do not display GUID when not in debug mode
parent
926ac6d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+12
-4
No files found.
modules/demux/asf/libasf.c
View file @
5b91ae5b
...
...
@@ -1445,10 +1445,18 @@ static void ASF_ObjectDumpDebug( vlc_object_t *p_obj,
str
[
i
*
4
]
=
'|'
;
}
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
);
"+ '%s'"
#ifdef ASF_DEBUG
"GUID "
GUID_FMT
" size:%"
PRIu64
" pos:%"
PRIu64
#endif
,
psz_name
#ifdef ASF_DEBUG
,
GUID_PRINT
(
p_node
->
i_object_id
),
p_node
->
i_object_size
,
p_node
->
i_object_pos
#endif
);
msg_Dbg
(
p_obj
,
"%s"
,
str
);
...
...
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