2006-03-16 07:52:46 +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)
|
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 "_flac_common.h"
|
|
|
|
|
2009-01-01 18:09:24 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
#include <FLAC/format.h>
|
|
|
|
#include <FLAC/metadata.h>
|
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
void
|
|
|
|
flac_data_init(struct flac_data *data, struct decoder * decoder,
|
|
|
|
struct input_stream *input_stream)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
|
|
|
data->time = 0;
|
|
|
|
data->position = 0;
|
2009-01-15 19:50:28 +01:00
|
|
|
data->bit_rate = 0;
|
2008-08-26 08:27:04 +02:00
|
|
|
data->decoder = decoder;
|
2009-01-15 19:50:28 +01:00
|
|
|
data->input_stream = input_stream;
|
|
|
|
data->replay_gain_info = NULL;
|
2006-03-16 07:52:46 +01:00
|
|
|
data->tag = NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
static int
|
|
|
|
flac_find_float_comment(const FLAC__StreamMetadata *block,
|
|
|
|
const 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;
|
2008-01-26 13:46:21 +01:00
|
|
|
unsigned char *p = &(block->data.vorbis_comment.
|
|
|
|
comments[offset].entry[pos]);
|
|
|
|
tmp = p[len];
|
|
|
|
p[len] = '\0';
|
2008-03-26 11:37:17 +01:00
|
|
|
*fl = (float)atof((char *)p);
|
2008-01-26 13:46:21 +01:00
|
|
|
p[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 */
|
2009-01-15 19:50:28 +01:00
|
|
|
static void
|
|
|
|
flac_parse_replay_gain(const FLAC__StreamMetadata *block,
|
|
|
|
struct flac_data *data)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2006-08-22 08:36:56 +02:00
|
|
|
int found = 0;
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
if (data->replay_gain_info)
|
|
|
|
replay_gain_info_free(data->replay_gain_info);
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
data->replay_gain_info = replay_gain_info_new();
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
found |= flac_find_float_comment(block, "replaygain_album_gain",
|
|
|
|
&data->replay_gain_info->tuples[REPLAY_GAIN_ALBUM].gain);
|
|
|
|
found |= flac_find_float_comment(block, "replaygain_album_peak",
|
|
|
|
&data->replay_gain_info->tuples[REPLAY_GAIN_ALBUM].peak);
|
|
|
|
found |= flac_find_float_comment(block, "replaygain_track_gain",
|
|
|
|
&data->replay_gain_info->tuples[REPLAY_GAIN_TRACK].gain);
|
|
|
|
found |= flac_find_float_comment(block, "replaygain_track_peak",
|
|
|
|
&data->replay_gain_info->tuples[REPLAY_GAIN_TRACK].peak);
|
2006-03-16 07:52:46 +01:00
|
|
|
|
|
|
|
if (!found) {
|
2009-01-15 19:50:28 +01:00
|
|
|
replay_gain_info_free(data->replay_gain_info);
|
|
|
|
data->replay_gain_info = NULL;
|
2006-03-16 07:52:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
static unsigned int
|
|
|
|
flac_copy_vorbis_comment(const
|
|
|
|
FLAC__StreamMetadata_VorbisComment_Entry * entry,
|
|
|
|
enum tag_type type,
|
|
|
|
struct tag ** 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;
|
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
switch (type) {
|
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:
|
2009-01-15 19:50:28 +01:00
|
|
|
str = mpdTagItemKeys[type];
|
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)
|
2008-08-29 09:38:21 +02:00
|
|
|
*tag = tag_new();
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
tag_add_item_n(*tag, type,
|
2008-08-29 09:38:21 +02:00
|
|
|
(char *)(entry->entry + slen + 1), vlen);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
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
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
struct tag *
|
|
|
|
flac_vorbis_comments_to_tag(const FLAC__StreamMetadata * block,
|
|
|
|
struct tag * 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--;) {
|
2009-01-15 19:50:28 +01:00
|
|
|
if (flac_copy_vorbis_comment(comments, j, &tag))
|
2006-03-16 07:52:46 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
comments++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void flac_metadata_common_cb(const FLAC__StreamMetadata * block,
|
2009-01-15 19:50:28 +01:00
|
|
|
struct flac_data *data)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
|
|
|
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:
|
2008-09-29 15:49:29 +02:00
|
|
|
data->audio_format.bits = (int8_t)si->bits_per_sample;
|
2008-10-10 14:40:54 +02:00
|
|
|
data->audio_format.sample_rate = si->sample_rate;
|
2008-09-29 15:49:29 +02:00
|
|
|
data->audio_format.channels = (int8_t)si->channels;
|
2008-08-26 08:27:05 +02:00
|
|
|
data->total_time = ((float)si->total_samples) / (si->sample_rate);
|
2006-03-16 07:52:46 +01:00
|
|
|
break;
|
|
|
|
case FLAC__METADATA_TYPE_VORBIS_COMMENT:
|
2009-01-15 19:50:28 +01:00
|
|
|
flac_parse_replay_gain(block, data);
|
2006-07-20 18:02:40 +02:00
|
|
|
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,
|
2009-01-15 19:50:28 +01:00
|
|
|
struct flac_data *data)
|
2006-03-16 07:52:46 +01:00
|
|
|
{
|
2008-08-26 08:27:07 +02:00
|
|
|
if (decoder_get_command(data->decoder) == DECODE_COMMAND_STOP)
|
2006-07-20 18:02:40 +02:00
|
|
|
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:
|
2008-11-21 20:15:50 +01:00
|
|
|
g_warning("%s lost sync\n", plugin);
|
2006-03-16 07:52:46 +01:00
|
|
|
break;
|
|
|
|
case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
|
2008-11-21 20:15:50 +01:00
|
|
|
g_warning("bad %s header\n", plugin);
|
2006-03-16 07:52:46 +01:00
|
|
|
break;
|
|
|
|
case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH:
|
2008-11-21 20:15:50 +01:00
|
|
|
g_warning("%s crc mismatch\n", plugin);
|
2006-03-16 07:52:46 +01:00
|
|
|
break;
|
|
|
|
default:
|
2008-11-21 20:15:50 +01:00
|
|
|
g_warning("unknown %s error\n", plugin);
|
2006-03-16 07:52:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-23 23:59:54 +02:00
|
|
|
static void flac_convert_stereo16(int16_t *dest,
|
2008-09-23 23:59:54 +02:00
|
|
|
const FLAC__int32 * const buf[],
|
|
|
|
unsigned int position, unsigned int end)
|
|
|
|
{
|
|
|
|
for (; position < end; ++position) {
|
2008-09-23 23:59:54 +02:00
|
|
|
*dest++ = buf[0][position];
|
|
|
|
*dest++ = buf[1][position];
|
2008-09-23 23:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-23 23:59:55 +02:00
|
|
|
static void
|
|
|
|
flac_convert_16(int16_t *dest,
|
|
|
|
unsigned int num_channels,
|
|
|
|
const FLAC__int32 * const buf[],
|
|
|
|
unsigned int position, unsigned int end)
|
|
|
|
{
|
|
|
|
unsigned int c_chan;
|
|
|
|
|
|
|
|
for (; position < end; ++position)
|
|
|
|
for (c_chan = 0; c_chan < num_channels; c_chan++)
|
|
|
|
*dest++ = buf[c_chan][position];
|
|
|
|
}
|
|
|
|
|
2008-09-23 23:59:55 +02:00
|
|
|
/**
|
|
|
|
* Note: this function also handles 24 bit files!
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
flac_convert_32(int32_t *dest,
|
|
|
|
unsigned int num_channels,
|
|
|
|
const FLAC__int32 * const buf[],
|
|
|
|
unsigned int position, unsigned int end)
|
|
|
|
{
|
|
|
|
unsigned int c_chan;
|
|
|
|
|
|
|
|
for (; position < end; ++position)
|
|
|
|
for (c_chan = 0; c_chan < num_channels; c_chan++)
|
|
|
|
*dest++ = buf[c_chan][position];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
flac_convert_8(int8_t *dest,
|
|
|
|
unsigned int num_channels,
|
|
|
|
const FLAC__int32 * const buf[],
|
|
|
|
unsigned int position, unsigned int end)
|
|
|
|
{
|
|
|
|
unsigned int c_chan;
|
|
|
|
|
|
|
|
for (; position < end; ++position)
|
|
|
|
for (c_chan = 0; c_chan < num_channels; c_chan++)
|
|
|
|
*dest++ = buf[c_chan][position];
|
|
|
|
}
|
|
|
|
|
2008-09-23 23:59:54 +02:00
|
|
|
static void flac_convert(unsigned char *dest,
|
|
|
|
unsigned int num_channels,
|
|
|
|
unsigned int bytes_per_sample,
|
|
|
|
const FLAC__int32 * const buf[],
|
|
|
|
unsigned int position, unsigned int end)
|
|
|
|
{
|
2008-09-23 23:59:55 +02:00
|
|
|
switch (bytes_per_sample) {
|
|
|
|
case 2:
|
|
|
|
if (num_channels == 2)
|
|
|
|
flac_convert_stereo16((int16_t*)dest, buf,
|
|
|
|
position, end);
|
|
|
|
else
|
|
|
|
flac_convert_16((int16_t*)dest, num_channels, buf,
|
|
|
|
position, end);
|
|
|
|
break;
|
2008-09-23 23:59:54 +02:00
|
|
|
|
2008-09-23 23:59:55 +02:00
|
|
|
case 4:
|
|
|
|
flac_convert_32((int32_t*)dest, num_channels, buf,
|
|
|
|
position, end);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
flac_convert_8((int8_t*)dest, num_channels, buf,
|
|
|
|
position, end);
|
|
|
|
break;
|
2008-09-23 23:59:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderWriteStatus
|
2009-01-15 19:50:28 +01:00
|
|
|
flac_common_write(struct flac_data *data, const FLAC__Frame * frame,
|
2008-09-23 23:59:54 +02:00
|
|
|
const FLAC__int32 *const buf[])
|
|
|
|
{
|
|
|
|
unsigned int c_samp;
|
|
|
|
const unsigned int num_channels = frame->header.channels;
|
|
|
|
const unsigned int bytes_per_sample =
|
|
|
|
audio_format_sample_size(&data->audio_format);
|
|
|
|
const unsigned int bytes_per_channel =
|
|
|
|
bytes_per_sample * frame->header.channels;
|
|
|
|
const unsigned int max_samples = FLAC_CHUNK_SIZE / bytes_per_channel;
|
|
|
|
unsigned int num_samples;
|
2008-09-23 23:59:55 +02:00
|
|
|
enum decoder_command cmd;
|
2008-09-23 23:59:54 +02:00
|
|
|
|
2008-09-23 23:59:55 +02:00
|
|
|
if (bytes_per_sample != 1 && bytes_per_sample != 2 &&
|
|
|
|
bytes_per_sample != 4)
|
|
|
|
/* exotic unsupported bit rate */
|
|
|
|
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
|
2008-09-23 23:59:54 +02:00
|
|
|
|
|
|
|
for (c_samp = 0; c_samp < frame->header.blocksize;
|
|
|
|
c_samp += num_samples) {
|
|
|
|
num_samples = frame->header.blocksize - c_samp;
|
|
|
|
if (num_samples > max_samples)
|
|
|
|
num_samples = max_samples;
|
|
|
|
|
2008-09-23 23:59:55 +02:00
|
|
|
flac_convert(data->chunk,
|
|
|
|
num_channels, bytes_per_sample, buf,
|
|
|
|
c_samp, c_samp + num_samples);
|
|
|
|
|
2009-01-15 19:50:28 +01:00
|
|
|
cmd = decoder_data(data->decoder, data->input_stream,
|
2008-11-02 17:01:51 +01:00
|
|
|
data->chunk,
|
2008-09-23 23:59:55 +02:00
|
|
|
num_samples * bytes_per_channel,
|
2009-01-15 19:50:28 +01:00
|
|
|
data->time, data->bit_rate,
|
|
|
|
data->replay_gain_info);
|
2008-09-23 23:59:55 +02:00
|
|
|
switch (cmd) {
|
|
|
|
case DECODE_COMMAND_NONE:
|
|
|
|
case DECODE_COMMAND_START:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DECODE_COMMAND_STOP:
|
2008-09-23 23:59:54 +02:00
|
|
|
return
|
|
|
|
FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
|
2008-09-23 23:59:55 +02:00
|
|
|
|
|
|
|
case DECODE_COMMAND_SEEK:
|
2008-09-23 23:59:54 +02:00
|
|
|
return
|
|
|
|
FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
|
|
|
|
}
|