diff options
author | Alfred E. Heggestad <alfred.heggestad@gmail.com> | 2017-04-08 15:47:42 +0200 |
---|---|---|
committer | Alfred E. Heggestad <alfred.heggestad@gmail.com> | 2017-04-08 15:47:42 +0200 |
commit | 60035828fedb77d048ab32e7a553456617508249 (patch) | |
tree | 1489f565ee889626e6bef8eaa1bf28710a1b67f5 | |
parent | 611028bd1f8324e16c6cc0b67fc1c6ea1c0592e0 (diff) |
gst: fix call to ausrc_register()
-rw-r--r-- | modules/gst/gst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gst/gst.c b/modules/gst/gst.c index 2ddb4d6..dc00dd4 100644 --- a/modules/gst/gst.c +++ b/modules/gst/gst.c @@ -432,7 +432,7 @@ static int mod_gst_init(void) g_free(s); - return ausrc_register(&ausrc, "gst", gst_alloc); + return ausrc_register(&ausrc, baresip_ausrcl(), "gst", gst_alloc); } |