2004-05-07 04:42:49 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-05-07 04:42:49 +02:00
|
|
|
* 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"
|
2004-06-09 18:58:33 +02:00
|
|
|
#include "log.h"
|
2006-07-22 02:53:37 +02:00
|
|
|
#include "normalize.h"
|
|
|
|
#include "conf.h"
|
2004-05-07 04:42:49 +02:00
|
|
|
|
|
|
|
#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;
|
2007-01-14 04:07:53 +01:00
|
|
|
static mpd_sint8 sendMetaChunk;
|
2004-06-06 21:41:03 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void clearAllMetaChunkSets(OutputBuffer * cb)
|
|
|
|
{
|
2004-06-24 18:25:06 +02:00
|
|
|
memset(cb->metaChunkSet, 0, BUFFERED_METACHUNKS);
|
2004-06-07 00:13:23 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void clearOutputBuffer(OutputBuffer * cb)
|
|
|
|
{
|
2004-06-07 14:11:57 +02:00
|
|
|
int currentSet = 1;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
cb->end = cb->begin;
|
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
|
2006-07-20 18:02:40 +02:00
|
|
|
* audio chunks, and thus skipping over metadata */
|
2006-09-21 10:27:24 +02:00
|
|
|
if (currentChunk >= 0 && sendMetaChunk == 0 && currentMetaChunk >= 0) {
|
2004-06-07 14:11:57 +02:00
|
|
|
currentSet = cb->metaChunkSet[currentChunk];
|
|
|
|
}
|
|
|
|
clearAllMetaChunkSets(cb);
|
2006-09-21 10:27:24 +02:00
|
|
|
if (currentChunk >= 0 && sendMetaChunk == 0 && currentMetaChunk >= 0) {
|
2004-06-07 14:11:57 +02:00
|
|
|
cb->metaChunkSet[currentChunk] = currentSet;
|
2004-06-07 00:13:23 +02:00
|
|
|
}
|
2006-09-21 10:27:24 +02:00
|
|
|
currentChunk = -1;
|
2004-05-18 05:37:55 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void flushOutputBuffer(OutputBuffer * cb)
|
|
|
|
{
|
|
|
|
if (currentChunk == cb->end) {
|
2007-02-11 21:36:26 +01:00
|
|
|
if ((cb->end + 1) >= buffered_chunks) {
|
|
|
|
cb->end = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2007-02-11 21:36:26 +01:00
|
|
|
else cb->end++;
|
2004-05-07 21:11:43 +02:00
|
|
|
currentChunk = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
int sendDataToOutputBuffer(OutputBuffer * cb, InputStream * inStream,
|
|
|
|
DecoderControl * dc, int seekable, void *dataIn,
|
|
|
|
long dataInLen, float time, mpd_uint16 bitRate,
|
|
|
|
ReplayGainInfo * replayGainInfo)
|
2004-05-07 04:42:49 +02:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
mpd_uint16 dataToSend;
|
2004-05-07 21:11:43 +02:00
|
|
|
mpd_uint16 chunkLeft;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *data;
|
2004-05-10 16:06:23 +02:00
|
|
|
size_t datalen;
|
2007-01-14 04:07:53 +01:00
|
|
|
static char *convBuffer;
|
|
|
|
static long convBufferLen;
|
2004-05-10 16:06:23 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (cmpAudioFormat(&(cb->audioFormat), &(dc->audioFormat)) == 0) {
|
2004-05-10 16:06:23 +02:00
|
|
|
data = dataIn;
|
|
|
|
datalen = dataInLen;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2007-05-23 01:11:36 +02:00
|
|
|
datalen = pcm_sizeOfConvBuffer(&(dc->audioFormat), dataInLen,
|
|
|
|
&(cb->audioFormat));
|
2006-07-20 18:02:40 +02:00
|
|
|
if (datalen > convBufferLen) {
|
2006-08-26 08:25:57 +02:00
|
|
|
convBuffer = xrealloc(convBuffer, datalen);
|
2004-05-10 16:06:23 +02:00
|
|
|
convBufferLen = datalen;
|
|
|
|
}
|
|
|
|
data = convBuffer;
|
|
|
|
pcm_convertAudioFormat(&(dc->audioFormat), dataIn, dataInLen,
|
2006-07-20 18:02:40 +02:00
|
|
|
&(cb->audioFormat), data);
|
2004-05-10 16:06:23 +02:00
|
|
|
}
|
2004-05-07 04:42:49 +02:00
|
|
|
|
2006-07-27 02:50:59 +02:00
|
|
|
if (replayGainInfo && (replayGainState != REPLAYGAIN_OFF))
|
2005-03-19 15:30:07 +01:00
|
|
|
doReplayGain(replayGainInfo, data, datalen, &cb->audioFormat);
|
2006-07-27 02:50:59 +02:00
|
|
|
else if (normalizationEnabled)
|
2006-07-22 02:53:37 +02:00
|
|
|
normalizeData(data, datalen, &cb->audioFormat);
|
2004-11-02 20:56:59 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (datalen) {
|
|
|
|
if (currentChunk != cb->end) {
|
|
|
|
int next = cb->end + 1;
|
|
|
|
if (next >= buffered_chunks) {
|
|
|
|
next = 0;
|
2004-05-07 21:11:43 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
while (cb->begin == next && !dc->stop) {
|
|
|
|
if (dc->seek) {
|
|
|
|
if (seekable) {
|
|
|
|
return OUTPUT_BUFFER_DC_SEEK;
|
|
|
|
} else {
|
|
|
|
dc->seekError = 1;
|
|
|
|
dc->seek = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!inStream ||
|
|
|
|
bufferInputStream(inStream) <= 0) {
|
|
|
|
my_usleep(10000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (sendMetaChunk) {
|
2004-06-06 21:41:03 +02:00
|
|
|
cb->metaChunk[currentChunk] = currentMetaChunk;
|
2006-07-20 18:02:40 +02:00
|
|
|
} 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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
chunkLeft = CHUNK_SIZE - cb->chunkSize[currentChunk];
|
|
|
|
dataToSend = datalen > chunkLeft ? chunkLeft : datalen;
|
2004-05-07 04:42:49 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
memcpy(cb->chunks + currentChunk * CHUNK_SIZE +
|
|
|
|
cb->chunkSize[currentChunk], data, dataToSend);
|
|
|
|
cb->chunkSize[currentChunk] += dataToSend;
|
|
|
|
datalen -= dataToSend;
|
|
|
|
data += dataToSend;
|
2004-05-07 21:11:43 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (cb->chunkSize[currentChunk] == CHUNK_SIZE) {
|
2004-05-07 21:11:43 +02:00
|
|
|
flushOutputBuffer(cb);
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
int copyMpdTagToOutputBuffer(OutputBuffer * cb, MpdTag * tag)
|
|
|
|
{
|
2004-06-07 00:13:23 +02:00
|
|
|
int nextChunk;
|
2007-01-14 04:07:53 +01:00
|
|
|
static MpdTag *last;
|
2004-06-07 00:13:23 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!cb->acceptMetadata || !tag) {
|
2004-06-06 21:41:03 +02:00
|
|
|
sendMetaChunk = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
if (last)
|
|
|
|
freeMpdTag(last);
|
2004-06-07 16:16:10 +02:00
|
|
|
last = NULL;
|
2004-06-09 18:58:33 +02:00
|
|
|
DEBUG("copyMpdTagToOB: !acceptMetadata || !tag\n");
|
2004-06-07 16:16:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (last && mpdTagsAreEqual(last, tag)) {
|
2004-06-09 18:58:33 +02:00
|
|
|
DEBUG("copyMpdTagToOB: 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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (last)
|
|
|
|
freeMpdTag(last);
|
2004-06-07 17:00:18 +02:00
|
|
|
last = NULL;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
nextChunk = currentMetaChunk + 1;
|
|
|
|
if (nextChunk >= BUFFERED_METACHUNKS)
|
|
|
|
nextChunk = 0;
|
2004-06-07 00:13:23 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (cb->metaChunkSet[nextChunk]) {
|
2004-06-09 18:58:33 +02:00
|
|
|
sendMetaChunk = 0;
|
|
|
|
DEBUG("copyMpdTagToOB: metachunk in use!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2004-06-07 00:13:23 +02:00
|
|
|
|
2004-06-07 17:00:18 +02:00
|
|
|
sendMetaChunk = 1;
|
2004-06-07 00:13:23 +02:00
|
|
|
currentMetaChunk = nextChunk;
|
2004-06-06 18:42:14 +02:00
|
|
|
|
2004-06-07 16:16:10 +02:00
|
|
|
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-09 18:58:33 +02:00
|
|
|
DEBUG("copyMpdTagToOB: copiedTag\n");
|
|
|
|
|
2004-06-06 23:37:12 +02:00
|
|
|
return 0;
|
2004-06-06 18:42:14 +02:00
|
|
|
}
|