Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
c9732cfe
Commit
c9732cfe
authored
4 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
demux: dash: fix debug overloading
parent
b1aad929
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
modules/demux/adaptive/playlist/BasePlaylist.hpp
+1
-1
1 addition, 1 deletion
modules/demux/adaptive/playlist/BasePlaylist.hpp
modules/demux/dash/mpd/MPD.cpp
+2
-4
2 additions, 4 deletions
modules/demux/dash/mpd/MPD.cpp
modules/demux/dash/mpd/MPD.h
+1
-1
1 addition, 1 deletion
modules/demux/dash/mpd/MPD.h
with
4 additions
and
6 deletions
modules/demux/adaptive/playlist/BasePlaylist.hpp
+
1
−
1
View file @
c9732cfe
...
...
@@ -49,7 +49,7 @@ namespace adaptive
void
setMaxBuffering
(
vlc_tick_t
);
vlc_tick_t
getMinBuffering
()
const
;
vlc_tick_t
getMaxBuffering
()
const
;
v
oid
debug
()
const
;
v
irtual
void
debug
()
const
;
void
addPeriod
(
BasePeriod
*
period
);
void
addBaseUrl
(
const
std
::
string
&
);
...
...
This diff is collapsed.
Click to expand it.
modules/demux/dash/mpd/MPD.cpp
+
2
−
4
View file @
c9732cfe
...
...
@@ -76,7 +76,7 @@ Profile MPD::getProfile() const
return
profile
;
}
void
MPD
::
debug
()
void
MPD
::
debug
()
const
{
msg_Dbg
(
p_object
,
"MPD profile=%s mediaPresentationDuration=%"
PRId64
" minBufferTime=%"
PRId64
,
...
...
@@ -85,7 +85,5 @@ void MPD::debug()
minBufferTime
);
msg_Dbg
(
p_object
,
"BaseUrl=%s"
,
getUrlSegment
().
toString
().
c_str
());
std
::
vector
<
BasePeriod
*>::
const_iterator
i
;
for
(
i
=
periods
.
begin
();
i
!=
periods
.
end
();
++
i
)
(
*
i
)
->
debug
(
VLC_OBJECT
(
p_object
));
BasePlaylist
::
debug
();
}
This diff is collapsed.
Click to expand it.
modules/demux/dash/mpd/MPD.h
+
1
−
1
View file @
c9732cfe
...
...
@@ -50,7 +50,7 @@ namespace dash
virtual
bool
isLive
()
const
override
;
virtual
bool
isLowLatency
()
const
override
;
void
setLowLatency
(
bool
);
virtual
void
debug
();
virtual
void
debug
()
const
override
;
Property
<
ProgramInformation
*>
programInfo
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment