]> code.delx.au - pulseaudio/commitdiff
remap: allow specialisations to install NULL
authorWim Taymans <wim.taymans@collabora.co.uk>
Thu, 20 Aug 2009 16:29:02 +0000 (18:29 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Thu, 20 Aug 2009 16:29:02 +0000 (18:29 +0200)
Fallback to the default C implementation when the remap init function did not
set a function.

src/pulsecore/remap.c

index 2e93afceb5a9a9578ba0d58b1ca15779225f0773..108df9000a7672c05ccd5d60aea4bd4e998710b7 100644 (file)
@@ -186,6 +186,11 @@ void pa_init_remap (pa_remap_t *m) {
 
     /* just call the installed remap init functions */
     remap_func (m);
+
+    if (m->do_remap == NULL) {
+        /* nothing was installed, fallback to C versions */
+        init_remap_c (m);
+    }
 }
 
 pa_init_remap_func_t pa_get_init_remap_func(void) {