aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-10 20:57:21 +0100
committerMax Kellermann <max@duempel.org>2009-02-10 20:57:21 +0100
commitfe142647a5e20488af3c777b39edc74a17ae4039 (patch)
treee6ac1317e08ad50ed0cd015cfd613206fa370b84 /src
parent86d4cf0dbdec08e2f3e793d0ae761bad8d2e5300 (diff)
downloadmpd-fe142647a5e20488af3c777b39edc74a17ae4039.tar.gz
mpd-fe142647a5e20488af3c777b39edc74a17ae4039.tar.xz
mpd-fe142647a5e20488af3c777b39edc74a17ae4039.zip
osx: removed disabled debug messages
Nobody needs these debug messages anymore.
Diffstat (limited to 'src')
-rw-r--r--src/output/osx_plugin.c45
1 files changed, 2 insertions, 43 deletions
diff --git a/src/output/osx_plugin.c b/src/output/osx_plugin.c
index 2ab0d6b0d..f7497ad31 100644
--- a/src/output/osx_plugin.c
+++ b/src/output/osx_plugin.c
@@ -145,41 +145,7 @@ osx_render(void *vdata,
size_t bytes;
int curpos = 0;
- /*DEBUG("osx_render: enter : %i\n", (int)bufferList->mNumberBuffers);
- DEBUG("osx_render: ioActionFlags: %p\n", ioActionFlags);
- if(ioActionFlags) {
- if(*ioActionFlags & kAudioUnitRenderAction_PreRender) {
- DEBUG("prerender\n");
- }
- if(*ioActionFlags & kAudioUnitRenderAction_PostRender) {
- DEBUG("post render\n");
- }
- if(*ioActionFlags & kAudioUnitRenderAction_OutputIsSilence) {
- DEBUG("post render\n");
- }
- if(*ioActionFlags & kAudioOfflineUnitRenderAction_Preflight) {
- DEBUG("prefilight\n");
- }
- if(*ioActionFlags & kAudioOfflineUnitRenderAction_Render) {
- DEBUG("render\n");
- }
- if(*ioActionFlags & kAudioOfflineUnitRenderAction_Complete) {
- DEBUG("complete\n");
- }
- } */
-
- /* while(bufferSize) {
- DEBUG("osx_render: lock\n"); */
g_mutex_lock(od->mutex);
- /*
- DEBUG("%i:%i\n", bufferSize, od->len);
- while(od->go && od->len < bufferSize &&
- od->len < od->bufferSize)
- {
- DEBUG("osx_render: wait\n");
- g_cond_wait(od->condition, od->mutex);
- }
- */
bytesToCopy = MIN(od->len, bufferSize);
bufferSize = bytesToCopy;
@@ -198,10 +164,9 @@ osx_render(void *vdata,
if (od->pos >= od->bufferSize)
od->pos = 0;
- /* DEBUG("osx_render: unlock\n"); */
+
g_mutex_unlock(od->mutex);
g_cond_signal(od->condition);
- /* } */
buffer->mDataByteSize = bufferSize;
@@ -209,7 +174,6 @@ osx_render(void *vdata,
my_usleep(1000);
}
- /* DEBUG("osx_render: leave\n"); */
return 0;
}
@@ -301,8 +265,6 @@ osx_play(void *data, const char *playChunk, size_t size)
size_t bytes;
size_t curpos;
- /* DEBUG("osx_play: enter\n"); */
-
if (!od->started) {
int err;
od->started = 1;
@@ -316,7 +278,6 @@ osx_play(void *data, const char *playChunk, size_t size)
g_mutex_lock(od->mutex);
while (size) {
- /* DEBUG("osx_play: lock\n"); */
curpos = od->pos + od->len;
if (curpos >= od->bufferSize)
curpos -= od->bufferSize;
@@ -324,7 +285,6 @@ osx_play(void *data, const char *playChunk, size_t size)
bytesToCopy = MIN(od->bufferSize, size);
while (od->len > od->bufferSize - bytesToCopy) {
- /* DEBUG("osx_play: wait\n"); */
g_cond_wait(od->condition, od->mutex);
}
@@ -343,10 +303,9 @@ osx_play(void *data, const char *playChunk, size_t size)
playChunk += bytesToCopy;
}
- /* DEBUG("osx_play: unlock\n"); */
+
g_mutex_unlock(od->mutex);
- /* DEBUG("osx_play: leave\n"); */
return true;
}