diff options
author | Christian <zerov83@gmail.com> | 2016-04-02 23:28:44 +0200 |
---|---|---|
committer | Christian <zerov83@gmail.com> | 2016-04-02 23:28:44 +0200 |
commit | f94b31e13127247160815c5902e75f7bcbf3d393 (patch) | |
tree | 2f3baa9733d9a56473930152c5af097c0a271763 /hlsPlayer.h | |
parent | 893c0af051a0832b3bea59a1db4276c938e6211e (diff) | |
download | vdr-plugin-plex-f94b31e13127247160815c5902e75f7bcbf3d393.tar.gz vdr-plugin-plex-f94b31e13127247160815c5902e75f7bcbf3d393.tar.bz2 |
Code cleanup
Diffstat (limited to 'hlsPlayer.h')
-rw-r--r-- | hlsPlayer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hlsPlayer.h b/hlsPlayer.h index ed5a80e..21e6651 100644 --- a/hlsPlayer.h +++ b/hlsPlayer.h @@ -33,7 +33,7 @@ private: uchar* m_pBuffer; Poco::Net::HTTPClientSession* m_pClientSession; - plexclient::Video* m_pVideo; + plexclient::cVideo* m_pVideo; Poco::URI m_startUri; std::string m_sessionUriPart; std::string m_segmentUriPart; @@ -60,7 +60,7 @@ protected: bool DoLoad(void); public: - cHlsSegmentLoader(std::string startm3u8, plexclient::Video* pVideo); + cHlsSegmentLoader(std::string startm3u8, plexclient::cVideo* pVideo); ~cHlsSegmentLoader(); cRingBufferLinear* m_pRingbuffer; @@ -79,7 +79,7 @@ private: std::ofstream* m_pDebugFile; int AudioIndexOffset; cHlsSegmentLoader* m_pSegmentLoader; - plexclient::Video m_Video; + plexclient::cVideo m_Video; int m_jumpOffset; int m_timeOffset; @@ -113,7 +113,7 @@ protected: public: //static cMutex s_mutex; - cHlsPlayer(std::string startm3u8, plexclient::Video Video, int offset = 0); + cHlsPlayer(std::string startm3u8, plexclient::cVideo Video, int offset = 0); ~cHlsPlayer(); virtual bool GetIndex(int &Current, int &Total, bool SnapToIFrame = false); |