Commit b94c3f32 authored by Frédéric Yhuel's avatar Frédéric Yhuel Committed by Hugo Beauzée-Luyssen

DASH: cosmetics

Signed-off-by: default avatarHugo Beauzée-Luyssen <beauze.h@gmail.com>
parent 7fc90608
...@@ -44,9 +44,9 @@ namespace dash ...@@ -44,9 +44,9 @@ namespace dash
logic::IAdaptationLogic::LogicType type, stream_t *stream); logic::IAdaptationLogic::LogicType type, stream_t *stream);
virtual ~DASHManager (); virtual ~DASHManager ();
bool start (); bool start ();
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 );
int seekBackwards ( unsigned len ); int seekBackwards ( unsigned len );
const mpd::IMPDManager* getMpdManager () const; const mpd::IMPDManager* getMpdManager () const;
......
...@@ -46,15 +46,15 @@ namespace dash ...@@ -46,15 +46,15 @@ namespace dash
BlockBuffer (stream_t *stream); BlockBuffer (stream_t *stream);
virtual ~BlockBuffer (); virtual ~BlockBuffer ();
void put (block_t *block); void put (block_t *block);
int get (void *p_data, unsigned int len); int get (void *p_data, unsigned int len);
int peek (const uint8_t **pp_peek, unsigned int i_peek); int peek (const uint8_t **pp_peek, unsigned int i_peek);
int seekBackwards (unsigned len); int seekBackwards (unsigned len);
void setEOF (bool value); void setEOF (bool value);
bool getEOF (); bool getEOF ();
mtime_t size (); mtime_t size ();
void attach (IBufferObserver *observer); void attach (IBufferObserver *observer);
void notify (); void notify ();
private: private:
mtime_t capacityMicroSec; mtime_t capacityMicroSec;
......
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