about summary refs log tree commit diff stats
path: root/src/wrapped
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-04-03 16:55:56 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-04-03 16:55:56 +0200
commit83e92d6298f3be3833b8cd844b97597d41e22265 (patch)
tree915d552816971d09797135d875e3b3ff1e6e5b54 /src/wrapped
parente080551d5452990f6fb8a85e4b7d88ae057cb4e6 (diff)
downloadbox64-83e92d6298f3be3833b8cd844b97597d41e22265.tar.gz
box64-83e92d6298f3be3833b8cd844b97597d41e22265.zip
Wrapped GstAudioFilter (for #1397)
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"