2004-05-07 04:42:49 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "outputBuffer.h"
|
|
|
|
|
|
|
|
#include "pcm_utils.h"
|
|
|
|
#include "playerData.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
static mpd_sint16 currentChunk = -1;
|
|
|
|
|
2004-05-18 05:37:55 +02:00
|
|
|
void clearOutputBuffer(OutputBuffer * cb) {
|
|
|
|
currentChunk = -1;
|
2004-05-20 02:40:19 +02:00
|
|
|
/*cb->end = cb->begin;
|
|
|
|
cb->wrap = 0;*/
|
2004-05-18 05:37:55 +02:00
|
|
|
}
|
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
void flushOutputBuffer(OutputBuffer * cb) {
|
|
|
|
if(currentChunk == cb->end) {
|
|
|
|
cb->end++;
|
|
|
|
if(cb->end>=buffered_chunks) {
|
|
|
|
cb->end = 0;
|
|
|
|
cb->wrap = 1;
|
|
|
|
}
|
|
|
|
currentChunk = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-22 00:31:07 +02:00
|
|
|
int sendDataToOutputBuffer(OutputBuffer * cb, InputStream * inStream,
|
|
|
|
DecoderControl * dc, char * dataIn, long dataInLen, float time,
|
|
|
|
mpd_uint16 bitRate)
|
2004-05-07 04:42:49 +02:00
|
|
|
{
|
2004-05-07 21:11:43 +02:00
|
|
|
mpd_uint16 dataToSend;
|
|
|
|
mpd_uint16 chunkLeft;
|
2004-05-10 16:06:23 +02:00
|
|
|
char * data;
|
|
|
|
size_t datalen;
|
|
|
|
static char * convBuffer = NULL;
|
|
|
|
static long convBufferLen = 0;
|
|
|
|
|
|
|
|
if(memcmp(&(cb->audioFormat),&(dc->audioFormat),sizeof(AudioFormat))==0)
|
|
|
|
{
|
|
|
|
data = dataIn;
|
|
|
|
datalen = dataInLen;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
datalen = pcm_sizeOfOutputBufferForAudioFormatConversion(
|
|
|
|
&(dc->audioFormat), dataIn, dataInLen,
|
|
|
|
&(cb->audioFormat));
|
|
|
|
if(datalen > convBufferLen) {
|
|
|
|
convBuffer = realloc(convBuffer,datalen);
|
|
|
|
convBufferLen = datalen;
|
|
|
|
}
|
|
|
|
data = convBuffer;
|
|
|
|
pcm_convertAudioFormat(&(dc->audioFormat), dataIn, dataInLen,
|
|
|
|
&(cb->audioFormat),data);
|
|
|
|
}
|
2004-05-07 04:42:49 +02:00
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
while(datalen) {
|
|
|
|
if(currentChunk != cb->end) {
|
2004-05-28 04:09:37 +02:00
|
|
|
while(cb->begin==cb->end && cb->wrap && !dc->stop &&
|
|
|
|
!dc->seek)
|
2004-05-07 21:11:43 +02:00
|
|
|
{
|
2004-05-22 00:31:07 +02:00
|
|
|
if(!inStream ||
|
|
|
|
bufferInputStream(inStream) <= 0)
|
|
|
|
{
|
|
|
|
my_usleep(10000);
|
|
|
|
}
|
2004-05-07 21:11:43 +02:00
|
|
|
}
|
|
|
|
if(dc->stop) return OUTPUT_BUFFER_DC_STOP;
|
2004-05-28 04:09:37 +02:00
|
|
|
if(dc->seek) return OUTPUT_BUFFER_DC_SEEK;
|
2004-05-07 04:42:49 +02:00
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
currentChunk = cb->end;
|
|
|
|
cb->chunkSize[currentChunk] = 0;
|
|
|
|
}
|
2004-05-07 04:42:49 +02:00
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
chunkLeft = CHUNK_SIZE-cb->chunkSize[currentChunk];
|
|
|
|
dataToSend = datalen > chunkLeft ? chunkLeft : datalen;
|
2004-05-07 04:42:49 +02:00
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
memcpy(cb->chunks+currentChunk*CHUNK_SIZE+
|
|
|
|
cb->chunkSize[currentChunk],
|
|
|
|
data, dataToSend);
|
|
|
|
cb->chunkSize[currentChunk]+= dataToSend;
|
|
|
|
cb->bitRate[currentChunk] = bitRate;
|
|
|
|
cb->times[currentChunk] = time;
|
2004-05-07 04:42:49 +02:00
|
|
|
|
|
|
|
datalen-= dataToSend;
|
|
|
|
data+= dataToSend;
|
2004-05-07 21:11:43 +02:00
|
|
|
|
|
|
|
if(cb->chunkSize[currentChunk] == CHUNK_SIZE) {
|
|
|
|
flushOutputBuffer(cb);
|
|
|
|
}
|
2004-05-07 04:42:49 +02:00
|
|
|
}
|
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
return 0;
|
2004-05-07 04:42:49 +02:00
|
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 tabstop=8 expandtab: */
|