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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FLAC_COMMON_H
|
|
|
|
#define _FLAC_COMMON_H
|
|
|
|
|
|
|
|
#include "../inputPlugin.h"
|
|
|
|
|
|
|
|
#if defined(HAVE_FLAC) || defined(HAVE_OGGFLAC)
|
|
|
|
|
|
|
|
#include "../tag.h"
|
|
|
|
#include "../inputStream.h"
|
|
|
|
#include "../outputBuffer.h"
|
|
|
|
#include "../decode.h"
|
2006-12-04 05:45:47 +01:00
|
|
|
#include <FLAC/export.h>
|
|
|
|
#if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
|
|
|
|
# include <FLAC/seekable_stream_decoder.h>
|
|
|
|
# define flac_decoder FLAC__SeekableStreamDecoder
|
2007-01-14 03:08:05 +01:00
|
|
|
# define flac_new() FLAC__seekable_stream_decoder_new()
|
2006-12-04 05:45:47 +01:00
|
|
|
|
2006-12-04 05:45:50 +01:00
|
|
|
# define flac_ogg_init(a,b,c,d,e,f,g,h,i,j) (0)
|
|
|
|
|
2006-12-04 05:45:47 +01:00
|
|
|
# define flac_get_decode_position(x,y) \
|
|
|
|
FLAC__seekable_stream_decoder_get_decode_position(x,y)
|
|
|
|
# define flac_get_state(x) FLAC__seekable_stream_decoder_get_state(x)
|
|
|
|
# define flac_process_single(x) FLAC__seekable_stream_decoder_process_single(x)
|
|
|
|
# define flac_process_metadata(x) \
|
|
|
|
FLAC__seekable_stream_decoder_process_until_end_of_metadata(x)
|
|
|
|
# define flac_seek_absolute(x,y) \
|
|
|
|
FLAC__seekable_stream_decoder_seek_absolute(x,y)
|
|
|
|
# define flac_finish(x) FLAC__seekable_stream_decoder_finish(x)
|
|
|
|
# define flac_delete(x) FLAC__seekable_stream_decoder_delete(x)
|
|
|
|
|
|
|
|
# define flac_decoder_eof FLAC__SEEKABLE_STREAM_DECODER_END_OF_STREAM
|
|
|
|
|
2007-01-14 05:25:24 +01:00
|
|
|
typedef unsigned flac_read_status_size_t;
|
2006-12-04 05:45:47 +01:00
|
|
|
# define flac_read_status FLAC__SeekableStreamDecoderReadStatus
|
|
|
|
# define flac_read_status_continue \
|
|
|
|
FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_OK
|
|
|
|
# define flac_read_status_eof FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_OK
|
|
|
|
# define flac_read_status_abort \
|
|
|
|
FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_ERROR
|
|
|
|
|
|
|
|
# define flac_seek_status FLAC__SeekableStreamDecoderSeekStatus
|
|
|
|
# define flac_seek_status_ok FLAC__SEEKABLE_STREAM_DECODER_SEEK_STATUS_OK
|
|
|
|
# define flac_seek_status_error FLAC__SEEKABLE_STREAM_DECODER_SEEK_STATUS_ERROR
|
|
|
|
|
|
|
|
# define flac_tell_status FLAC__SeekableStreamDecoderTellStatus
|
|
|
|
# define flac_tell_status_ok FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_OK
|
|
|
|
# define flac_tell_status_error \
|
|
|
|
FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_ERROR
|
|
|
|
# define flac_tell_status_unsupported \
|
|
|
|
FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_ERROR
|
|
|
|
|
|
|
|
# define flac_length_status FLAC__SeekableStreamDecoderLengthStatus
|
|
|
|
# define flac_length_status_ok FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_OK
|
|
|
|
# define flac_length_status_error \
|
|
|
|
FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_ERROR
|
|
|
|
# define flac_length_status_unsupported \
|
|
|
|
FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_ERROR
|
|
|
|
|
|
|
|
# ifdef HAVE_OGGFLAC
|
|
|
|
# include <OggFLAC/seekable_stream_decoder.h>
|
|
|
|
# endif
|
2007-12-31 01:54:32 +01:00
|
|
|
#else /* FLAC_API_VERSION_CURRENT > 7 */
|
2006-12-04 05:45:50 +01:00
|
|
|
|
2007-12-31 01:54:32 +01:00
|
|
|
/*
|
|
|
|
* OggFLAC support is handled by our flac_plugin already, and
|
|
|
|
* thus we *can* always have it if libFLAC was compiled with it
|
|
|
|
*/
|
2006-12-04 05:45:47 +01:00
|
|
|
# include "_ogg_common.h"
|
2006-12-04 05:45:50 +01:00
|
|
|
|
|
|
|
# include <FLAC/stream_decoder.h>
|
2006-12-04 05:45:47 +01:00
|
|
|
# define flac_decoder FLAC__StreamDecoder
|
2007-01-14 03:08:05 +01:00
|
|
|
# define flac_new() FLAC__stream_decoder_new()
|
2006-12-04 05:45:47 +01:00
|
|
|
|
|
|
|
# define flac_init(a,b,c,d,e,f,g,h,i,j) \
|
|
|
|
(FLAC__stream_decoder_init_stream(a,b,c,d,e,f,g,h,i,j) \
|
|
|
|
== FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
2006-12-04 05:45:50 +01:00
|
|
|
# define flac_ogg_init(a,b,c,d,e,f,g,h,i,j) \
|
|
|
|
(FLAC__stream_decoder_init_ogg_stream(a,b,c,d,e,f,g,h,i,j) \
|
|
|
|
== FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
2006-12-04 05:45:47 +01:00
|
|
|
# define flac_get_decode_position(x,y) \
|
|
|
|
FLAC__stream_decoder_get_decode_position(x,y)
|
|
|
|
# define flac_get_state(x) FLAC__stream_decoder_get_state(x)
|
|
|
|
# define flac_process_single(x) FLAC__stream_decoder_process_single(x)
|
|
|
|
# define flac_process_metadata(x) \
|
|
|
|
FLAC__stream_decoder_process_until_end_of_metadata(x)
|
|
|
|
# define flac_seek_absolute(x,y) FLAC__stream_decoder_seek_absolute(x,y)
|
|
|
|
# define flac_finish(x) FLAC__stream_decoder_finish(x)
|
|
|
|
# define flac_delete(x) FLAC__stream_decoder_delete(x)
|
|
|
|
|
|
|
|
# define flac_decoder_eof FLAC__STREAM_DECODER_END_OF_STREAM
|
|
|
|
|
2007-01-14 05:25:24 +01:00
|
|
|
typedef size_t flac_read_status_size_t;
|
2006-12-04 05:45:47 +01:00
|
|
|
# define flac_read_status FLAC__StreamDecoderReadStatus
|
|
|
|
# define flac_read_status_continue \
|
|
|
|
FLAC__STREAM_DECODER_READ_STATUS_CONTINUE
|
|
|
|
# define flac_read_status_eof FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM
|
|
|
|
# define flac_read_status_abort FLAC__STREAM_DECODER_READ_STATUS_ABORT
|
|
|
|
|
|
|
|
# define flac_seek_status FLAC__StreamDecoderSeekStatus
|
|
|
|
# define flac_seek_status_ok FLAC__STREAM_DECODER_SEEK_STATUS_OK
|
|
|
|
# define flac_seek_status_error FLAC__STREAM_DECODER_SEEK_STATUS_ERROR
|
|
|
|
# define flac_seek_status_unsupported \
|
|
|
|
FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED
|
|
|
|
|
|
|
|
# define flac_tell_status FLAC__StreamDecoderTellStatus
|
|
|
|
# define flac_tell_status_ok FLAC__STREAM_DECODER_TELL_STATUS_OK
|
|
|
|
# define flac_tell_status_error FLAC__STREAM_DECODER_TELL_STATUS_ERROR
|
|
|
|
# define flac_tell_status_unsupported \
|
|
|
|
FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED
|
|
|
|
|
|
|
|
# define flac_length_status FLAC__StreamDecoderLengthStatus
|
|
|
|
# define flac_length_status_ok FLAC__STREAM_DECODER_LENGTH_STATUS_OK
|
|
|
|
# define flac_length_status_error FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR
|
|
|
|
# define flac_length_status_unsupported \
|
|
|
|
FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED
|
|
|
|
|
|
|
|
#endif /* FLAC_API_VERSION_CURRENT >= 7 */
|
|
|
|
|
2006-03-16 07:52:46 +01:00
|
|
|
#include <FLAC/metadata.h>
|
|
|
|
|
|
|
|
#define FLAC_CHUNK_SIZE 4080
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
unsigned char chunk[FLAC_CHUNK_SIZE];
|
2008-04-12 06:19:55 +02:00
|
|
|
size_t chunk_length;
|
2006-03-16 07:52:46 +01:00
|
|
|
float time;
|
2008-04-12 06:19:55 +02:00
|
|
|
unsigned int bitRate;
|
2006-03-16 07:52:46 +01:00
|
|
|
FLAC__uint64 position;
|
2006-07-20 18:02:40 +02:00
|
|
|
InputStream *inStream;
|
|
|
|
ReplayGainInfo *replayGainInfo;
|
|
|
|
MpdTag *tag;
|
2006-03-16 07:52:46 +01:00
|
|
|
} FlacData;
|
|
|
|
|
|
|
|
/* initializes a given FlacData struct */
|
2008-04-13 03:16:15 +02:00
|
|
|
void init_FlacData(FlacData * data, InputStream * inStream);
|
2006-07-20 18:02:40 +02:00
|
|
|
void flac_metadata_common_cb(const FLAC__StreamMetadata * block,
|
|
|
|
FlacData * data);
|
|
|
|
void flac_error_common_cb(const char *plugin,
|
|
|
|
FLAC__StreamDecoderErrorStatus status,
|
|
|
|
FlacData * data);
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
MpdTag *copyVorbisCommentBlockToMpdTag(const FLAC__StreamMetadata * block,
|
|
|
|
MpdTag * tag);
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-15 15:42:57 +02:00
|
|
|
/* keep this inlined, this is just macro but prettier :) */
|
2006-03-16 07:52:46 +01:00
|
|
|
static inline int flacSendChunk(FlacData * data)
|
|
|
|
{
|
2008-04-13 03:16:15 +02:00
|
|
|
if (sendDataToOutputBuffer(data->inStream,
|
2008-04-13 03:16:03 +02:00
|
|
|
1, data->chunk,
|
2006-07-20 18:02:40 +02:00
|
|
|
data->chunk_length, data->time,
|
|
|
|
data->bitRate,
|
|
|
|
data->replayGainInfo) ==
|
|
|
|
OUTPUT_BUFFER_DC_STOP)
|
2006-03-16 07:52:46 +01:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* HAVE_FLAC || HAVE_OGGFLAC */
|
2006-03-16 07:52:46 +01:00
|
|
|
|
2006-07-20 20:53:56 +02:00
|
|
|
#endif /* _FLAC_COMMON_H */
|