ogg_plugin.c 9.6 KB
Newer Older
Led's avatar
Led committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
/* 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 "../inputPlugin.h"

#ifdef HAVE_OGG

#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../replayGain.h"

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <vorbis/vorbisfile.h>
#include <errno.h>

#ifdef WORDS_BIGENDIAN
#define OGG_DECODE_USE_BIGENDIAN	1
#else
#define OGG_DECODE_USE_BIGENDIAN	0
#endif

typedef struct _OggCallbackData {
        InputStream * inStream;
        DecoderControl * dc;
} OggCallbackData;

/* this is just for tag parsing for db import! */
int getOggTotalTime(char * file) {
	OggVorbis_File vf;
	FILE * oggfp;
	int totalTime;
	
	if(!(oggfp = fopen(file,"r"))) return -1;
		
	if(ov_open(oggfp, &vf, NULL, 0) < 0) {
		fclose(oggfp);
		return -1;
	}
	
	totalTime = ov_time_total(&vf,-1)+0.5;

	ov_clear(&vf);

	return totalTime;
}

size_t ogg_read_cb(void * ptr, size_t size, size_t nmemb, void * vdata)
{
	size_t ret = 0;
        OggCallbackData * data = (OggCallbackData *)vdata;

        while(1) {
	        ret = readFromInputStream(data->inStream,ptr,size,nmemb);
                if(ret == 0 && !inputStreamAtEOF(data->inStream) && 
                                !data->dc->stop) 
                {
                        my_usleep(10000);
                }
                else break;
        }
        errno = 0;
	/*if(ret<0) errno = ((InputStream *)inStream)->error;*/

	return ret;
}

int ogg_seek_cb(void * vdata, ogg_int64_t offset, int whence) {
        OggCallbackData * data = (OggCallbackData *)vdata;

	return seekInputStream(data->inStream,offset,whence);
}

int ogg_close_cb(void * vdata) {
        OggCallbackData * data = (OggCallbackData *)vdata;

	return closeInputStream(data->inStream);
}

long ogg_tell_cb(void * vdata) {
        OggCallbackData * data = (OggCallbackData *)vdata;

	return (long)(data->inStream->offset);
}

char * ogg_parseComment(char * comment, char * needle) {
        int len = strlen(needle);

        if(strncasecmp(comment, needle, len) == 0 && *(comment+len) == '=') {
		return comment+len+1;
	}

        return NULL;
}

Led's avatar
Led committed
117
void ogg_getReplayGainInfo(char ** comments, ReplayGainInfo ** infoPtr) {
Led's avatar
Led committed
118
        char * temp;
Led's avatar
Led committed
119
	int found = 0;
Led's avatar
Led committed
120

Led's avatar
Led committed
121 122
	if(*infoPtr) freeReplayGainInfo(*infoPtr);
	*infoPtr = newReplayGainInfo();
Led's avatar
Led committed
123 124 125 126

        while(*comments) {
                if((temp = ogg_parseComment(*comments,"replaygain_track_gain"))) 
                {
Led's avatar
Led committed
127 128
                        (*infoPtr)->trackGain = atof(temp);
			found = 1;
Led's avatar
Led committed
129 130 131 132
                }
                else if((temp = ogg_parseComment(*comments,
                                        "replaygain_album_gain"))) 
                {
Led's avatar
Led committed
133 134
                        (*infoPtr)->albumGain = atof(temp);
			found = 1;
Led's avatar
Led committed
135 136 137 138
                }
                else if((temp = ogg_parseComment(*comments,
                                        "replaygain_track_peak"))) 
                {
Led's avatar
Led committed
139 140
                        (*infoPtr)->trackPeak = atof(temp);
			found = 1;
Led's avatar
Led committed
141 142 143 144
                }
                else if((temp = ogg_parseComment(*comments,
                                        "replaygain_album_peak"))) 
                {
Led's avatar
Led committed
145 146
                        (*infoPtr)->albumPeak = atof(temp);
			found = 1;
Led's avatar
Led committed
147 148 149 150 151
                }

                comments++;
        }

Led's avatar
Led committed
152 153 154 155
	if(!found) {
		freeReplayGainInfo(*infoPtr);
		*infoPtr = NULL;
	}
Led's avatar
Led committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
}

MpdTag * oggCommentsParse(char ** comments) {
	MpdTag * ret = NULL;
	char * temp;

	while(*comments) {
                if((temp = ogg_parseComment(*comments,"artist"))) {
			if(!ret) ret = newMpdTag();
			if(!ret->artist) {
				ret->artist = strdup(temp);
			}
		} 
                else if((temp = ogg_parseComment(*comments,"title"))) {
			if(!ret) ret = newMpdTag();
			if(!ret->title) {
				ret->title = strdup(temp);
			}
		}
                else if((temp = ogg_parseComment(*comments,"album"))) {
			if(!ret) ret = newMpdTag();
			if(!ret->album) {
				ret->album = strdup(temp);
			}
		}
                else if((temp = ogg_parseComment(*comments,"tracknumber"))) {
			if(!ret) ret = newMpdTag();
			if(!ret->track) {
				ret->track = strdup(temp);
			}
		}

		comments++;
	}

	return ret;
}

Led's avatar
Led committed
194 195
void putOggCommentsIntoOutputBuffer(OutputBuffer * cb, char * streamName,
		char ** comments) 
Led's avatar
Led committed
196 197 198 199
{
	MpdTag * tag;

	tag = oggCommentsParse(comments);
Led's avatar
Led committed
200 201 202
	if(!tag && streamName) {
		tag = newMpdTag();
	}
Led's avatar
Led committed
203 204
	if(!tag) return;

Led's avatar
Led committed
205 206 207 208 209 210 211 212 213 214 215
	/*if(tag->artist) printf("Artist: %s\n", tag->artist);
	if(tag->album) printf("Album: %s\n", tag->album);
	if(tag->track) printf("Track: %s\n", tag->track);
	if(tag->title) printf("Title: %s\n", tag->title);*/

	if(streamName) {
		if(tag->name) free(tag->name);
		tag->name = strdup(streamName);
	}

	copyMpdTagToOutputBuffer(cb, tag);
Led's avatar
Led committed
216 217 218 219 220 221 222 223 224 225

	freeMpdTag(tag);
}

