]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/param_eq.c
Allow aout to grab vout_Request calls.
[vlc] / modules / audio_filter / param_eq.c
index 4479d57a7d76fbc76fcf6343a52794b3292ed605..88163f1f9f6f37efaacb6d70a2ebbbe20507926e 100644 (file)
@@ -82,7 +82,7 @@ vlc_module_end ()
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-typedef struct aout_filter_sys_t
+struct aout_filter_sys_t
 {
     /* Filter static config */
     float   f_lowf, f_lowgain;
@@ -95,7 +95,7 @@ typedef struct aout_filter_sys_t
     /* State */
     float  *p_state;
  
-} aout_filter_sys_t;
+};