aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/aac_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-21 20:13:26 +0100
committerMax Kellermann <max@duempel.org>2008-11-21 20:13:26 +0100
commit7a2fe930b8086b71677f9967cc4d4f5fba78073a (patch)
tree96494044736af1bdb37bb6e527fa8d95ee5f6bc0 /src/decoder/aac_plugin.c
parent0243e1e26debfc9c0034c54dd56b9e3701404b0e (diff)
downloadmpd-7a2fe930b8086b71677f9967cc4d4f5fba78073a.tar.gz
mpd-7a2fe930b8086b71677f9967cc4d4f5fba78073a.tar.xz
mpd-7a2fe930b8086b71677f9967cc4d4f5fba78073a.zip
aac: use GLib instead of utils.h/log.h
Removed the superfluous my_usleep() call.
Diffstat (limited to 'src/decoder/aac_plugin.c')
-rw-r--r--src/decoder/aac_plugin.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c
index 5938822db..d372ce5b1 100644
--- a/src/decoder/aac_plugin.c
+++ b/src/decoder/aac_plugin.c
@@ -20,11 +20,13 @@
#define AAC_MAX_CHANNELS 6
-#include "../utils.h"
-#include "../log.h"
-
#include <assert.h>
+#include <unistd.h>
#include <faad.h>
+#include <glib.h>
+
+#undef G_LOG_DOMAIN
+#define G_LOG_DOMAIN "aac"
/* all code here is either based on or copied from FAAD2's frontend code */
typedef struct {
@@ -354,7 +356,6 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream)
fillAacBuffer(&b);
adts_find_frame(&b);
fillAacBuffer(&b);
- my_usleep(10000);
}
#ifdef HAVE_FAAD_BUFLEN_FUNCS
@@ -364,7 +365,7 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream)
bread = faacDecInit(decoder, b.buffer, sample_rate_r, &channels);
#endif
if (bread < 0) {
- ERROR("Error not a AAC stream.\n");
+ g_warning("Error not a AAC stream.\n");
faacDecClose(decoder);
return;
}
@@ -389,9 +390,8 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream)
#endif
if (frameInfo.error > 0) {
- ERROR("error decoding AAC stream\n");
- ERROR("faad2 error: %s\n",
- faacDecGetErrorMessage(frameInfo.error));
+ g_warning("error decoding AAC stream: %s\n",
+ faacDecGetErrorMessage(frameInfo.error));
break;
}
#ifdef HAVE_FAACDECFRAMEINFO_SAMPLERATE
@@ -445,8 +445,8 @@ static struct tag *aacTagDup(const char *file)
ret = tag_new();
ret->time = file_time;
} else {
- DEBUG("aacTagDup: Failed to get total song time from: %s\n",
- file);
+ g_debug("aacTagDup: Failed to get total song time from: %s\n",
+ file);
}
return ret;