int ogg_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream)
{
	OggVorbis_File vf;
	ov_callbacks callbacks;
        OggCallbackData data;
	int current_section;
Led's avatar
Led committed
226
	int prev_section = -1;
Led's avatar
Led committed
227 228 229 230 231 232 233
	int eof = 0;
	long ret;
#define OGG_CHUNK_SIZE 4096
	char chunk[OGG_CHUNK_SIZE];
	int chunkpos = 0;
	long bitRate = 0;
	long test;
Led's avatar
Led committed
234
        ReplayGainInfo * replayGainInfo = NULL;
Led's avatar
Led committed
235 236 237 238 239 240 241 242 243 244
	char ** comments;

        data.inStream = inStream;
        data.dc = dc;

	callbacks.read_func = ogg_read_cb;
	callbacks.seek_func = ogg_seek_cb;
	callbacks.close_func = ogg_close_cb;
	callbacks.tell_func = ogg_tell_cb;
	
Led's avatar
Led committed
245
	if((ret = ov_open_callbacks(&data, &vf, NULL, 0, callbacks)) < 0) {
Led's avatar
Led committed
246 247
		closeInputStream(inStream);
		if(!dc->stop) {
Led's avatar
Led committed
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
		        ERROR("Error decoding Ogg Vorbis stream: ");
			switch(ret) {
			case OV_EREAD:
				ERROR("read error\n");
				break;
			case OV_ENOTVORBIS:
				ERROR("not vorbis stream\n");
				break;
			case OV_EVERSION:
				ERROR("vorbis version mismatch\n");
				break;
			case OV_EBADHEADER:
				ERROR("invalid vorbis header\n");
				break;
			case OV_EFAULT:
				ERROR("internal logic error\n");
				break;
			default:
				ERROR("unknown error\n");
				break;
			}
Led's avatar
Led committed
269 270 271 272 273 274 275 276 277 278
                        return -1;
                }
                else {
                        dc->state = DECODE_STATE_STOP;
                        dc->stop = 0;
                }
                return 0;
	}
	
	dc->totalTime = ov_time_total(&vf,-1);
Led's avatar
Led committed
279
       	if(dc->totalTime < 0) dc->totalTime = 0;
Led's avatar
Led committed
280

Led's avatar
Led committed
281
	dc->audioFormat.bits = 16;
Led's avatar
Led committed
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296

	while(!eof) {
		if(dc->seek) {
			if(0 == ov_time_seek_page(&vf,dc->seekWhere)) {
                                clearOutputBuffer(cb);
			        chunkpos = 0;
                        }
                        else dc->seekError = 1;
			dc->seek = 0;
		}
		ret = ov_read(&vf, chunk+chunkpos, 
				OGG_CHUNK_SIZE-chunkpos,
				OGG_DECODE_USE_BIGENDIAN,
				2, 1, &current_section);

Led's avatar
Led committed
297 298 299 300 301 302 303 304 305 306 307 308 309
		if(current_section!=prev_section) {
			/*printf("new song!\n");*/
			vorbis_info *vi=ov_info(&vf,-1);
			dc->audioFormat.channels = vi->channels;
			dc->audioFormat.sampleRate = vi->rate;
			if(dc->state == DECODE_STATE_START) {
        			getOutputAudioFormat(&(dc->audioFormat),
					&(cb->audioFormat));
				dc->state = DECODE_STATE_DECODE;
			}
			comments = ov_comment(&vf, -1)->user_comments;
			putOggCommentsIntoOutputBuffer(cb, inStream->metaName,
					comments);
Led's avatar
Led committed
310
        		ogg_getReplayGainInfo(comments, &replayGainInfo);
Led's avatar
Led committed
311 312 313 314
		}

		prev_section = current_section;

Led's avatar
Led committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
		if(ret <= 0 && ret != OV_HOLE) {
			eof = 1;
			break;
		}
                if(ret == OV_HOLE) ret = 0;

		chunkpos+=ret;

		if(chunkpos >= OGG_CHUNK_SIZE) {
			if((test = ov_bitrate_instant(&vf))>0) {
				bitRate = test/1000;
			}
			sendDataToOutputBuffer(cb, inStream, dc, 
						inStream->seekable,  
                                        	chunk, chunkpos, 
Led's avatar
Led committed
330 331
						ov_pcm_tell(&vf)/
						dc->audioFormat.sampleRate,
Led's avatar
Led committed
332 333
						bitRate,
						replayGainInfo);
Led's avatar
Led committed
334
			chunkpos = 0;
Led's avatar
Led committed
335
			if(dc->stop) break;
Led's avatar
Led committed
336 337 338 339 340 341
		}
	}

	if(!dc->stop && chunkpos > 0) {
		sendDataToOutputBuffer(cb, NULL, dc, inStream->seekable,
				chunk, chunkpos,
Led's avatar
Led committed
342
				ov_time_tell(&vf), bitRate, replayGainInfo);
Led's avatar
Led committed
343 344
	}

Led's avatar
Led committed
345 346
	if(replayGainInfo) freeReplayGainInfo(replayGainInfo);

Led's avatar
Led committed
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
	ov_clear(&vf);

	flushOutputBuffer(cb);

	if(dc->stop) {
		dc->state = DECODE_STATE_STOP;
		dc->stop = 0;
	}
	else dc->state = DECODE_STATE_STOP;

	return 0;
}

MpdTag * oggTagDup(char * file) {
	MpdTag * ret = NULL;
	FILE * fp;
	OggVorbis_File vf;

	fp = fopen(file,"r"); 
	if(!fp) return NULL;
	if(ov_open(fp,&vf,NULL,0)<0) {
		fclose(fp);
		return NULL;
	}

	ret = oggCommentsParse(ov_comment(&vf,-1)->user_comments);

	if(!ret) ret = newMpdTag();
	ret->time = (int)(ov_time_total(&vf,-1)+0.5);

	ov_clear(&vf);

	return ret;	
}

char * oggSuffixes[] = {"ogg", NULL};
char * oggMimeTypes[] = {"application/ogg", NULL};

InputPlugin oggPlugin =
{
        "ogg",
	NULL,
	NULL,
        ogg_decode,
        NULL,
        oggTagDup,
        INPUT_PLUGIN_STREAM_URL | INPUT_PLUGIN_STREAM_FILE,
        oggSuffixes,
        oggMimeTypes
};

#else

InputPlugin oggPlugin = 
{
	NULL,
	NULL,
	NULL,
        NULL,
        NULL,
        NULL,
        0,
        NULL,
        NULL
};

#endif