outputBuffer.c 5.33 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* 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"
24
#include "log.h"
25 26 27

#include <string.h>

28 29
static mpd_sint16 currentChunk = -1;

30 31 32
static mpd_sint8 currentMetaChunk = -1;
static mpd_sint8 sendMetaChunk = 0;

Warren Dukes's avatar
Warren Dukes committed
33
void clearAllMetaChunkSets(OutputBuffer * cb) {
34
	memset(cb->metaChunkSet, 0, BUFFERED_METACHUNKS);
Warren Dukes's avatar
Warren Dukes committed
35 36
}

37
void clearOutputBuffer(OutputBuffer * cb) {
38 39
	int currentSet = 1;

40
        currentChunk = -1;
41
        cb->end = cb->begin;
Warren Dukes's avatar
Warren Dukes committed
42

43 44 45 46 47 48 49 50
	/* 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;
Warren Dukes's avatar
Warren Dukes committed
51
	}
52 53
}

54 55
void flushOutputBuffer(OutputBuffer * cb) {
	if(currentChunk == cb->end) {
Warren Dukes's avatar
Warren Dukes committed
56 57 58
	        int next = cb->end+1;
	        if(next>=buffered_chunks) {
		       	next = 0;
59
	        }
Warren Dukes's avatar
Warren Dukes committed
60
		cb->end = next;
61 62 63 64
		currentChunk = -1;
	}
}

65
int sendDataToOutputBuffer(OutputBuffer * cb, InputStream * inStream,  
66
                DecoderControl * dc, int seekable, char * dataIn, 
67 68
                long dataInLen, float time, mpd_uint16 bitRate,
		ReplayGainInfo * replayGainInfo)
69
{
70 71
        mpd_uint16 dataToSend;
	mpd_uint16 chunkLeft;
72 73 74 75 76
	char * data;
	size_t datalen;
	static char * convBuffer = NULL;
	static long convBufferLen = 0;

77
	if(cmpAudioFormat(&(cb->audioFormat),&(dc->audioFormat))==0)
78 79 80 81 82 83
	{
		data = dataIn;
		datalen = dataInLen;
	}
	else {
		datalen = pcm_sizeOfOutputBufferForAudioFormatConversion(
84
				&(dc->audioFormat), dataInLen,
85 86 87 88 89 90 91 92 93
				&(cb->audioFormat));
		if(datalen > convBufferLen) {
			convBuffer = realloc(convBuffer,datalen);
			convBufferLen = datalen;
		}
		data = convBuffer;
		pcm_convertAudioFormat(&(dc->audioFormat), dataIn, dataInLen,
				&(cb->audioFormat),data);
	}
94

95 96 97
	if(replayGainInfo) {
		doReplayGain(replayGainInfo, data, datalen, &cb->audioFormat);
	}
98

99 100
        while(datalen) {
		if(currentChunk != cb->end) {
101 102 103 104 105
	        	int next = cb->end+1;
	        	if(next>=buffered_chunks) {
		       		next = 0;
	        	}
	        	while(cb->begin==next && !dc->stop) {
106 107 108 109
                                if(dc->seek) {
                                        if(seekable) {
                                                return OUTPUT_BUFFER_DC_SEEK;
                                        }
110 111 112 113
                                        else {
                                                dc->seekError = 1;
                                                dc->seek = 0;
                                        }
114
                                }
115 116 117 118 119
                                if(!inStream || 
                                        bufferInputStream(inStream) <= 0)
                                {
		        	        my_usleep(10000);
                                }
120 121
			}
	        	if(dc->stop) return OUTPUT_BUFFER_DC_STOP;
122

123 124
			currentChunk = cb->end;
			cb->chunkSize[currentChunk] = 0;
125 126 127 128 129 130 131

			if(sendMetaChunk) {
				cb->metaChunk[currentChunk] = currentMetaChunk;
			}
			else cb->metaChunk[currentChunk] = -1;
	        	cb->bitRate[currentChunk] = bitRate;
	        	cb->times[currentChunk] = time;
132
		}
133

134 135
		chunkLeft = CHUNK_SIZE-cb->chunkSize[currentChunk];
                dataToSend = datalen > chunkLeft ? chunkLeft : datalen;
136

137 138 139 140
	        memcpy(cb->chunks+currentChunk*CHUNK_SIZE+
			cb->chunkSize[currentChunk],
			data, dataToSend);
	        cb->chunkSize[currentChunk]+= dataToSend;
141 142
                datalen-= dataToSend;
                data+= dataToSend;
143 144 145 146

		if(cb->chunkSize[currentChunk] == CHUNK_SIZE) {
			flushOutputBuffer(cb);
		}
147 148
        }

149
	return 0;
150
}
Warren Dukes's avatar
Warren Dukes committed
151

Warren Dukes's avatar
Warren Dukes committed
152
int copyMpdTagToOutputBuffer(OutputBuffer * cb, MpdTag * tag) {
Warren Dukes's avatar
Warren Dukes committed
153
	int nextChunk;
154
	static MpdTag * last = NULL;
Warren Dukes's avatar
Warren Dukes committed
155

156 157
        if(!cb->acceptMetadata || !tag) {
		sendMetaChunk = 0;
158
		if(last) freeMpdTag(last);
159
		last = NULL;
160
		DEBUG("copyMpdTagToOB: !acceptMetadata || !tag\n");
161 162 163 164
		return 0;
	}

	if(last && mpdTagsAreEqual(last, tag)) {
165
		DEBUG("copyMpdTagToOB: same as last\n");
Warren Dukes's avatar
Warren Dukes committed
166
		return 0;
167
	}
Warren Dukes's avatar
Warren Dukes committed
168

169 170 171
	if(last) freeMpdTag(last);
	last = NULL;

Warren Dukes's avatar
Warren Dukes committed
172 173 174
	nextChunk = currentMetaChunk+1;
	if(nextChunk >= BUFFERED_METACHUNKS) nextChunk = 0;

175 176 177 178 179
	if(cb->metaChunkSet[nextChunk]) {
		sendMetaChunk = 0;
		DEBUG("copyMpdTagToOB: metachunk in use!\n");
		return -1;
	}
Warren Dukes's avatar
Warren Dukes committed
180

181
	sendMetaChunk = 1;
Warren Dukes's avatar
Warren Dukes committed
182
	currentMetaChunk = nextChunk;
Warren Dukes's avatar
Warren Dukes committed
183

184 185
	last = mpdTagDup(tag);

186
	copyMpdTagToMetadataChunk(tag, &(cb->metadataChunks[currentMetaChunk]));
Warren Dukes's avatar
Warren Dukes committed
187

Warren Dukes's avatar
Warren Dukes committed
188 189
	cb->metaChunkSet[nextChunk] = 1;

190 191
	DEBUG("copyMpdTagToOB: copiedTag\n");

Warren Dukes's avatar
Warren Dukes committed
192
	return 0;
Warren Dukes's avatar
Warren Dukes committed
193
}