aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/jack_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-02 17:23:10 +0100
committerMax Kellermann <max@duempel.org>2009-01-02 17:23:10 +0100
commit051e906d851409e4f14134ed9eb0234ccac202be (patch)
tree4d261760b6328c8b62749118fc463563743e890e /src/output/jack_plugin.c
parent1fe129330eb76d6b38884041b7b9a13de427e7a5 (diff)
downloadmpd-051e906d851409e4f14134ed9eb0234ccac202be.tar.gz
mpd-051e906d851409e4f14134ed9eb0234ccac202be.tar.xz
mpd-051e906d851409e4f14134ed9eb0234ccac202be.zip
jack: use GLib instead of utils.h
Diffstat (limited to 'src/output/jack_plugin.c')
-rw-r--r--src/output/jack_plugin.c29
1 files changed, 14 insertions, 15 deletions
diff --git a/src/output/jack_plugin.c b/src/output/jack_plugin.c
index 14bf81b2c..1aff7d5a1 100644
--- a/src/output/jack_plugin.c
+++ b/src/output/jack_plugin.c
@@ -25,6 +25,12 @@
#include <jack/types.h>
#include <jack/ringbuffer.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <errno.h>
+
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "jack"
@@ -58,9 +64,7 @@ mpd_jack_name(const struct jack_data *jd)
static struct jack_data *
mpd_jack_new(void)
{
- struct jack_data *ret;
-
- ret = xcalloc(sizeof(*ret), 1);
+ struct jack_data *ret = g_new(struct jack_data, 1);
ret->ringbuffer_size = 32768;
@@ -92,19 +96,14 @@ mpd_jack_client_free(struct jack_data *jd)
static void
mpd_jack_free(struct jack_data *jd)
{
- int i;
-
assert(jd != NULL);
mpd_jack_client_free(jd);
g_free(jd->name);
- for ( i = ARRAY_SIZE(jd->output_ports); --i >= 0; ) {
- if (!jd->output_ports[i])
- continue;
- xfree(jd->output_ports[i]);
- }
+ for (unsigned i = 0; i < G_N_ELEMENTS(jd->output_ports); ++i)
+ g_free(jd->output_ports[i]);
free(jd);
}
@@ -211,19 +210,19 @@ mpd_jack_init(struct audio_output *ao,
bp->name, bp->line, bp->value);
*cp = '\0';
- jd->output_ports[0] = xstrdup(bp->value);
+ jd->output_ports[0] = g_strdup(bp->value);
*cp++ = ',';
if (!*cp)
g_error("expected a second value for '%s' at line %d: %s",
bp->name, bp->line, bp->value);
- jd->output_ports[1] = xstrdup(cp);
+ jd->output_ports[1] = g_strdup(cp);
if (strchr(cp,','))
g_error("Only %d values are supported for '%s' "
"at line %d",
- (int)ARRAY_SIZE(jd->output_ports),
+ (int)G_N_ELEMENTS(jd->output_ports),
bp->name, bp->line);
}
@@ -242,7 +241,7 @@ mpd_jack_init(struct audio_output *ao,
if ( (bp = getBlockParam(param, "name"))
&& (strcmp(bp->value, "mpd") != 0) ) {
- jd->name = xstrdup(bp->value);
+ jd->name = g_strdup(bp->value);
g_debug("name=%s", jd->name);
} else
jd->name = NULL;
@@ -315,7 +314,7 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
memset(jd->ringbuffer[0]->buf, 0, jd->ringbuffer[0]->size);
memset(jd->ringbuffer[1]->buf, 0, jd->ringbuffer[1]->size);
- port_name = xmalloc(sizeof(char) * (7 + strlen(name)));
+ port_name = g_malloc(sizeof(port_name[0]) * (7 + strlen(name)));
sprintf(port_name, "%s:left", name);
if ( (jack_connect(jd->client, port_name,