Commit 17911253 authored by Felix Paul Kühne's avatar Felix Paul Kühne

live555: compilation fix

parent 65126a7e
...@@ -220,7 +220,7 @@ static void StreamRead ( void *, unsigned int, unsigned int, ...@@ -220,7 +220,7 @@ static void StreamRead ( void *, unsigned int, unsigned int,
static void StreamClose ( void * ); static void StreamClose ( void * );
static void TaskInterrupt( void * ); static void TaskInterrupt( void * );
static void TimeoutPrevention( timeout_thread_t * ); static void* TimeoutPrevention( vlc_object_t * );
static unsigned char* parseH264ConfigStr( char const* configStr, static unsigned char* parseH264ConfigStr( char const* configStr,
unsigned int& configSize ); unsigned int& configSize );
...@@ -1702,7 +1702,7 @@ static void TaskInterrupt( void *p_private ) ...@@ -1702,7 +1702,7 @@ static void TaskInterrupt( void *p_private )
/***************************************************************************** /*****************************************************************************
* *
*****************************************************************************/ *****************************************************************************/
static void * TimeoutPrevention( vlc_object_t * p_this ) static void* TimeoutPrevention( vlc_object_t * p_this )
{ {
timeout_thread_t *p_timeout = (timeout_thread_t *)p_this; timeout_thread_t *p_timeout = (timeout_thread_t *)p_this;
p_timeout->b_die = false; p_timeout->b_die = false;
......
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