]> git.sesse.net Git - vlc/commitdiff
filter_chain: inline filter_chain_DeleteFilter() and drop return value
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 28 Jul 2014 21:54:10 +0000 (00:54 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 28 Jul 2014 21:54:10 +0000 (00:54 +0300)
include/vlc_filter.h
src/misc/filter_chain.c

index 8e23476ebb75e3ca8ad7595f599c82846a6dc5f9..ad658b36aa8cdf68c9761d0f3c317c6182f9b46a 100644 (file)
@@ -363,9 +363,8 @@ VLC_API int filter_chain_AppendFromString( filter_chain_t *, const char * );
  *
  * \param p_chain pointer to filter chain
  * \param p_filter pointer to filter object
- * \return VLC_SUCCESS on succes, else VLC_EGENERIC
  */
-VLC_API int filter_chain_DeleteFilter( filter_chain_t *, filter_t * );
+VLC_API void filter_chain_DeleteFilter( filter_chain_t *, filter_t * );
 
 /**
  * Get the number of filters in the filter chain.
index 72fe487c7eeda0ec4371de934fefe8c5451b39cb..3e605a67f03d7f8b19858fddd06715640ffd8d26 100644 (file)
@@ -65,8 +65,6 @@ struct filter_chain_t
 /**
  * Local prototypes
  */
-static int filter_chain_DeleteFilterInternal( filter_chain_t *, filter_t * );
-
 static void FilterDeletePictures( filter_t *, picture_t * );
 
 static filter_chain_t *filter_chain_NewInner( const filter_owner_t *callbacks,
@@ -163,7 +161,7 @@ filter_chain_t *filter_chain_NewVideo( vlc_object_t *obj, bool allow_change,
 void filter_chain_Delete( filter_chain_t *p_chain )
 {
     while( p_chain->first != NULL )
-        filter_chain_DeleteFilterInternal( p_chain, &p_chain->first->filter );
+        filter_chain_DeleteFilter( p_chain, &p_chain->first->filter );
 
     es_format_Clean( &p_chain->fmt_in );
     es_format_Clean( &p_chain->fmt_out );
@@ -177,7 +175,7 @@ void filter_chain_Reset( filter_chain_t *p_chain, const es_format_t *p_fmt_in,
                          const es_format_t *p_fmt_out )
 {
     while( p_chain->first != NULL )
-        filter_chain_DeleteFilterInternal( p_chain, &p_chain->first->filter );
+        filter_chain_DeleteFilter( p_chain, &p_chain->first->filter );
 
     if( p_fmt_in )
     {
@@ -269,6 +267,42 @@ error:
     return NULL;
 }
 
+void filter_chain_DeleteFilter( filter_chain_t *chain, filter_t *filter )
+{
+    vlc_object_t *obj = chain->callbacks.sys;
+    chained_filter_t *chained = (chained_filter_t *)filter;
+
+    /* Remove it from the chain */
+    if( chained->prev != NULL )
+        chained->prev->next = chained->next;
+    else
+    {
+        assert( chained == chain->first );
+        chain->first = chained->next;
+    }
+
+    if( chained->next != NULL )
+        chained->next->prev = chained->prev;
+    else
+    {
+        assert( chained == chain->last );
+        chain->last = chained->prev;
+    }
+
+    assert( chain->length > 0 );
+    chain->length--;
+
+    module_unneed( filter, filter->p_module );
+
+    msg_Dbg( obj, "Filter %p removed from chain", filter );
+    FilterDeletePictures( &chained->filter, chained->pending );
+
+    free( chained->mouse );
+    vlc_object_release( filter );
+    /* FIXME: check fmt_in/fmt_out consitency */
+}
+
+
 int filter_chain_AppendFromString( filter_chain_t *chain, const char *str )
 {
     vlc_object_t *obj = chain->callbacks.sys;
@@ -306,21 +340,13 @@ int filter_chain_AppendFromString( filter_chain_t *chain, const char *str )
 error:
     while( ret > 0 ) /* Unwind */
     {
-        filter_chain_DeleteFilterInternal( chain, &chain->last->filter );
+        filter_chain_DeleteFilter( chain, &chain->last->filter );
         ret--;
     }
     free( buf );
     return -1;
 }
 
-int filter_chain_DeleteFilter( filter_chain_t *p_chain, filter_t *p_filter )
-{
-    const int i_ret = filter_chain_DeleteFilterInternal( p_chain, p_filter );
-    if( i_ret < 0 )
-        return i_ret;
-    return VLC_SUCCESS;
-}
-
 int filter_chain_ForEach( filter_chain_t *chain,
                           int (*cb)( filter_t *, void * ), void *opaque )
 {
@@ -492,44 +518,6 @@ int filter_chain_MouseEvent( filter_chain_t *p_chain,
 }
 
 /* Helpers */
-static int filter_chain_DeleteFilterInternal( filter_chain_t *p_chain,
-                                              filter_t *p_filter )
-{
-    vlc_object_t *obj = p_chain->callbacks.sys;
-    chained_filter_t *p_chained = chained( p_filter );
-
-    /* Remove it from the chain */
-    if( p_chained->prev != NULL )
-        p_chained->prev->next = p_chained->next;
-    else
-    {
-        assert( p_chained == p_chain->first );
-        p_chain->first = p_chained->next;
-    }
-
-    if( p_chained->next != NULL )
-        p_chained->next->prev = p_chained->prev;
-    else
-    {
-        assert( p_chained == p_chain->last );
-        p_chain->last = p_chained->prev;
-    }
-    p_chain->length--;
-
-    msg_Dbg( obj, "Filter %p removed from chain", p_filter );
-
-    FilterDeletePictures( &p_chained->filter, p_chained->pending );
-
-    if( p_filter->p_module )
-        module_unneed( p_filter, p_filter->p_module );
-    free( p_chained->mouse );
-    vlc_object_release( p_filter );
-
-
-    /* FIXME: check fmt_in/fmt_out consitency */
-    return VLC_SUCCESS;
-}
-
 static void FilterDeletePictures( filter_t *filter, picture_t *picture )
 {
     while( picture )