2012-10-02 19:27:30 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2012 The Music Player Daemon Project
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-05-05 14:19:04 +02:00
|
|
|
#include "FlacInput.hxx"
|
2013-01-07 09:38:02 +01:00
|
|
|
#include "decoder_api.h"
|
2012-10-02 19:27:30 +02:00
|
|
|
#include "gcc.h"
|
2013-01-24 19:14:40 +01:00
|
|
|
#include "InputStream.hxx"
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
FLAC__StreamDecoderReadStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Read(FLAC__byte buffer[], size_t *bytes)
|
2012-10-02 19:27:30 +02:00
|
|
|
{
|
|
|
|
size_t r = decoder_read(decoder, input_stream, (void *)buffer, *bytes);
|
|
|
|
*bytes = r;
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
if (input_stream_lock_eof(input_stream) ||
|
|
|
|
(decoder != nullptr &&
|
|
|
|
decoder_get_command(decoder) != DECODE_COMMAND_NONE))
|
|
|
|
return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
|
|
|
|
else
|
|
|
|
return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderSeekStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Seek(FLAC__uint64 absolute_byte_offset)
|
2012-10-02 19:27:30 +02:00
|
|
|
{
|
|
|
|
if (!input_stream->seekable)
|
|
|
|
return FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
if (!input_stream_lock_seek(input_stream,
|
|
|
|
absolute_byte_offset, SEEK_SET,
|
|
|
|
nullptr))
|
|
|
|
return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
|
|
|
|
|
|
|
|
return FLAC__STREAM_DECODER_SEEK_STATUS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderTellStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Tell(FLAC__uint64 *absolute_byte_offset)
|
2012-10-02 19:27:30 +02:00
|
|
|
{
|
|
|
|
if (!input_stream->seekable)
|
|
|
|
return FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
*absolute_byte_offset = (FLAC__uint64)input_stream->offset;
|
|
|
|
return FLAC__STREAM_DECODER_TELL_STATUS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderLengthStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Length(FLAC__uint64 *stream_length)
|
2012-10-02 19:27:30 +02:00
|
|
|
{
|
|
|
|
if (input_stream->size < 0)
|
|
|
|
return FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
*stream_length = (FLAC__uint64)input_stream->size;
|
|
|
|
return FLAC__STREAM_DECODER_LENGTH_STATUS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__bool
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Eof()
|
2012-10-02 19:27:30 +02:00
|
|
|
{
|
|
|
|
return (decoder != nullptr &&
|
|
|
|
decoder_get_command(decoder) != DECODE_COMMAND_NONE &&
|
|
|
|
decoder_get_command(decoder) != DECODE_COMMAND_SEEK) ||
|
|
|
|
input_stream_lock_eof(input_stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Error(FLAC__StreamDecoderErrorStatus status)
|
2012-10-02 19:27:30 +02:00
|
|
|
{
|
|
|
|
if (decoder == nullptr ||
|
|
|
|
decoder_get_command(decoder) != DECODE_COMMAND_STOP)
|
|
|
|
g_warning("%s", FLAC__StreamDecoderErrorStatusString[status]);
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderReadStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Read(gcc_unused const FLAC__StreamDecoder *flac_decoder,
|
2012-10-02 19:27:30 +02:00
|
|
|
FLAC__byte buffer[], size_t *bytes,
|
|
|
|
void *client_data)
|
|
|
|
{
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput *i = (FlacInput *)client_data;
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
return i->Read(buffer, bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderSeekStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Seek(gcc_unused const FLAC__StreamDecoder *flac_decoder,
|
2012-10-02 19:27:30 +02:00
|
|
|
FLAC__uint64 absolute_byte_offset, void *client_data)
|
|
|
|
{
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput *i = (FlacInput *)client_data;
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
return i->Seek(absolute_byte_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderTellStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Tell(gcc_unused const FLAC__StreamDecoder *flac_decoder,
|
2012-10-02 19:27:30 +02:00
|
|
|
FLAC__uint64 *absolute_byte_offset, void *client_data)
|
|
|
|
{
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput *i = (FlacInput *)client_data;
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
return i->Tell(absolute_byte_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__StreamDecoderLengthStatus
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Length(gcc_unused const FLAC__StreamDecoder *flac_decoder,
|
2012-10-02 19:27:30 +02:00
|
|
|
FLAC__uint64 *stream_length, void *client_data)
|
|
|
|
{
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput *i = (FlacInput *)client_data;
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
return i->Length(stream_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
FLAC__bool
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Eof(gcc_unused const FLAC__StreamDecoder *flac_decoder,
|
2012-10-02 19:27:30 +02:00
|
|
|
void *client_data)
|
|
|
|
{
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput *i = (FlacInput *)client_data;
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
return i->Eof();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput::Error(gcc_unused const FLAC__StreamDecoder *decoder,
|
2012-10-02 19:27:30 +02:00
|
|
|
FLAC__StreamDecoderErrorStatus status, void *client_data)
|
|
|
|
{
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacInput *i = (FlacInput *)client_data;
|
2012-10-02 19:27:30 +02:00
|
|
|
|
|
|
|
i->Error(status);
|
|
|
|
}
|
|
|
|
|