summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_export.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-05 00:01:46 +0100
committerwm4 <wm4@nowhere>2013-12-05 00:01:46 +0100
commited024aadb6e7be6c3d910045a64db53a6c95e98f (patch)
treef26724d268e13ee8ec8f327ea829b65ccd6fab19 /audio/filter/af_export.c
parent2bcfb49a390a928c535cba7cab2b4136f27fceca (diff)
downloadmpv-ed024aadb6e7be6c3d910045a64db53a6c95e98f.tar.bz2
mpv-ed024aadb6e7be6c3d910045a64db53a6c95e98f.tar.xz
audio/filter: change filter callback signature
The new signature is actually closer to how it actually works, and someone who is not familiar to the API and how it works might make fewer fatal mistakes with the new signature than the old one. Pretty weird. Do this to sneak in a flags parameter, which will later be used to flush remaining data of at least vf_lavfi.
Diffstat (limited to 'audio/filter/af_export.c')
-rw-r--r--audio/filter/af_export.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/audio/filter/af_export.c b/audio/filter/af_export.c
index c224d3acd7..d39154755b 100644
--- a/audio/filter/af_export.c
+++ b/audio/filter/af_export.c
@@ -162,7 +162,7 @@ static void uninit( struct af_instance* af )
af audio filter instance
data audio data
*/
-static struct mp_audio* play( struct af_instance* af, struct mp_audio* data )
+static int filter( struct af_instance* af, struct mp_audio* data, int flags)
{
struct mp_audio* c = data; // Current working data
af_export_t* s = af->priv; // Setup for this instance
@@ -199,8 +199,7 @@ static struct mp_audio* play( struct af_instance* af, struct mp_audio* data )
&(s->count), sizeof(s->count));
}
- // We don't modify data, just export it
- return data;
+ return 0;
}
/* Allocate memory and set function pointers
@@ -211,7 +210,7 @@ static int af_open( struct af_instance* af )
{
af->control = control;
af->uninit = uninit;
- af->play = play;
+ af->filter = filter;
af_export_t *priv = af->priv;
if (!priv->filename || !priv->filename[0])