diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:15:52 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:15:52 +0000 |
commit | 01bf82289659b334a837062aef0c4814e26ed4fb (patch) | |
tree | 7f1bbd246e1925af986079fbe380822ccb452da1 /src/audioOutputs/audioOutput_osx.c | |
parent | a2380928dbc4d46c7bc3104df2dee47219db4b93 (diff) | |
download | mpd-01bf82289659b334a837062aef0c4814e26ed4fb.tar.gz mpd-01bf82289659b334a837062aef0c4814e26ed4fb.tar.xz mpd-01bf82289659b334a837062aef0c4814e26ed4fb.zip |
use size_t and constant pointer in ao plugins
The audio output plugins should get a constant pointer, because they
must not modify the buffer. Since the size is a non-negative buffer
size in bytes, we should change its type to size_t.
git-svn-id: https://svn.musicpd.org/mpd/trunk@7293 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs/audioOutput_osx.c')
-rw-r--r-- | src/audioOutputs/audioOutput_osx.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c index 4a6e8ccf1..4da921b4c 100644 --- a/src/audioOutputs/audioOutput_osx.c +++ b/src/audioOutputs/audioOutput_osx.c @@ -29,9 +29,9 @@ typedef struct _OsxData { pthread_mutex_t mutex; pthread_cond_t condition; char *buffer; - int bufferSize; - int pos; - int len; + size_t bufferSize; + size_t pos; + size_t len; int started; } OsxData; @@ -141,8 +141,8 @@ static OSStatus osx_render(void *vdata, { OsxData *od = (OsxData *) vdata; AudioBuffer *buffer = &bufferList->mBuffers[0]; - int bufferSize = buffer->mDataByteSize; - int bytesToCopy; + size_t bufferSize = buffer->mDataByteSize; + size_t bytesToCopy; int curpos = 0; /*DEBUG("osx_render: enter : %i\n", (int)bufferList->mNumberBuffers); @@ -186,7 +186,7 @@ static OSStatus osx_render(void *vdata, od->len -= bytesToCopy; if (od->pos + bytesToCopy > od->bufferSize) { - int bytes = od->bufferSize - od->pos; + size_t bytes = od->bufferSize - od->pos; memcpy(buffer->mData + curpos, od->buffer + od->pos, bytes); od->pos = 0; curpos += bytes; @@ -294,11 +294,12 @@ static int osx_openDevice(AudioOutput * audioOutput) return 0; } -static int osx_play(AudioOutput * audioOutput, char *playChunk, int size) +static int osx_play(AudioOutput * audioOutput, + const char *playChunk, size_t size) { OsxData *od = (OsxData *) audioOutput->data; - int bytesToCopy; - int curpos; + size_t bytesToCopy; + size_t curpos; /* DEBUG("osx_play: enter\n"); */ @@ -333,7 +334,7 @@ static int osx_play(AudioOutput * audioOutput, char *playChunk, int size) od->len += bytesToCopy; if (curpos + bytesToCopy > od->bufferSize) { - int bytes = od->bufferSize - curpos; + size_t bytes = od->bufferSize - curpos; memcpy(od->buffer + curpos, playChunk, bytes); curpos = 0; playChunk += bytes; |