]> git.sesse.net Git - vlc/commitdiff
Remove aout_filter_t
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 30 May 2011 15:42:41 +0000 (18:42 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 30 May 2011 15:42:41 +0000 (18:42 +0300)
include/vlc_aout.h
include/vlc_common.h

index 6c6863987fcf62c3f6d33534adbd886e63943bcc..6fcb809e05f9915f42e9983c608522f15586c91a 100644 (file)
@@ -151,26 +151,6 @@ struct aout_fifo_t
 /* FIXME to remove once aout.h is cleaned a bit more */
 #include <vlc_block.h>
 
-/** audio output filter */
-typedef struct aout_filter_owner_sys_t aout_filter_owner_sys_t;
-typedef struct aout_filter_sys_t aout_filter_sys_t;
-struct aout_filter_t
-{
-    VLC_COMMON_MEMBERS
-
-    module_t *              p_module;
-    aout_filter_sys_t       *p_sys;
-
-    es_format_t             fmt_in;
-    es_format_t             fmt_out;
-
-    void                    (*pf_do_work)( aout_instance_t *, aout_filter_t *,
-                                           aout_buffer_t *, aout_buffer_t * );
-
-    /* Private structure for the owner of the filter */
-    aout_filter_owner_sys_t *p_owner;
-};
-
 #define AOUT_RESAMPLING_NONE     0
 #define AOUT_RESAMPLING_UP       1
 #define AOUT_RESAMPLING_DOWN     2
index b66a63fd3a5e4bbb0d6bebc2bd9037bab6522575..5b856bd36e55800774ec62ffedc34eb2c1f82e05 100644 (file)
@@ -267,7 +267,6 @@ typedef struct aout_fifo_t aout_fifo_t;
 typedef struct aout_input_t aout_input_t;
 typedef struct block_t aout_buffer_t;
 typedef audio_format_t audio_sample_format_t;
-typedef struct aout_filter_t aout_filter_t;
 
 /* Video */
 typedef struct vout_thread_t vout_thread_t;