Skip to content

Commit

Permalink
fix: compilation error on newer GCC versions:
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed Dec 5, 2024
1 parent 29bea15 commit 69e9f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/pulseaudio/wrapper/gstjamesdsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ gst_jamesdsp_class_init(GstjamesdspClass *klass) {
"Tim Schneeberger <tim.schneeberger@outlook.de>");

caps = gst_caps_from_string(ALLOWED_CAPS);
gst_audio_filter_class_add_pad_templates(GST_JAMESDSP_CLASS (klass), caps);
gst_audio_filter_class_add_pad_templates((GstAudioFilterClass*) GST_JAMESDSP_CLASS (klass), caps);
gst_caps_unref(caps);

audioself_class->setup = GST_DEBUG_FUNCPTR (gst_jamesdsp_setup);
Expand Down

0 comments on commit 69e9f3c

Please sign in to comment.