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-06-06 21:41:03 +02:00
|
|
|
static mpd_sint8 currentMetaChunk = -1;
|
|
|
|
static mpd_sint8 sendMetaChunk = 0;
|
|
|
|
|
2004-06-07 00:13:23 +02:00
|
|
|
void clearAllMetaChunkSets(OutputBuffer * cb) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=0; i<BUFFERED_METACHUNKS; i++) {
|
|
|
|
cb->metaChunkSet[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-18 05:37:55 +02:00
|
|
|
void clearOutputBuffer(OutputBuffer * cb) {
|
2004-06-07 14:11:57 +02:00
|
|
|
int currentSet = 1;
|
|
|
|
|
2004-05-18 05:37:55 +02:00
|
|
|
currentChunk = -1;
|
2004-05-30 15:33:13 +02:00
|
|
|
cb->end = cb->begin;
|
|
|
|
cb->wrap = 0;
|
2004-06-07 00:13:23 +02:00
|
|
|
|
2004-06-07 14:11:57 +02:00
|
|
|
/* be sure to reset metaChunkSets cause we are skipping over audio
|
|
|
|
* audio chunks, and thus skipping over metadata */
|
|
|
|
if(sendMetaChunk == 0 && currentMetaChunk >= 0) {
|
|
|
|
currentSet = cb->metaChunkSet[currentChunk];
|
|
|
|
}
|
|
|
|
clearAllMetaChunkSets(cb);
|
|
|
|
if(sendMetaChunk == 0 && currentMetaChunk >= 0) {
|
|
|
|
cb->metaChunkSet[currentChunk] = currentSet;
|
2004-06-07 00:13:23 +02:00
|
|
|
}
|
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,
|
2004-05-29 14:05:49 +02:00
|
|
|
DecoderControl * dc, int seekable, 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:27:36 +02:00
|
|
|
while(cb->begin==cb->end && cb->wrap && !dc->stop)
|
2004-05-07 21:11:43 +02:00
|
|
|
{
|
2004-05-29 14:05:49 +02:00
|
|
|
if(dc->seek) {
|
|
|
|
if(seekable) {
|
|
|
|
return OUTPUT_BUFFER_DC_SEEK;
|
|
|
|
}
|
2004-05-30 15:33:13 +02:00
|
|
|
else {
|
|
|
|
dc->seekError = 1;
|
|
|
|
dc->seek = 0;
|
|
|
|
}
|
2004-05-29 14:05:49 +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-07 04:42:49 +02:00
|
|
|
|
2004-05-07 21:11:43 +02:00
|
|
|
currentChunk = cb->end;
|
|
|
|
cb->chunkSize[currentChunk] = 0;
|
2004-06-06 21:41:03 +02:00
|
|
|
|
|
|
|
if(sendMetaChunk) {
|
|
|
|
cb->metaChunk[currentChunk] = currentMetaChunk;
|
|
|
|
}
|
|
|
|
else cb->metaChunk[currentChunk] = -1;
|
|
|
|
cb->bitRate[currentChunk] = bitRate;
|
|
|
|
cb->times[currentChunk] = time;
|
2004-05-07 21:11:43 +02:00
|
|
|
}
|
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;
|
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
|
|
|
}
|
2004-06-06 18:42:14 +02:00
|
|
|
|
2004-06-06 23:37:12 +02:00
|
|
|
int copyMpdTagToOutputBuffer(OutputBuffer * cb, MpdTag * tag) {
|
2004-06-07 00:13:23 +02:00
|
|
|
int nextChunk;
|
2004-06-07 16:16:10 +02:00
|
|
|
static MpdTag * last = NULL;
|
2004-06-07 00:13:23 +02:00
|
|
|
|
2004-06-06 21:41:03 +02:00
|
|
|
printf("copyMpdTagToOB called\n");
|
|
|
|
|
|
|
|
if(!cb->acceptMetadata || !tag) {
|
|
|
|
sendMetaChunk = 0;
|
2004-06-07 16:16:10 +02:00
|
|
|
if(last) free(last);
|
|
|
|
last = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(last && mpdTagsAreEqual(last, tag)) {
|
|
|
|
printf("same as last\n");
|
2004-06-07 00:13:23 +02:00
|
|
|
return 0;
|
2004-06-06 21:41:03 +02:00
|
|
|
}
|
2004-06-06 18:42:14 +02:00
|
|
|
|
2004-06-06 21:41:03 +02:00
|
|
|
sendMetaChunk = 1;
|
2004-06-07 00:13:23 +02:00
|
|
|
nextChunk = currentMetaChunk+1;
|
|
|
|
if(nextChunk >= BUFFERED_METACHUNKS) nextChunk = 0;
|
|
|
|
|
|
|
|
if(cb->metaChunkSet[nextChunk]) return -1;
|
|
|
|
|
|
|
|
currentMetaChunk = nextChunk;
|
2004-06-06 18:42:14 +02:00
|
|
|
|
2004-06-06 21:41:03 +02:00
|
|
|
printMpdTag(stdout, tag);
|
2004-06-06 18:42:14 +02:00
|
|
|
|
2004-06-07 16:16:10 +02:00
|
|
|
if(last) freeMpdTag(last);
|
|
|
|
last = mpdTagDup(tag);
|
|
|
|
|
2004-06-06 21:41:03 +02:00
|
|
|
copyMpdTagToMetadataChunk(tag, &(cb->metadataChunks[currentMetaChunk]));
|
2004-06-06 23:37:12 +02:00
|
|
|
|
2004-06-07 00:13:23 +02:00
|
|
|
cb->metaChunkSet[nextChunk] = 1;
|
|
|
|
|
2004-06-06 23:37:12 +02:00
|
|
|
return 0;
|
2004-06-06 18:42:14 +02:00
|
|
|
}
|