Commit e5ccd0bf authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove aout_filter_t

parent 94b7316f
...@@ -151,26 +151,6 @@ struct aout_fifo_t ...@@ -151,26 +151,6 @@ struct aout_fifo_t
/* FIXME to remove once aout.h is cleaned a bit more */ /* FIXME to remove once aout.h is cleaned a bit more */
#include <vlc_block.h> #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_NONE 0
#define AOUT_RESAMPLING_UP 1 #define AOUT_RESAMPLING_UP 1
#define AOUT_RESAMPLING_DOWN 2 #define AOUT_RESAMPLING_DOWN 2
......
...@@ -267,7 +267,6 @@ typedef struct aout_fifo_t aout_fifo_t; ...@@ -267,7 +267,6 @@ typedef struct aout_fifo_t aout_fifo_t;
typedef struct aout_input_t aout_input_t; typedef struct aout_input_t aout_input_t;
typedef struct block_t aout_buffer_t; typedef struct block_t aout_buffer_t;
typedef audio_format_t audio_sample_format_t; typedef audio_format_t audio_sample_format_t;
typedef struct aout_filter_t aout_filter_t;
/* Video */ /* Video */
typedef struct vout_thread_t vout_thread_t; typedef struct vout_thread_t vout_thread_t;
......
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