2013-12-14 12:23:31 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2013-12-14 12:23:31 +01:00
|
|
|
* 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"
|
2014-05-22 11:24:40 +02:00
|
|
|
#include "FakeDecoderAPI.hxx"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "decoder/DecoderAPI.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.hxx"
|
2017-01-17 22:04:31 +01:00
|
|
|
#include "util/StringBuffer.hxx"
|
2013-12-14 12:23:31 +01:00
|
|
|
#include "Compiler.h"
|
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2013-12-14 12:23:31 +01:00
|
|
|
#include <unistd.h>
|
2016-07-02 14:19:47 +02:00
|
|
|
#include <stdio.h>
|
2013-12-14 12:23:31 +01:00
|
|
|
|
|
|
|
void
|
2016-11-18 07:59:01 +01:00
|
|
|
FakeDecoder::Ready(const AudioFormat audio_format,
|
|
|
|
gcc_unused bool seekable,
|
|
|
|
SignedSongTime duration)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2016-11-18 07:59:01 +01:00
|
|
|
assert(!initialized);
|
2014-05-22 11:24:40 +02:00
|
|
|
assert(audio_format.IsValid());
|
|
|
|
|
|
|
|
fprintf(stderr, "audio_format=%s duration=%f\n",
|
2017-01-17 22:04:31 +01:00
|
|
|
ToString(audio_format).c_str(),
|
2014-08-29 20:52:39 +02:00
|
|
|
duration.ToDoubleS());
|
2014-05-22 11:24:40 +02:00
|
|
|
|
2016-11-18 07:59:01 +01:00
|
|
|
initialized = true;
|
2013-12-14 12:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DecoderCommand
|
2017-06-03 21:33:44 +02:00
|
|
|
FakeDecoder::GetCommand() noexcept
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
|
|
|
return DecoderCommand::NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-11-18 08:15:07 +01:00
|
|
|
FakeDecoder::CommandFinished()
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-26 21:52:28 +02:00
|
|
|
SongTime
|
2017-06-03 21:33:44 +02:00
|
|
|
FakeDecoder::GetSeekTime() noexcept
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2014-08-26 21:52:28 +02:00
|
|
|
return SongTime();
|
2014-08-26 11:02:02 +02:00
|
|
|
}
|
|
|
|
|
2014-08-26 11:27:41 +02:00
|
|
|
uint64_t
|
2017-06-03 21:33:44 +02:00
|
|
|
FakeDecoder::GetSeekFrame() noexcept
|
2014-08-26 11:27:41 +02:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-12-14 12:23:31 +01:00
|
|
|
void
|
2016-11-18 08:15:07 +01:00
|
|
|
FakeDecoder::SeekError()
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-21 08:03:32 +01:00
|
|
|
InputStreamPtr
|
2016-11-18 12:34:04 +01:00
|
|
|
FakeDecoder::OpenUri(const char *uri)
|
2014-05-22 11:10:41 +02:00
|
|
|
{
|
2016-11-18 12:34:04 +01:00
|
|
|
return InputStream::OpenReady(uri, mutex, cond);
|
2014-05-22 11:10:41 +02:00
|
|
|
}
|
|
|
|
|
2013-12-14 12:23:31 +01:00
|
|
|
size_t
|
2016-11-17 22:21:36 +01:00
|
|
|
FakeDecoder::Read(InputStream &is, void *buffer, size_t length)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2016-09-09 18:47:42 +02:00
|
|
|
try {
|
|
|
|
return is.LockRead(buffer, length);
|
2016-11-17 22:21:36 +01:00
|
|
|
} catch (const std::runtime_error &e) {
|
2016-09-09 18:47:42 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2013-12-14 12:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-11-18 08:27:30 +01:00
|
|
|
FakeDecoder::SubmitTimestamp(gcc_unused double t)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DecoderCommand
|
2016-11-18 08:27:30 +01:00
|
|
|
FakeDecoder::SubmitData(gcc_unused InputStream *is,
|
|
|
|
const void *data, size_t datalen,
|
|
|
|
gcc_unused uint16_t kbit_rate)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2014-11-10 09:00:38 +01:00
|
|
|
static uint16_t prev_kbit_rate;
|
|
|
|
if (kbit_rate != prev_kbit_rate) {
|
|
|
|
prev_kbit_rate = kbit_rate;
|
|
|
|
fprintf(stderr, "%u kbit/s\n", kbit_rate);
|
|
|
|
}
|
|
|
|
|
2013-12-14 12:23:31 +01:00
|
|
|
gcc_unused ssize_t nbytes = write(1, data, datalen);
|
|
|
|
return DecoderCommand::NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
DecoderCommand
|
2016-11-18 08:27:30 +01:00
|
|
|
FakeDecoder::SubmitTag(gcc_unused InputStream *is,
|
|
|
|
Tag &&tag)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2014-12-26 22:23:55 +01:00
|
|
|
fprintf(stderr, "TAG: duration=%f\n", tag.duration.ToDoubleS());
|
|
|
|
|
|
|
|
for (const auto &i : tag)
|
|
|
|
fprintf(stderr, " %s=%s\n", tag_item_names[i.type], i.value);
|
|
|
|
|
2013-12-14 12:23:31 +01:00
|
|
|
return DecoderCommand::NONE;
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:17:08 +01:00
|
|
|
static void
|
|
|
|
DumpReplayGainTuple(const char *name, const ReplayGainTuple &tuple)
|
|
|
|
{
|
|
|
|
if (tuple.IsDefined())
|
|
|
|
fprintf(stderr, "replay_gain[%s]: gain=%f peak=%f\n",
|
|
|
|
name, tuple.gain, tuple.peak);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
DumpReplayGainInfo(const ReplayGainInfo &info)
|
|
|
|
{
|
2016-11-24 16:45:56 +01:00
|
|
|
DumpReplayGainTuple("album", info.album);
|
|
|
|
DumpReplayGainTuple("track", info.track);
|
2016-11-24 17:17:08 +01:00
|
|
|
}
|
|
|
|
|
2013-12-14 12:23:31 +01:00
|
|
|
void
|
2016-11-18 08:27:30 +01:00
|
|
|
FakeDecoder::SubmitReplayGain(const ReplayGainInfo *rgi)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2016-11-24 17:17:08 +01:00
|
|
|
if (rgi != nullptr)
|
|
|
|
DumpReplayGainInfo(*rgi);
|
2013-12-14 12:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-11-18 08:27:30 +01:00
|
|
|
FakeDecoder::SubmitMixRamp(gcc_unused MixRampInfo &&mix_ramp)
|
2013-12-14 12:23:31 +01:00
|
|
|
{
|
2014-07-11 08:54:29 +02:00
|
|
|
fprintf(stderr, "MixRamp: start='%s' end='%s'\n",
|
|
|
|
mix_ramp.GetStart(), mix_ramp.GetEnd());
|
2013-12-14 12:23:31 +01:00
|
|
|
}
|