Commit f73b7ff2 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

dash: DashManager: Adding a getMpdManager() method.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 86d9aabf
...@@ -94,3 +94,8 @@ int DASHManager::peek (const uint8_t **pp_peek, size_t i_peek) ...@@ -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); int ret = this->conManager->peek(this->currentChunk, pp_peek, i_peek);
return ret; return ret;
} }
const mpd::IMPDManager* DASHManager::getMpdManager() const
{
return this->mpdManager;
}
...@@ -43,6 +43,7 @@ namespace dash ...@@ -43,6 +43,7 @@ namespace dash
int read (void *p_buffer, size_t len); int read (void *p_buffer, size_t len);
int peek (const uint8_t **pp_peek, size_t i_peek); int peek (const uint8_t **pp_peek, size_t i_peek);
const mpd::IMPDManager* getMpdManager() const;
private: private:
http::HTTPConnectionManager *conManager; http::HTTPConnectionManager *conManager;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment