2004-02-24 00:41:20 +01: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-02-24 00:41:20 +01: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
|
|
|
|
*/
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
/* TODO 'ogg' should probably be replaced with 'oggvorbis' in all instances */
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
#include "../decoder_api.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
#ifdef HAVE_OGGVORBIS
|
|
|
|
|
|
|
|
#include "_ogg_common.h"
|
2004-03-18 04:29:25 +01:00
|
|
|
|
2004-05-31 03:21:17 +02:00
|
|
|
#include "../utils.h"
|
|
|
|
#include "../log.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))
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* HAVE_TREMOR */
|
2005-08-25 10:07:28 +02: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 {
|
2006-07-20 18:02:40 +02:00
|
|
|
InputStream *inStream;
|
2008-08-26 08:27:07 +02:00
|
|
|
struct decoder *decoder;
|
2004-05-20 05:44:33 +02:00
|
|
|
} OggCallbackData;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static size_t ogg_read_cb(void *ptr, size_t size, size_t nmemb, void *vdata)
|
2004-05-04 21:49:29 +02:00
|
|
|
{
|
2008-03-26 11:37:36 +01:00
|
|
|
size_t ret;
|
2006-07-20 18:02:40 +02:00
|
|
|
OggCallbackData *data = (OggCallbackData *) vdata;
|
|
|
|
|
2008-08-26 08:27:14 +02:00
|
|
|
ret = decoder_read(data->decoder, data->inStream, ptr, size * nmemb);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
errno = 0;
|
|
|
|
/*if(ret<0) errno = ((InputStream *)inStream)->error; */
|
2004-05-04 21:49:29 +02:00
|
|
|
|
2008-08-26 08:27:14 +02:00
|
|
|
return ret / size;
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int ogg_seek_cb(void *vdata, ogg_int64_t offset, int whence)
|
|
|
|
{
|
2008-02-05 11:17:33 +01:00
|
|
|
const OggCallbackData *data = (const OggCallbackData *) vdata;
|
2008-08-26 08:27:07 +02:00
|
|
|
if(decoder_get_command(data->decoder) == DECODE_COMMAND_STOP)
|
2007-11-28 15:06:03 +01:00
|
|
|
return -1;
|
2006-07-20 18:02:40 +02:00
|
|
|
return seekInputStream(data->inStream, offset, whence);
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2008-01-01 11:09:56 +01:00
|
|
|
/* TODO: check Ogg libraries API and see if we can just not have this func */
|
2008-08-26 08:27:02 +02:00
|
|
|
static int ogg_close_cb(mpd_unused void *vdata)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-01-01 11:09:56 +01:00
|
|
|
return 0;
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static long ogg_tell_cb(void *vdata)
|
|
|
|
{
|
2008-02-05 11:17:33 +01:00
|
|
|
const OggCallbackData *data = (const OggCallbackData *) vdata;
|
2004-05-20 05:44:33 +02:00
|
|
|
|
|
|
|
return (long)(data->inStream->offset);
|
2004-05-04 21:49:29 +02:00
|
|
|
}
|
|
|
|
|
2008-02-05 11:17:33 +01:00
|
|
|
static const char *ogg_parseComment(const char *comment, const char *needle)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
int len = strlen(needle);
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (strncasecmp(comment, needle, len) == 0 && *(comment + len) == '=') {
|
|
|
|
return comment + len + 1;
|
2004-05-31 04:21:06 +02:00
|
|
|
}
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
return NULL;
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void ogg_getReplayGainInfo(char **comments, ReplayGainInfo ** infoPtr)
|
|
|
|
{
|
2008-02-05 11:17:33 +01:00
|
|
|
const char *temp;
|
2004-11-02 20:56:59 +01:00
|
|
|
int found = 0;
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (*infoPtr)
|
|
|
|
freeReplayGainInfo(*infoPtr);
|
2004-11-02 20:56:59 +01:00
|
|
|
*infoPtr = newReplayGainInfo();
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (*comments) {
|
|
|
|
if ((temp =
|
|
|
|
ogg_parseComment(*comments, "replaygain_track_gain"))) {
|
|
|
|
(*infoPtr)->trackGain = atof(temp);
|
2004-11-02 20:56:59 +01:00
|
|
|
found = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if ((temp = ogg_parseComment(*comments,
|
|
|
|
"replaygain_album_gain"))) {
|
|
|
|
(*infoPtr)->albumGain = atof(temp);
|
2004-11-02 20:56:59 +01:00
|
|
|
found = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if ((temp = ogg_parseComment(*comments,
|
|
|
|
"replaygain_track_peak"))) {
|
|
|
|
(*infoPtr)->trackPeak = atof(temp);
|
2004-11-02 20:56:59 +01:00
|
|
|
found = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if ((temp = ogg_parseComment(*comments,
|
|
|
|
"replaygain_album_peak"))) {
|
|
|
|
(*infoPtr)->albumPeak = atof(temp);
|
2004-11-02 20:56:59 +01:00
|
|
|
found = 1;
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
comments++;
|
|
|
|
}
|
2004-05-08 14:00:30 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!found) {
|
2004-11-02 20:56:59 +01:00
|
|
|
freeReplayGainInfo(*infoPtr);
|
|
|
|
*infoPtr = NULL;
|
|
|
|
}
|
2004-05-08 14:00:30 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static const char *VORBIS_COMMENT_TRACK_KEY = "tracknumber";
|
|
|
|
static const char *VORBIS_COMMENT_DISC_KEY = "discnumber";
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static unsigned int ogg_parseCommentAddToTag(char *comment,
|
|
|
|
unsigned int itemType,
|
|
|
|
MpdTag ** tag)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
const char *needle;
|
2006-06-04 13:36:02 +02:00
|
|
|
unsigned int len;
|
2006-04-30 21:55:56 +02:00
|
|
|
switch (itemType) {
|
2006-07-20 18:02:40 +02:00
|
|
|
case TAG_ITEM_TRACK:
|
|
|
|
needle = VORBIS_COMMENT_TRACK_KEY;
|
|
|
|
break;
|
|
|
|
case TAG_ITEM_DISC:
|
|
|
|
needle = VORBIS_COMMENT_DISC_KEY;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
needle = mpdTagItemKeys[itemType];
|
2006-04-30 21:55:56 +02:00
|
|
|
}
|
2006-06-04 13:36:02 +02:00
|
|
|
len = strlen(needle);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (strncasecmp(comment, needle, len) == 0 && *(comment + len) == '=') {
|
2006-03-16 07:52:46 +01:00
|
|
|
if (!*tag)
|
|
|
|
*tag = newMpdTag();
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
addItemToMpdTag(*tag, itemType, comment + len + 1);
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2004-06-01 13:18:25 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MpdTag *oggCommentsParse(char **comments)
|
|
|
|
{
|
|
|
|
MpdTag *tag = NULL;
|
|
|
|
|
|
|
|
while (*comments) {
|
2006-04-18 08:17:48 +02:00
|
|
|
int j;
|
2006-07-20 18:02:40 +02:00
|
|
|
for (j = TAG_NUM_OF_ITEM_TYPES; --j >= 0;) {
|
2006-03-16 07:52:46 +01:00
|
|
|
if (ogg_parseCommentAddToTag(*comments, j, &tag))
|
|
|
|
break;
|
2005-03-05 23:24:10 +01:00
|
|
|
}
|
2004-06-01 13:18:25 +02:00
|
|
|
comments++;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
return tag;
|
2004-06-01 13:18:25 +02:00
|
|
|
}
|
|
|
|
|
2008-04-13 03:16:15 +02:00
|
|
|
static void putOggCommentsIntoOutputBuffer(char *streamName,
|
2006-07-20 18:02:40 +02:00
|
|
|
char **comments)
|
2004-06-01 13:18:25 +02:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
MpdTag *tag;
|
2004-06-01 13:18:25 +02:00
|
|
|
|
|
|
|
tag = oggCommentsParse(comments);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!tag && streamName) {
|
2004-06-09 18:58:33 +02:00
|
|
|
tag = newMpdTag();
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!tag)
|
|
|
|
return;
|
2004-06-01 13:18:25 +02:00
|
|
|
|
2006-07-20 18:02:40 +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
|
|
|
}
|
|
|
|
|
2004-06-01 13:18:25 +02:00
|
|
|
freeMpdTag(tag);
|
|
|
|
}
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
/* public */
|
2008-08-26 08:27:04 +02:00
|
|
|
static int oggvorbis_decode(struct decoder * decoder, InputStream * inStream)
|
2004-02-24 00:41:20 +01:00
|
|
|
{
|
|
|
|
OggVorbis_File vf;
|
2004-05-04 21:49:29 +02:00
|
|
|
ov_callbacks callbacks;
|
2006-07-20 18:02:40 +02:00
|
|
|
OggCallbackData data;
|
2008-08-26 08:27:05 +02:00
|
|
|
AudioFormat audio_format;
|
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
|
|
|
long ret;
|
|
|
|
#define OGG_CHUNK_SIZE 4096
|
|
|
|
char chunk[OGG_CHUNK_SIZE];
|
|
|
|
int chunkpos = 0;
|
|
|
|
long bitRate = 0;
|
|
|
|
long test;
|
2006-07-20 18:02:40 +02:00
|
|
|
ReplayGainInfo *replayGainInfo = NULL;
|
|
|
|
char **comments;
|
2008-02-05 11:17:33 +01:00
|
|
|
const char *errorStr;
|
2008-08-26 08:27:07 +02:00
|
|
|
int initialized = 0;
|
2004-05-20 05:44:33 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
data.inStream = inStream;
|
2008-08-26 08:27:07 +02:00
|
|
|
data.decoder = decoder;
|
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;
|
2006-07-20 18:02:40 +02:00
|
|
|
if ((ret = ov_open_callbacks(&data, &vf, NULL, 0, callbacks)) < 0) {
|
2008-08-26 08:27:14 +02:00
|
|
|
if (decoder_get_command(decoder) != DECODE_COMMAND_NONE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (ret) {
|
|
|
|
case OV_EREAD:
|
|
|
|
errorStr = "read error";
|
|
|
|
break;
|
|
|
|
case OV_ENOTVORBIS:
|
|
|
|
errorStr = "not vorbis stream";
|
|
|
|
break;
|
|
|
|
case OV_EVERSION:
|
|
|
|
errorStr = "vorbis version mismatch";
|
|
|
|
break;
|
|
|
|
case OV_EBADHEADER:
|
|
|
|
errorStr = "invalid vorbis header";
|
|
|
|
break;
|
|
|
|
case OV_EFAULT:
|
|
|
|
errorStr = "internal logic error";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errorStr = "unknown error";
|
|
|
|
break;
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2008-08-26 08:27:14 +02:00
|
|
|
ERROR("Error decoding Ogg Vorbis stream: %s\n",
|
|
|
|
errorStr);
|
|
|
|
return -1;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2008-08-26 08:27:05 +02:00
|
|
|
audio_format.bits = 16;
|
2004-06-01 12:37:13 +02:00
|
|
|
|
2008-03-26 11:37:49 +01:00
|
|
|
while (1) {
|
2008-08-26 08:27:07 +02:00
|
|
|
if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK) {
|
2008-08-26 08:27:07 +02:00
|
|
|
double seek_where = decoder_seek_where(decoder);
|
|
|
|
if (0 == ov_time_seek_page(&vf, seek_where)) {
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_clear(decoder);
|
2006-07-20 18:02:40 +02:00
|
|
|
chunkpos = 0;
|
2008-08-26 08:27:07 +02:00
|
|
|
decoder_command_finished(decoder);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else
|
2008-08-26 08:27:07 +02:00
|
|
|
decoder_seek_error(decoder);
|
2004-06-01 12:37:13 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
ret = ov_read(&vf, chunk + chunkpos,
|
|
|
|
OGG_CHUNK_SIZE - chunkpos,
|
|
|
|
OGG_DECODE_USE_BIGENDIAN, 2, 1, ¤t_section);
|
|
|
|
if (current_section != prev_section) {
|
|
|
|
/*printf("new song!\n"); */
|
|
|
|
vorbis_info *vi = ov_info(&vf, -1);
|
2008-08-26 08:27:05 +02:00
|
|
|
audio_format.channels = vi->channels;
|
|
|
|
audio_format.sampleRate = vi->rate;
|
2008-08-26 08:27:07 +02:00
|
|
|
if (!initialized) {
|
2008-08-26 08:27:05 +02:00
|
|
|
float total_time = ov_time_total(&vf, -1);
|
|
|
|
if (total_time < 0)
|
|
|
|
total_time = 0;
|
|
|
|
decoder_initialized(decoder, &audio_format,
|
|
|
|
total_time);
|
2008-08-26 08:27:07 +02:00
|
|
|
initialized = 1;
|
2004-06-06 18:42:14 +02:00
|
|
|
}
|
2004-06-05 18:01:44 +02:00
|
|
|
comments = ov_comment(&vf, -1)->user_comments;
|
2008-04-13 03:16:15 +02:00
|
|
|
putOggCommentsIntoOutputBuffer(inStream->metaName,
|
2006-07-20 18:02:40 +02:00
|
|
|
comments);
|
|
|
|
ogg_getReplayGainInfo(comments, &replayGainInfo);
|
2004-06-05 18:01:44 +02:00
|
|
|
}
|
2004-06-05 07:03:00 +02:00
|
|
|
|
|
|
|
prev_section = current_section;
|
|
|
|
|
2008-03-26 11:37:49 +01:00
|
|
|
if (ret <= 0) {
|
|
|
|
if (ret == OV_HOLE) /* bad packet */
|
|
|
|
ret = 0;
|
|
|
|
else /* break on EOF or other error */
|
|
|
|
break;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
chunkpos += ret;
|
2004-06-01 12:37:13 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (chunkpos >= OGG_CHUNK_SIZE) {
|
|
|
|
if ((test = ov_bitrate_instant(&vf)) > 0) {
|
|
|
|
bitRate = test / 1000;
|
2004-06-01 12:37:13 +02:00
|
|
|
}
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_data(decoder, inStream,
|
|
|
|
inStream->seekable,
|
|
|
|
chunk, chunkpos,
|
2008-08-26 08:27:05 +02:00
|
|
|
ov_pcm_tell(&vf) / audio_format.sampleRate,
|
2008-08-26 08:27:05 +02:00
|
|
|
bitRate, replayGainInfo);
|
2004-06-01 12:37:13 +02:00
|
|
|
chunkpos = 0;
|
2008-08-26 08:27:07 +02:00
|
|
|
if (decoder_get_command(decoder) == DECODE_COMMAND_STOP)
|
2006-07-20 18:02:40 +02:00
|
|
|
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
|
|
|
|
2008-08-26 08:27:15 +02:00
|
|
|
if (decoder_get_command(decoder) == DECODE_COMMAND_NONE &&
|
|
|
|
chunkpos > 0) {
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_data(decoder, NULL, inStream->seekable,
|
|
|
|
chunk, chunkpos,
|
|
|
|
ov_time_tell(&vf), bitRate,
|
|
|
|
replayGainInfo);
|
2004-06-01 12:37:13 +02:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (replayGainInfo)
|
|
|
|
freeReplayGainInfo(replayGainInfo);
|
2004-11-02 20:56:59 +01:00
|
|
|
|
2004-06-01 12:37:13 +02:00
|
|
|
ov_clear(&vf);
|
2004-05-07 21:11:43 +02:00
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_flush(decoder);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MpdTag *oggvorbis_TagDup(char *file)
|
|
|
|
{
|
2008-03-26 11:37:36 +01:00
|
|
|
MpdTag *ret;
|
2006-07-20 18:02:40 +02:00
|
|
|
FILE *fp;
|
2004-05-31 03:21:17 +02:00
|
|
|
OggVorbis_File vf;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
fp = fopen(file, "r");
|
|
|
|
if (!fp) {
|
2006-08-20 12:13:59 +02:00
|
|
|
DEBUG("oggvorbis_TagDup: Failed to open file: '%s', %s\n",
|
|
|
|
file, strerror(errno));
|
2006-07-20 18:02:40 +02:00
|
|
|
return NULL;
|
2005-09-08 23:08:02 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
if (ov_open(fp, &vf, NULL, 0) < 0) {
|
2004-05-31 03:21:17 +02:00
|
|
|
fclose(fp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
ret = oggCommentsParse(ov_comment(&vf, -1)->user_comments);
|
2004-05-31 05:02:17 +02:00
|
|
|
|
2006-07-20 18:02:40 +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);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
return ret;
|
2004-05-31 03:21:17 +02:00
|
|
|
}
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
static unsigned int oggvorbis_try_decode(InputStream * inStream)
|
|
|
|
{
|
2008-08-26 08:27:13 +02:00
|
|
|
if (!inStream->seekable)
|
|
|
|
/* we cannot seek after the detection, so don't bother
|
|
|
|
checking */
|
|
|
|
return 1;
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
return (ogg_stream_type_detect(inStream) == VORBIS) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2008-03-20 06:27:04 +01:00
|
|
|
static const char *oggvorbis_Suffixes[] = { "ogg","oga", NULL };
|
2008-02-05 11:17:33 +01:00
|
|
|
static const char *oggvorbis_MimeTypes[] = { "application/ogg",
|
|
|
|
"audio/x-vorbis+ogg",
|
|
|
|
"application/x-ogg",
|
|
|
|
NULL };
|
2004-05-31 03:21:17 +02:00
|
|
|
|
2008-08-26 08:27:08 +02:00
|
|
|
struct decoder_plugin oggvorbisPlugin = {
|
2006-03-16 07:52:46 +01:00
|
|
|
"oggvorbis",
|
|
|
|
NULL,
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
2006-03-16 07:52:46 +01:00
|
|
|
oggvorbis_try_decode,
|
|
|
|
oggvorbis_decode,
|
2004-05-31 22:59:55 +02:00
|
|
|
NULL,
|
2006-03-16 07:52:46 +01:00
|
|
|
oggvorbis_TagDup,
|
|
|
|
INPUT_PLUGIN_STREAM_URL | INPUT_PLUGIN_STREAM_FILE,
|
|
|
|
oggvorbis_Suffixes,
|
|
|
|
oggvorbis_MimeTypes
|
2004-05-31 03:21:17 +02:00
|
|
|
};
|
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#else /* !HAVE_OGGVORBIS */
|
2004-05-31 03:21:17 +02:00
|
|
|
|
2008-08-26 08:27:08 +02:00
|
|
|
struct decoder_plugin oggvorbisPlugin;
|
2004-05-31 03:21:17 +02:00
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* HAVE_OGGVORBIS */
|