aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2005-11-19 10:52:47 +0000
committerEric Wong <normalperson@yhbt.net>2005-11-19 10:52:47 +0000
commitf8597ccf257eb925db508cfc37a494e2b1397e64 (patch)
tree0bafdb0be022427f1d84dcae2e10f5e70f84c3d8 /src/audioOutputs
parente8a54efe414d9d25b71cef910b15935bea8c530e (diff)
downloadmpd-f8597ccf257eb925db508cfc37a494e2b1397e64.tar.gz
mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.tar.xz
mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.zip
remove C++ style comments
git-svn-id: https://svn.musicpd.org/mpd/trunk@3689 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs')
-rw-r--r--src/audioOutputs/audioOutput_ao.c2
-rw-r--r--src/audioOutputs/audioOutput_osx.c36
-rw-r--r--src/audioOutputs/audioOutput_shout.c2
3 files changed, 21 insertions, 19 deletions
diff --git a/src/audioOutputs/audioOutput_ao.c b/src/audioOutputs/audioOutput_ao.c
index 25dd3ff10..8d45f7746 100644
--- a/src/audioOutputs/audioOutput_ao.c
+++ b/src/audioOutputs/audioOutput_ao.c
@@ -172,7 +172,7 @@ static void audioOutputAo_finishDriver(AudioOutput * audioOutput) {
}
static void audioOutputAo_dropBufferedAudio(AudioOutput * audioOutput) {
- // not supported by libao
+ /* not supported by libao */
}
static void audioOutputAo_closeDevice(AudioOutput * audioOutput) {
diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c
index 191edebd5..68ebe91f0 100644
--- a/src/audioOutputs/audioOutput_osx.c
+++ b/src/audioOutputs/audioOutput_osx.c
@@ -163,16 +163,18 @@ static OSStatus osx_render(void * vdata,
}
}*/
- //while(bufferSize) {
- //DEBUG("osx_render: lock\n");
+ /* while(bufferSize) {
+ DEBUG("osx_render: lock\n"); */
pthread_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");
- // pthread_cond_wait(&od->condition, &od->mutex);
- //}
+ /*
+ DEBUG("%i:%i\n", bufferSize, od->len);
+ while(od->go && od->len < bufferSize &&
+ od->len < od->bufferSize)
+ {
+ DEBUG("osx_render: wait\n");
+ pthread_cond_wait(&od->condition, &od->mutex);
+ }
+ */
bytesToCopy = od->len < bufferSize ? od->len : bufferSize;
bufferSize = bytesToCopy;
@@ -191,10 +193,10 @@ static OSStatus osx_render(void * vdata,
curpos += bytesToCopy;
if(od->pos >= od->bufferSize) od->pos = 0;
- //DEBUG("osx_render: unlock\n");
+ /* DEBUG("osx_render: unlock\n"); */
pthread_mutex_unlock(&od->mutex);
pthread_cond_signal(&od->condition);
- //}
+ /* } */
buffer->mDataByteSize = bufferSize;
@@ -202,7 +204,7 @@ static OSStatus osx_render(void * vdata,
my_usleep(1000);
}
- //DEBUG("osx_render: leave\n");
+ /* DEBUG("osx_render: leave\n"); */
return 0;
}
@@ -288,7 +290,7 @@ static int osx_play(AudioOutput * audioOutput, char * playChunk, int size) {
int bytesToCopy;
int curpos;
- //DEBUG("osx_play: enter\n");
+ /* DEBUG("osx_play: enter\n"); */
if(!od->started) {
int err;
@@ -303,14 +305,14 @@ static int osx_play(AudioOutput * audioOutput, char * playChunk, int size) {
pthread_mutex_lock(&od->mutex);
while(size) {
- //DEBUG("osx_play: lock\n");
+ /* DEBUG("osx_play: lock\n"); */
curpos = od->pos+od->len;
if(curpos >= od->bufferSize) curpos -= od->bufferSize;
bytesToCopy = od->bufferSize < size ? od->bufferSize : size;
while(od->len > od->bufferSize-bytesToCopy) {
- //DEBUG("osx_play: wait\n");
+ /* DEBUG("osx_play: wait\n"); */
pthread_cond_wait(&od->condition, &od->mutex);
}
@@ -332,10 +334,10 @@ static int osx_play(AudioOutput * audioOutput, char * playChunk, int size) {
playChunk += bytesToCopy;
}
- //DEBUG("osx_play: unlock\n");
+ /* DEBUG("osx_play: unlock\n"); */
pthread_mutex_unlock(&od->mutex);
- //DEBUG("osx_play: leave\n");
+ /* DEBUG("osx_play: leave\n"); */
return 0;
}
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c
index cbbd04c9a..d705eefe1 100644
--- a/src/audioOutputs/audioOutput_shout.c
+++ b/src/audioOutputs/audioOutput_shout.c
@@ -363,7 +363,7 @@ static void myShout_finishDriver(AudioOutput * audioOutput) {
}
static void myShout_dropBufferedAudio(AudioOutput * audioOutput) {
- // needs to be implemented
+ /* needs to be implemented */
}
static void myShout_closeDevice(AudioOutput * audioOutput) {