aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/jack_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-29 17:29:36 +0100
committerMax Kellermann <max@duempel.org>2008-12-29 17:29:36 +0100
commit74d4ec7fbb54a911a4818d522919ce3d30802ad4 (patch)
tree4fd3fb0d8231a54f092cf802c6df6946b7e22160 /src/output/jack_plugin.c
parenteddf5e1e5e3f3a24edbf5441458e4c7da5a03f44 (diff)
downloadmpd-74d4ec7fbb54a911a4818d522919ce3d30802ad4.tar.gz
mpd-74d4ec7fbb54a911a4818d522919ce3d30802ad4.tar.xz
mpd-74d4ec7fbb54a911a4818d522919ce3d30802ad4.zip
jack: use GLib logging
Diffstat (limited to 'src/output/jack_plugin.c')
-rw-r--r--src/output/jack_plugin.c58
1 files changed, 30 insertions, 28 deletions
diff --git a/src/output/jack_plugin.c b/src/output/jack_plugin.c
index d26658e07..59b8abf23 100644
--- a/src/output/jack_plugin.c
+++ b/src/output/jack_plugin.c
@@ -17,7 +17,6 @@
#include "../output_api.h"
#include "../utils.h"
-#include "../log.h"
#include <assert.h>
@@ -26,6 +25,9 @@
#include <jack/types.h>
#include <jack/ringbuffer.h>
+#undef G_LOG_DOMAIN
+#define G_LOG_DOMAIN "jack"
+
static const size_t sample_size = sizeof(jack_default_audio_sample_t);
struct jack_data {
@@ -165,7 +167,7 @@ static void
set_audioformat(struct jack_data *jd, struct audio_format *audio_format)
{
audio_format->sample_rate = jack_get_sample_rate(jd->client);
- DEBUG("samplerate = %u\n", audio_format->sample_rate);
+ g_debug("samplerate = %u", audio_format->sample_rate);
audio_format->channels = 2;
if (audio_format->bits != 16 && audio_format->bits != 24)
@@ -179,7 +181,7 @@ set_audioformat(struct jack_data *jd, struct audio_format *audio_format)
static void
mpd_jack_error(const char *msg)
{
- ERROR("jack: %s\n", msg);
+ g_warning("%s", msg);
}
static void *
@@ -196,33 +198,33 @@ mpd_jack_init(struct audio_output *ao,
jd = mpd_jack_new();
jd->ao = ao;
- DEBUG("mpd_jack_init (pid=%d)\n", getpid());
+ g_debug("mpd_jack_init (pid=%d)", getpid());
if (param == NULL)
return jd;
if ( (bp = getBlockParam(param, "ports")) ) {
- DEBUG("output_ports=%s\n", bp->value);
+ g_debug("output_ports=%s", bp->value);
if (!(cp = strchr(bp->value, ',')))
- FATAL("expected comma and a second value for '%s' "
- "at line %d: %s\n",
- bp->name, bp->line, bp->value);
+ g_error("expected comma and a second value for '%s' "
+ "at line %d: %s",
+ bp->name, bp->line, bp->value);
*cp = '\0';
jd->output_ports[0] = xstrdup(bp->value);
*cp++ = ',';
if (!*cp)
- FATAL("expected a second value for '%s' at line %d: "
- "%s\n", bp->name, bp->line, bp->value);
+ g_error("expected a second value for '%s' at line %d: %s",
+ bp->name, bp->line, bp->value);
jd->output_ports[1] = xstrdup(cp);
if (strchr(cp,','))
- FATAL("Only %d values are supported for '%s' "
- "at line %d\n",
- (int)ARRAY_SIZE(jd->output_ports),
- bp->name, bp->line);
+ g_error("Only %d values are supported for '%s' "
+ "at line %d",
+ (int)ARRAY_SIZE(jd->output_ports),
+ bp->name, bp->line);
}
if ( (bp = getBlockParam(param, "ringbuffer_size")) ) {
@@ -231,17 +233,17 @@ mpd_jack_init(struct audio_output *ao,
if ( errno == 0 && endptr != bp->value) {
jd->ringbuffer_size = val < 32768 ? 32768 : val;
- DEBUG("ringbuffer_size=%d\n", jd->ringbuffer_size);
+ g_debug("ringbuffer_size=%d", jd->ringbuffer_size);
} else {
- FATAL("%s is not a number; ringbuf_size=%d\n",
- bp->value, jd->ringbuffer_size);
+ g_error("%s is not a number; ringbuf_size=%d",
+ bp->value, jd->ringbuffer_size);
}
}
if ( (bp = getBlockParam(param, "name"))
&& (strcmp(bp->value, "mpd") != 0) ) {
jd->name = xstrdup(bp->value);
- DEBUG("name=%s\n", jd->name);
+ g_debug("name=%s", jd->name);
} else
jd->name = NULL;
@@ -263,7 +265,7 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
jd->audio_format = audio_format;
if ((jd->client = jack_client_new(mpd_jack_name(jd))) == NULL) {
- ERROR("jack server not running?\n");
+ g_warning("jack server not running?");
return -1;
}
@@ -273,7 +275,7 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
jack_on_shutdown(jd->client, mpd_jack_shutdown, jd);
if ( jack_activate(jd->client) ) {
- ERROR("cannot activate client\n");
+ g_warning("cannot activate client");
return -1;
}
@@ -281,7 +283,7 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
if ( !jd->ports[0] ) {
- ERROR("Cannot register left output port.\n");
+ g_warning("Cannot register left output port.");
return -1;
}
@@ -289,7 +291,7 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
if ( !jd->ports[1] ) {
- ERROR("Cannot register right output port.\n");
+ g_warning("Cannot register right output port.");
return -1;
}
@@ -299,7 +301,7 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
JackPortIsPhysical | JackPortIsInput))) {
jd->output_ports[0] = jports[0];
jd->output_ports[1] = jports[1] ? jports[1] : jports[0];
- DEBUG("output_ports: %s %s\n",
+ g_debug("output_ports: %s %s",
jd->output_ports[0], jd->output_ports[1]);
free(jports);
}
@@ -317,16 +319,16 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
sprintf(port_name, "%s:left", name);
if ( (jack_connect(jd->client, port_name,
jd->output_ports[0])) != 0 ) {
- ERROR("%s is not a valid Jack Client / Port\n",
- jd->output_ports[0]);
+ g_warning("%s is not a valid Jack Client / Port",
+ jd->output_ports[0]);
free(port_name);
return -1;
}
sprintf(port_name, "%s:right", name);
if ( (jack_connect(jd->client, port_name,
jd->output_ports[1])) != 0 ) {
- ERROR("%s is not a valid Jack Client / Port\n",
- jd->output_ports[1]);
+ g_warning("%s is not a valid Jack Client / Port",
+ jd->output_ports[1]);
free(port_name);
return -1;
}
@@ -438,7 +440,7 @@ mpd_jack_play(void *data, const char *buff, size_t size)
size_t space, space1;
if (jd->shutdown) {
- ERROR("Refusing to play, because there is no client thread.\n");
+ g_warning("Refusing to play, because there is no client thread.");
mpd_jack_client_free(jd);
audio_output_closed(jd->ao);
return true;