2006-03-16 07:52:46 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2006-07-14 21:37:45 +02:00
|
|
|
* (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
|
2006-03-16 07:52:46 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* Common data structures and functions used by FLAC and OggFLAC
|
|
|
|
* (c) 2005 by Eric Wong <normalperson@yhbt.net>
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
#if defined(HAVE_FLAC) || defined(HAVE_OGGFLAC)
|
|
|
|
|
|
|
|
#include "_flac_common.h"
|
|
|
|
|
|
|
|
#include "../log.h"
|
|
|
|
#include "../tag.h"
|
|
|
|
#include "../inputStream.h"
|
|
|
|
#include "../outputBuffer.h"
|
|
|
|
#include "../decode.h"
|
|
|
|
#include "../replayGain.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <FLAC/format.h>
|
|
|
|
#include <FLAC/metadata.h>
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void init_FlacData(FlacData * data, OutputBuffer * cb,
|
|
|
|
DecoderControl * dc, InputStream * inStream)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
|
|
|
data->chunk_length = 0;
|
|
|
|
data->time = 0;
|
|
|
|
data->position = 0;
|
|
|
|
data->bitRate = 0;
|
|
|
|
data->cb = cb;
|
|
|
|
data->dc = dc;
|
|
|
|
data->inStream = inStream;
|
|
|
|
data->replayGainInfo = NULL;
|
|
|
|
data->tag = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int flacFindVorbisCommentFloat(const FLAC__StreamMetadata * block,
|
2006-07-20 18:02:40 +02:00
|
|
|
char *cmnt, float *fl)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
int offset =
|
|
|
|
FLAC__metadata_object_vorbiscomment_find_entry_from(block, 0, cmnt);
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (offset >= 0) {
|
|
|
|
size_t pos = strlen(cmnt) + 1; /* 1 is for '=' */
|
2006-03-16 07:52:46 +01:00
|
|
|
int len = block->data.vorbis_comment.comments[offset].length
|
2006-07-20 18:02:40 +02:00
|
|
|
- pos;
|
|
|
|
if (len > 0) {
|
2006-03-16 07:52:46 +01:00
|
|
|
unsigned char tmp;
|
2006-07-20 18:02:40 +02:00
|
|
|
unsigned char *dup = &(block->data.vorbis_comment.
|
|
|
|
comments[offset].entry[pos]);
|
2006-03-16 07:52:46 +01:00
|
|
|
tmp = dup[len];
|
|
|
|
dup[len] = '\0';
|
|
|
|
*fl = atof((char *)dup);
|
|
|
|
dup[len] = tmp;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* replaygain stuff by AliasMrJones */
|
2006-07-20 18:02:40 +02:00
|
|
|
static void flacParseReplayGain(const FLAC__StreamMetadata * block,
|
|
|
|
FlacData * data)
|
|
|
|
{
|
2006-03-16 07:52:46 +01:00
|
|
|
unsigned int found = 0;
|
|
|
|
|
|
|
|
if (data->replayGainInfo)
|
|
|
|
freeReplayGainInfo(data->replayGainInfo);
|
|
|
|
|
|
|
|
data->replayGainInfo = newReplayGainInfo();
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
found &= flacFindVorbisCommentFloat(block, "replaygain_album_gain",
|
|
|
|
&data->replayGainInfo->albumGain);
|
|
|
|
found &= flacFindVorbisCommentFloat(block, "replaygain_album_peak",
|
|
|
|
&data->replayGainInfo->albumPeak);
|
|
|
|
found &= flacFindVorbisCommentFloat(block, "replaygain_track_gain",
|
|
|
|
&data->replayGainInfo->trackGain);
|
|
|
|
found &= flacFindVorbisCommentFloat(block, "replaygain_track_peak",
|
|
|
|
&data->replayGainInfo->trackPeak);
|
2006-03-16 07:52:46 +01:00
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
freeReplayGainInfo(data->replayGainInfo);
|
|
|
|
data->replayGainInfo = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* tracknumber is used in VCs, MPD uses "track" ..., all the other
|
|
|
|
* tag names match */
|
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 commentMatchesAddToTag(const
|
|
|
|
FLAC__StreamMetadata_VorbisComment_Entry
|
|
|
|
* entry, unsigned int itemType,
|
|
|
|
MpdTag ** tag)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
const char *str;
|
2006-06-04 13:36:02 +02:00
|
|
|
size_t slen;
|
|
|
|
int vlen;
|
|
|
|
|
2006-04-30 21:55:56 +02:00
|
|
|
switch (itemType) {
|
2006-07-20 18:02:40 +02:00
|
|
|
case TAG_ITEM_TRACK:
|
|
|
|
str = VORBIS_COMMENT_TRACK_KEY;
|
|
|
|
break;
|
|
|
|
case TAG_ITEM_DISC:
|
|
|
|
str = VORBIS_COMMENT_DISC_KEY;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
str = mpdTagItemKeys[itemType];
|
2006-04-30 21:55:56 +02:00
|
|
|
}
|
2006-06-04 13:36:02 +02:00
|
|
|
slen = strlen(str);
|
|
|
|
vlen = entry->length - slen - 1;
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if ((vlen > 0) && (0 == strncasecmp(str, (char *)entry->entry, slen))
|
|
|
|
&& (*(entry->entry + slen) == '=')) {
|
2006-03-16 07:52:46 +01:00
|
|
|
if (!*tag)
|
|
|
|
*tag = newMpdTag();
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
addItemToMpdTagWithLen(*tag, itemType,
|
|
|
|
(char *)(entry->entry + slen + 1), vlen);
|
|
|
|
|
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;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
MpdTag *copyVorbisCommentBlockToMpdTag(const FLAC__StreamMetadata * block,
|
|
|
|
MpdTag * tag)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
|
|
|
unsigned int i, j;
|
|
|
|
FLAC__StreamMetadata_VorbisComment_Entry *comments;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
comments = block->data.vorbis_comment.comments;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
for (i = block->data.vorbis_comment.num_comments; i != 0; --i) {
|
2006-07-20 18:02:40 +02:00
|
|
|
for (j = TAG_NUM_OF_ITEM_TYPES; j--;) {
|
2006-03-16 07:52:46 +01:00
|
|
|
if (commentMatchesAddToTag(comments, j, &tag))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
comments++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void flac_metadata_common_cb(const FLAC__StreamMetadata * block,
|
|
|
|
FlacData * data)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
|
|
|
DecoderControl *dc = data->dc;
|
|
|
|
const FLAC__StreamMetadata_StreamInfo *si = &(block->data.stream_info);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
switch (block->type) {
|
2006-03-16 07:52:46 +01:00
|
|
|
case FLAC__METADATA_TYPE_STREAMINFO:
|
|
|
|
dc->audioFormat.bits = si->bits_per_sample;
|
|
|
|
dc->audioFormat.sampleRate = si->sample_rate;
|
|
|
|
dc->audioFormat.channels = si->channels;
|
|
|
|
dc->totalTime = ((float)si->total_samples) / (si->sample_rate);
|
|
|
|
getOutputAudioFormat(&(dc->audioFormat),
|
2006-07-20 18:02:40 +02:00
|
|
|
&(data->cb->audioFormat));
|
2006-03-16 07:52:46 +01:00
|
|
|
break;
|
|
|
|
case FLAC__METADATA_TYPE_VORBIS_COMMENT:
|
2006-07-20 18:02:40 +02:00
|
|
|
flacParseReplayGain(block, data);
|
|
|
|
default:
|
|
|
|
break;
|
2006-03-16 07:52:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void flac_error_common_cb(const char *plugin,
|
|
|
|
const FLAC__StreamDecoderErrorStatus status,
|
|
|
|
FlacData * data)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
2006-07-20 18:02:40 +02:00
|
|
|
if (data->dc->stop)
|
|
|
|
return;
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
switch (status) {
|
2006-03-16 07:52:46 +01:00
|
|
|
case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC:
|
|
|
|
ERROR("%s lost sync\n", plugin);
|
|
|
|
break;
|
|
|
|
case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
|
|
|
|
ERROR("bad %s header\n", plugin);
|
|
|
|
break;
|
|
|
|
case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH:
|
|
|
|
ERROR("%s crc mismatch\n", plugin);
|
|
|
|
break;
|
|
|
|
default:
|
2006-07-20 18:02:40 +02:00
|
|
|
ERROR("unknown %s error\n", plugin);
|
2006-03-16 07:52:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* HAVE_FLAC || HAVE_OGGFLAC */
|