Commit 8e6039b9 authored by Rémi Duraffort's avatar Rémi Duraffort

Remove trailing spaces.

parent f7f1b5f3
...@@ -73,12 +73,12 @@ static void push(libvlc_event_manager_t * p_em, libvlc_event_listener_t * listen ...@@ -73,12 +73,12 @@ static void push(libvlc_event_manager_t * p_em, libvlc_event_listener_t * listen
static const long MaxQueuedItem = 300000; static const long MaxQueuedItem = 300000;
long count = 0; long count = 0;
#endif #endif
struct queue_elmt * elmt = malloc(sizeof(struct queue_elmt)); struct queue_elmt * elmt = malloc(sizeof(struct queue_elmt));
elmt->listener = *listener; elmt->listener = *listener;
elmt->event = *event; elmt->event = *event;
elmt->next = NULL; elmt->next = NULL;
/* Append to the end of the queue */ /* Append to the end of the queue */
struct queue_elmt * iter = queue(p_em)->elements; struct queue_elmt * iter = queue(p_em)->elements;
if(!iter) if(!iter)
...@@ -118,7 +118,7 @@ static bool pop(libvlc_event_manager_t * p_em, libvlc_event_listener_t * listene ...@@ -118,7 +118,7 @@ static bool pop(libvlc_event_manager_t * p_em, libvlc_event_listener_t * listene
*listener = queue(p_em)->elements->listener; *listener = queue(p_em)->elements->listener;
*event = queue(p_em)->elements->event; *event = queue(p_em)->elements->event;
struct queue_elmt * elmt = queue(p_em)->elements; struct queue_elmt * elmt = queue(p_em)->elements;
queue(p_em)->elements = elmt->next; queue(p_em)->elements = elmt->next;
free(elmt); free(elmt);
...@@ -155,7 +155,7 @@ static void pop_listener(libvlc_event_manager_t * p_em, libvlc_event_listener_t ...@@ -155,7 +155,7 @@ static void pop_listener(libvlc_event_manager_t * p_em, libvlc_event_listener_t
**************************************************************************/ **************************************************************************/
void void
libvlc_event_async_fini(libvlc_event_manager_t * p_em) libvlc_event_async_fini(libvlc_event_manager_t * p_em)
{ {
if(!is_queue_initialized(p_em)) return; if(!is_queue_initialized(p_em)) return;
if(current_thread_is_asynch_thread(p_em)) if(current_thread_is_asynch_thread(p_em))
...@@ -163,7 +163,7 @@ libvlc_event_async_fini(libvlc_event_manager_t * p_em) ...@@ -163,7 +163,7 @@ libvlc_event_async_fini(libvlc_event_manager_t * p_em)
fprintf(stderr, "*** Error: releasing the last reference of the observed object from its callback thread is not (yet!) supported\n"); fprintf(stderr, "*** Error: releasing the last reference of the observed object from its callback thread is not (yet!) supported\n");
abort(); abort();
} }
vlc_thread_t thread = queue(p_em)->thread; vlc_thread_t thread = queue(p_em)->thread;
if(thread) if(thread)
{ {
...@@ -182,7 +182,7 @@ libvlc_event_async_fini(libvlc_event_manager_t * p_em) ...@@ -182,7 +182,7 @@ libvlc_event_async_fini(libvlc_event_manager_t * p_em)
iter = iter->next; iter = iter->next;
free(elemt_to_delete); free(elemt_to_delete);
} }
free(queue(p_em)); free(queue(p_em));
} }
...@@ -202,7 +202,7 @@ libvlc_event_async_init(libvlc_event_manager_t * p_em) ...@@ -202,7 +202,7 @@ libvlc_event_async_init(libvlc_event_manager_t * p_em)
vlc_mutex_init(&queue(p_em)->lock); vlc_mutex_init(&queue(p_em)->lock);
vlc_cond_init(&queue(p_em)->signal); vlc_cond_init(&queue(p_em)->signal);
vlc_cond_init(&queue(p_em)->signal_idle); vlc_cond_init(&queue(p_em)->signal_idle);
error = vlc_clone (&queue(p_em)->thread, event_async_loop, p_em, VLC_THREAD_PRIORITY_LOW); error = vlc_clone (&queue(p_em)->thread, event_async_loop, p_em, VLC_THREAD_PRIORITY_LOW);
if(error) if(error)
{ {
...@@ -225,7 +225,7 @@ libvlc_event_async_ensure_listener_removal(libvlc_event_manager_t * p_em, libvlc ...@@ -225,7 +225,7 @@ libvlc_event_async_ensure_listener_removal(libvlc_event_manager_t * p_em, libvlc
queue_lock(p_em); queue_lock(p_em);
pop_listener(p_em, listener); pop_listener(p_em, listener);
// Wait for the asynch_loop to have processed all events. // Wait for the asynch_loop to have processed all events.
if(!current_thread_is_asynch_thread(p_em)) if(!current_thread_is_asynch_thread(p_em))
{ {
...@@ -286,7 +286,7 @@ static void * event_async_loop(void * arg) ...@@ -286,7 +286,7 @@ static void * event_async_loop(void * arg)
vlc_cond_broadcast(&queue(p_em)->signal_idle); // We'll be idle vlc_cond_broadcast(&queue(p_em)->signal_idle); // We'll be idle
vlc_cond_wait(&queue(p_em)->signal, &queue(p_em)->lock); vlc_cond_wait(&queue(p_em)->signal, &queue(p_em)->lock);
vlc_cleanup_pop(); vlc_cleanup_pop();
queue(p_em)->is_idle = false; queue(p_em)->is_idle = false;
} }
} }
......
...@@ -407,7 +407,7 @@ mediacontrol_get_stream_information( mediacontrol_Instance *self, ...@@ -407,7 +407,7 @@ mediacontrol_get_stream_information( mediacontrol_Instance *self,
} }
retval->url = libvlc_media_get_mrl( p_media, &ex ); retval->url = libvlc_media_get_mrl( p_media, &ex );
retval->position = libvlc_media_player_get_time( self->p_media_player, &ex ); retval->position = libvlc_media_player_get_time( self->p_media_player, &ex );
if( libvlc_exception_raised( &ex ) ) if( libvlc_exception_raised( &ex ) )
{ {
......
...@@ -143,9 +143,9 @@ private_mediacontrol_position2microsecond( libvlc_media_player_t * p_media_playe ...@@ -143,9 +143,9 @@ private_mediacontrol_position2microsecond( libvlc_media_player_t * p_media_playe
/* Ignore exception, we will assume a 0 time value */ /* Ignore exception, we will assume a 0 time value */
l_pos = private_mediacontrol_unit_convert( p_media_player, l_pos = private_mediacontrol_unit_convert( p_media_player,
pos->key, pos->key,
mediacontrol_MediaTime, mediacontrol_MediaTime,
pos->value ); pos->value );
return 1000 * ( l_time + l_pos ); return 1000 * ( l_time + l_pos );
break; break;
} }
...@@ -165,9 +165,9 @@ private_mediacontrol_position2microsecond( libvlc_media_player_t * p_media_playe ...@@ -165,9 +165,9 @@ private_mediacontrol_position2microsecond( libvlc_media_player_t * p_media_playe
/* Ignore exception, we will assume a 0 time value */ /* Ignore exception, we will assume a 0 time value */
l_pos = private_mediacontrol_unit_convert( p_media_player, l_pos = private_mediacontrol_unit_convert( p_media_player,
pos->key, pos->key,
mediacontrol_MediaTime, mediacontrol_MediaTime,
pos->value ); pos->value );
return 1000 * ( ( l_time + l_pos ) % l_length ); return 1000 * ( ( l_time + l_pos ) % l_length );
break; break;
...@@ -245,7 +245,7 @@ mediacontrol_exception_free( mediacontrol_Exception *exception ) ...@@ -245,7 +245,7 @@ mediacontrol_exception_free( mediacontrol_Exception *exception )
*/ */
mediacontrol_RGBPicture* mediacontrol_RGBPicture*
private_mediacontrol_createRGBPicture( int i_width, int i_height, long i_chroma, int64_t l_date, private_mediacontrol_createRGBPicture( int i_width, int i_height, long i_chroma, int64_t l_date,
char* p_data, int i_datasize ) char* p_data, int i_datasize )
{ {
mediacontrol_RGBPicture *retval; mediacontrol_RGBPicture *retval;
......
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