about summary refs log tree commit diff stats
path: root/src/wrapped
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrapped')
-rw-r--r--src/wrapped/wrappedgstaudio.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wrapped/wrappedgstaudio.c b/src/wrapped/wrappedgstaudio.c
index 952100ad..943d2fa7 100644
--- a/src/wrapped/wrappedgstaudio.c
+++ b/src/wrapped/wrappedgstaudio.c
@@ -32,6 +32,7 @@ typedef size_t  (*LFv_t)();
 
 #define ADDED_FUNCTIONS()                   \
     GO(gst_audio_decoder_get_type, LFv_t)   \
+    GO(gst_audio_filter_get_type, LFv_t)    \
 
 #include "generated/wrappedgstaudiotypes.h"
 
@@ -42,7 +43,8 @@ typedef size_t  (*LFv_t)();
         return -1;
 
 #define CUSTOM_INIT \
-    SetGstAudioDecoderID(my->gst_audio_decoder_get_type());
+    SetGstAudioDecoderID(my->gst_audio_decoder_get_type()); \
+    SetGstAudioFilterID(my->gst_audio_filter_get_type());
 
 #ifdef ANDROID
 #define NEEDED_LIBS "libgstreamer-1.0.so"