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_mvp.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_mvp.c')
-rw-r--r-- | src/audioOutputs/audioOutput_mvp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/audioOutputs/audioOutput_mvp.c b/src/audioOutputs/audioOutput_mvp.c index c633bb96b..2b8ba6a00 100644 --- a/src/audioOutputs/audioOutput_mvp.c +++ b/src/audioOutputs/audioOutput_mvp.c @@ -231,10 +231,11 @@ static void mvp_dropBufferedAudio(AudioOutput * audioOutput) } } -static int mvp_playAudio(AudioOutput * audioOutput, char *playChunk, int size) +static int mvp_playAudio(AudioOutput * audioOutput, + const char *playChunk, size_t size) { MvpData *md = audioOutput->data; - int ret; + ssize_t ret; /* reopen the device since it was closed by dropBufferedAudio */ if (md->fd < 0) |