2004-02-24 00:41:20 +01: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
|
|
|
|
*/
|
|
|
|
|
2004-05-31 03:21:17 +02:00
|
|
|
#include "../inputPlugin.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-03-18 04:29:25 +01:00
|
|
|
#ifdef HAVE_OGG
|
|
|
|
|
2004-05-31 03:21:17 +02:00
|
|
|
#include "../utils.h"
|
|
|
|
#include "../audio.h"
|
|
|
|
#include "../log.h"
|
|
|
|
#include "../pcm_utils.h"
|
|
|
|
#include "../inputStream.h"
|
|
|
|
#include "../outputBuffer.h"
|
|
|
|
#include "../replayGain.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-08-25 10:07:28 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_TREMOR
|
2004-02-24 00:41:20 +01:00
|
|
|
#include <vorbis/vorbisfile.h>
|
2005-08-25 10:07:28 +02:00
|
|
|
#else
|
|
|
|
#include <tremor/ivorbisfile.h>
|
|
|
|
/* Macros to make Tremor's API look like libogg. Tremor always
|
|
|
|
returns host-byte-order 16-bit signed data, and uses integer
|
|
|
|
milliseconds where libogg uses double seconds.
|
|
|
|
*/
|
|
|
|
#define ov_read(VF, BUFFER, LENGTH, BIGENDIANP, WORD, SGNED, BITSTREAM) \
|
|
|
|
ov_read(VF, BUFFER, LENGTH, BITSTREAM)
|
|
|
|
#define ov_time_total(VF, I) ((double)ov_time_total(VF, I)/1000)
|
|
|
|
#define ov_time_tell(VF) ((double)ov_time_tell(VF)/1000)
|
|
|
|
#define ov_time_seek_page(VF, S) (ov_time_seek_page(VF, (S)*1000))
|
|
|
|
#endif /* HAVE_TREMOR */
|
|
|
|
|
2004-05-04 21:49:29 +02:00
|
|
|
#include <errno.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-03-09 22:42:08 +01:00
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
#define OGG_DECODE_USE_BIGENDIAN 1
|
|
|
|
#else
|
|
|
|
#define OGG_DECODE_USE_BIGENDIAN 0
|
|
|
|
#endif
|
|
|
|
|
2004-05-20 05:44:33 +02:00
|
|
|
typedef struct _OggCallbackData {
|
|
|
|
InputStream * inStream;
|
|
|
|
DecoderControl * dc;
|
|
|
|
} OggCallbackData;
|
|
|
|
|
|
|
|
size_t ogg_read_cb(void * ptr, size_t size, size_t nmemb, void * vdata)
|
2004-05-04 21:49:29 +02:00
|
|
|
{
|
2004-05-20 05:44:33 +02:00
|
|
|
size_t ret = 0;
|
|
|
|
OggCallbackData * data = (OggCallbackData *)vdata;
|
2004-05-04 21:49:29 +02:00
|
|
|
|
2004-05-20 05:44:33 +02:00
|
|
|
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;*/
|
2004-05-04 21:49:29 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-05-20 05:44:33 +02:00
|
|
|
int ogg_seek_cb(void * vdata, ogg_int64_t offset, int whence) {
|
|
|
|
OggCallbackData * data = (OggCallbackData *)vdata;
|
|
|
|
|
|
|
|
return seekInputStream(data->inStream,offset,whence);
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2004-05-20 05:44:33 +02:00
|
|
|
int ogg_close_cb(void * vdata) {
|
|
|
|
OggCallbackData * data = (OggCallbackData *)vdata;
|
|
|
|
|
|
|
|
return closeInputStream(data->inStream);
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2004-05-20 05:44:33 +02:00
|
|
|
long ogg_tell_cb(void * vdata) {
|
|
|
|
OggCallbackData * data = (OggCallbackData *)vdata;
|
|
|
|
|
|
|
|
return (long)(data->inStream->offset);
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2004-05-08 14:00:30 +02:00
|
|
|
char * ogg_parseComment(char * comment, char * needle) {
|
|
|
|
int len = strlen(needle);
|
|
|
|
|
2004-05-31 04:21:06 +02:00
|
|
|
if(strncasecmp(comment, needle, len) == 0 && *(comment+len) == '=') {
|
|
|
|
return comment+len+1;
|
|
|
|
}
|
2004-05-08 14:00:30 +02:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-11-02 20:56:59 +01:00
|
|
|
void ogg_getReplayGainInfo(char ** comments, ReplayGainInfo ** infoPtr) {
|
2004-05-08 14:00:30 +02:00
|
|
|
char * temp;
|
2004-11-02 20:56:59 +01:00
|
|
|
int found = 0;
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2004-11-02 20:56:59 +01:00
|
|
|
if(*infoPtr) freeReplayGainInfo(*infoPtr);
|
|
|
|
*infoPtr = newReplayGainInfo();
|
2004-05-08 14:00:30 +02:00
|
|
|
|
|
|
|
while(*comments) {
|
|
|
|
if((temp = ogg_parseComment(*comments,"replaygain_track_gain")))
|
|
|
|
{
|
2004-11-02 20:56:59 +01:00
|
|
|
(*infoPtr)->trackGain = atof(temp);
|
|
|
|
found = 1;
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,
|
|
|
|
"replaygain_album_gain")))
|
|
|
|
{
|
2004-11-02 20:56:59 +01:00
|
|
|
(*infoPtr)->albumGain = atof(temp);
|
|
|
|
found = 1;
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,
|
|
|
|
"replaygain_track_peak")))
|
|
|
|
{
|
2004-11-02 20:56:59 +01:00
|
|
|
(*infoPtr)->trackPeak = atof(temp);
|
|
|
|
found = 1;
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,
|
|
|
|
"replaygain_album_peak")))
|
|
|
|
{
|
2004-11-02 20:56:59 +01:00
|
|
|
(*infoPtr)->albumPeak = atof(temp);
|
|
|
|
found = 1;
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
comments++;
|
|
|
|
}
|
|
|
|
|
2004-11-02 20:56:59 +01:00
|
|
|
if(!found) {
|
|
|
|
freeReplayGainInfo(*infoPtr);
|
|
|
|
*infoPtr = NULL;
|
|
|
|
}
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
|
2004-06-01 13:18:25 +02:00
|
|
|
MpdTag * oggCommentsParse(char ** comments) {
|
|
|
|
MpdTag * ret = NULL;
|
|
|
|
char * temp;
|
|
|
|
|
|
|
|
while(*comments) {
|
|
|
|
if((temp = ogg_parseComment(*comments,"artist"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_ARTIST, temp);
|
2004-06-01 13:18:25 +02:00
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,"title"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_TITLE, temp);
|
2004-06-01 13:18:25 +02:00
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,"album"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_ALBUM, temp);
|
2004-06-01 13:18:25 +02:00
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,"tracknumber"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
2004-11-10 22:58:27 +01:00
|
|
|
addItemToMpdTag(ret, TAG_ITEM_TRACK, temp);
|
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,"genre"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
|
|
|
addItemToMpdTag(ret, TAG_ITEM_GENRE, temp);
|
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,"date"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
|
|
|
addItemToMpdTag(ret, TAG_ITEM_DATE, temp);
|
2004-06-01 13:18:25 +02:00
|
|
|
}
|
2005-03-05 23:24:10 +01:00
|
|
|
else if((temp = ogg_parseComment(*comments,"composer"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
|
|
|
addItemToMpdTag(ret, TAG_ITEM_COMPOSER, temp);
|
|
|
|
}
|
|
|
|
else if((temp = ogg_parseComment(*comments,"performer"))) {
|
|
|
|
if(!ret) ret = newMpdTag();
|
|
|
|
addItemToMpdTag(ret, TAG_ITEM_PERFORMER, temp);
|
|
|
|
}
|
2004-06-01 13:18:25 +02:00
|
|
|
|
|
|
|
comments++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-06-06 18:42:14 +02:00
|
|
|
void putOggCommentsIntoOutputBuffer(OutputBuffer * cb, char * streamName,
|
|
|
|
char ** comments)
|
2004-06-01 13:18:25 +02:00
|
|
|
{
|
|
|
|
MpdTag * tag;
|
|
|
|
|
|
|
|
tag = oggCommentsParse(comments);
|
2004-06-09 18:58:33 +02:00
|
|
|
if(!tag && streamName) {
|
|
|
|
tag = newMpdTag();
|
|
|
|
}
|
2004-06-01 13:18:25 +02:00
|
|
|
if(!tag) return;
|
|
|
|
|
2004-06-05 18:01:44 +02:00
|
|
|
/*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);*/
|
|
|
|
|
2004-06-06 18:42:14 +02:00
|
|
|
if(streamName) {
|
2004-11-10 22:58:27 +01:00
|
|
|
clearItemsFromMpdTag(tag, TAG_ITEM_NAME);
|
|
|
|
addItemToMpdTag(tag, TAG_ITEM_NAME, streamName);
|
2004-06-06 18:42:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
copyMpdTagToOutputBuffer(cb, tag);
|
|
|
|
|
2004-06-01 13:18:25 +02:00
|
|
|
freeMpdTag(tag);
|
|
|
|
}
|
|
|
|
|
2004-05-20 05:44:33 +02:00
|
|
|
int ogg_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream)
|
2004-02-24 00:41:20 +01:00
|
|
|
{
|
|
|
|
OggVorbis_File vf;
|
2004-05-04 21:49:29 +02:00
|
|
|
ov_callbacks callbacks;
|
2004-05-20 05:44:33 +02:00
|
|
|
OggCallbackData data;
|
2004-06-01 12:37:13 +02:00
|
|
|
int current_section;
|
2004-06-05 07:03:00 +02:00
|
|
|
int prev_section = -1;
|
2004-06-01 12:37:13 +02:00
|
|
|
int eof = 0;
|
|
|
|
long ret;
|
|
|
|
#define OGG_CHUNK_SIZE 4096
|
|
|
|
char chunk[OGG_CHUNK_SIZE];
|
|
|
|
int chunkpos = 0;
|
|
|
|
long bitRate = 0;
|
|
|
|
long test;
|
2004-11-02 20:56:59 +01:00
|
|
|
ReplayGainInfo * replayGainInfo = NULL;
|
2004-06-01 12:37:13 +02:00
|
|
|
char ** comments;
|
2004-05-20 05:44:33 +02:00
|
|
|
|
|
|
|
data.inStream = inStream;
|
|
|
|
data.dc = dc;
|
2004-05-04 21:49:29 +02:00
|
|
|
|
|
|
|
callbacks.read_func = ogg_read_cb;
|
|
|
|
callbacks.seek_func = ogg_seek_cb;
|
|
|
|
callbacks.close_func = ogg_close_cb;
|
|
|
|
callbacks.tell_func = ogg_tell_cb;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-11-05 06:12:58 +01:00
|
|
|
if((ret = ov_open_callbacks(&data, &vf, NULL, 0, callbacks)) < 0) {
|
2004-05-20 05:44:33 +02:00
|
|
|
closeInputStream(inStream);
|
|
|
|
if(!dc->stop) {
|
2004-11-05 06:12:58 +01:00
|
|
|
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;
|
|
|
|
}
|
2004-05-20 05:44:33 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-05-20 06:32:38 +02:00
|
|
|
else {
|
|
|
|
dc->state = DECODE_STATE_STOP;
|
|
|
|
dc->stop = 0;
|
|
|
|
}
|
2004-05-20 05:44:33 +02:00
|
|
|
return 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-05-10 14:35:18 +02:00
|
|
|
dc->totalTime = ov_time_total(&vf,-1);
|
2004-06-05 18:01:44 +02:00
|
|
|
if(dc->totalTime < 0) dc->totalTime = 0;
|
2004-06-01 12:37:13 +02:00
|
|
|
|
2004-06-05 18:01:44 +02:00
|
|
|
dc->audioFormat.bits = 16;
|
2004-06-01 12:37:13 +02:00
|
|
|
|
|
|
|
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, ¤t_section);
|
|
|
|
|
2004-06-05 18:01:44 +02:00
|
|
|
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;
|
2004-06-06 18:42:14 +02:00
|
|
|
if(dc->state == DECODE_STATE_START) {
|
|
|
|
getOutputAudioFormat(&(dc->audioFormat),
|
|
|
|
&(cb->audioFormat));
|
|
|
|
dc->state = DECODE_STATE_DECODE;
|
|
|
|
}
|
2004-06-05 18:01:44 +02:00
|
|
|
comments = ov_comment(&vf, -1)->user_comments;
|
2004-06-07 07:00:56 +02:00
|
|
|
putOggCommentsIntoOutputBuffer(cb, inStream->metaName,
|
2004-06-06 18:42:14 +02:00
|
|
|
comments);
|
2004-11-02 20:56:59 +01:00
|
|
|
ogg_getReplayGainInfo(comments, &replayGainInfo);
|
2004-06-05 18:01:44 +02:00
|
|
|
}
|
2004-06-05 07:03:00 +02:00
|
|
|
|
|
|
|
prev_section = current_section;
|
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
if(ret <= 0 && ret != OV_HOLE) {
|
|
|
|
eof = 1;
|
|
|
|
break;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-01 12:37:13 +02:00
|
|
|
if(ret == OV_HOLE) ret = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
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,
|
2004-06-10 23:42:20 +02:00
|
|
|
ov_pcm_tell(&vf)/
|
|
|
|
dc->audioFormat.sampleRate,
|
2004-11-02 20:56:59 +01:00
|
|
|
bitRate,
|
|
|
|
replayGainInfo);
|
2004-06-01 12:37:13 +02:00
|
|
|
chunkpos = 0;
|
2004-06-20 00:27:29 +02:00
|
|
|
if(dc->stop) break;
|
2004-05-10 21:41:27 +02:00
|
|
|
}
|
2004-06-01 12:37:13 +02:00
|
|
|
}
|
2004-05-10 21:41:27 +02:00
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
if(!dc->stop && chunkpos > 0) {
|
|
|
|
sendDataToOutputBuffer(cb, NULL, dc, inStream->seekable,
|
|
|
|
chunk, chunkpos,
|
2004-11-02 20:56:59 +01:00
|
|
|
ov_time_tell(&vf), bitRate, replayGainInfo);
|
2004-06-01 12:37:13 +02:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-11-02 20:56:59 +01:00
|
|
|
if(replayGainInfo) freeReplayGainInfo(replayGainInfo);
|
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
ov_clear(&vf);
|
2004-05-07 21:11:43 +02:00
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
flushOutputBuffer(cb);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
if(dc->stop) {
|
|
|
|
dc->state = DECODE_STATE_STOP;
|
|
|
|
dc->stop = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-01 12:37:13 +02:00
|
|
|
else dc->state = DECODE_STATE_STOP;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-31 04:21:06 +02:00
|
|
|
MpdTag * oggTagDup(char * file) {
|
2004-05-31 03:21:17 +02:00
|
|
|
MpdTag * ret = NULL;
|
|
|
|
FILE * fp;
|
|
|
|
OggVorbis_File vf;
|
|
|
|
|
2004-05-31 04:21:06 +02:00
|
|
|
fp = fopen(file,"r");
|
2005-09-08 23:08:02 +02:00
|
|
|
if(!fp)
|
|
|
|
{
|
|
|
|
DEBUG("oggTagDup: Failed to open file: '%s', %s\n", file, strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-05-31 03:21:17 +02:00
|
|
|
if(ov_open(fp,&vf,NULL,0)<0) {
|
|
|
|
fclose(fp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-06-01 13:18:25 +02:00
|
|
|
ret = oggCommentsParse(ov_comment(&vf,-1)->user_comments);
|
2004-05-31 05:02:17 +02:00
|
|
|
|
2004-06-01 13:18:25 +02:00
|
|
|
if(!ret) ret = newMpdTag();
|
|
|
|
ret->time = (int)(ov_time_total(&vf,-1)+0.5);
|
2004-05-31 03:21:17 +02:00
|
|
|
|
|
|
|
ov_clear(&vf);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
char * oggSuffixes[] = {"ogg", NULL};
|
|
|
|
char * oggMimeTypes[] = {"application/ogg", NULL};
|
|
|
|
|
|
|
|
InputPlugin oggPlugin =
|
|
|
|
{
|
|
|
|
"ogg",
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-05-31 03:21:17 +02:00
|
|
|
ogg_decode,
|
|
|
|
NULL,
|
|
|
|
oggTagDup,
|
|
|
|
INPUT_PLUGIN_STREAM_URL | INPUT_PLUGIN_STREAM_FILE,
|
|
|
|
oggSuffixes,
|
|
|
|
oggMimeTypes
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
InputPlugin oggPlugin =
|
|
|
|
{
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-05-31 03:54:10 +02:00
|
|
|
NULL,
|
2004-05-31 03:21:17 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|