Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f73b7ff2
Commit
f73b7ff2
authored
Dec 06, 2011
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
Dec 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dash: DashManager: Adding a getMpdManager() method.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
86d9aabf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
modules/stream_filter/dash/DASHManager.cpp
modules/stream_filter/dash/DASHManager.cpp
+5
-0
modules/stream_filter/dash/DASHManager.h
modules/stream_filter/dash/DASHManager.h
+1
-0
No files found.
modules/stream_filter/dash/DASHManager.cpp
View file @
f73b7ff2
...
...
@@ -94,3 +94,8 @@ int DASHManager::peek (const uint8_t **pp_peek, size_t i_peek)
int
ret
=
this
->
conManager
->
peek
(
this
->
currentChunk
,
pp_peek
,
i_peek
);
return
ret
;
}
const
mpd
::
IMPDManager
*
DASHManager
::
getMpdManager
()
const
{
return
this
->
mpdManager
;
}
modules/stream_filter/dash/DASHManager.h
View file @
f73b7ff2
...
...
@@ -43,6 +43,7 @@ namespace dash
int
read
(
void
*
p_buffer
,
size_t
len
);
int
peek
(
const
uint8_t
**
pp_peek
,
size_t
i_peek
);
const
mpd
::
IMPDManager
*
getMpdManager
()
const
;
private:
http
::
HTTPConnectionManager
*
conManager
;
...
...
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