Skip to content
Snippets Groups Projects
Commit 49db4557 authored by Thomas Guillem's avatar Thomas Guillem
Browse files

filters: use void * for sys

parent fce5fafb
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
#include "aout_internal.h"
static filter_t *CreateFilter (vlc_object_t *obj, const char *type,
const char *name, filter_owner_sys_t *owner,
const char *name, void *sys,
const audio_sample_format_t *infmt,
const audio_sample_format_t *outfmt,
config_chain_t *cfg, bool const_fmt)
......@@ -52,7 +52,7 @@ static filter_t *CreateFilter (vlc_object_t *obj, const char *type,
if (unlikely(filter == NULL))
return NULL;
filter->owner.sys = owner;
filter->owner.sys = sys;
filter->p_cfg = cfg;
filter->fmt_in.audio = *infmt;
filter->fmt_in.i_codec = infmt->i_format;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment