mpd/test/DumpDecoderClient.hxx

47 lines
1.4 KiB
C++
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#ifndef DUMP_DECODER_CLIENT_HXX
#define DUMP_DECODER_CLIENT_HXX
#include "decoder/Client.hxx"
#include "thread/Mutex.hxx"
/**
* A #DecoderClient implementation which dumps metadata to stderr and
* decoded data to stdout.
*/
class DumpDecoderClient : public DecoderClient {
bool initialized = false;
uint16_t prev_kbit_rate = 0;
public:
Mutex mutex;
bool IsInitialized() const noexcept {
return initialized;
}
/* virtual methods from DecoderClient */
void Ready(AudioFormat audio_format,
2019-07-05 08:35:39 +02:00
bool seekable, SignedSongTime duration) noexcept override;
DecoderCommand GetCommand() noexcept override;
2019-04-05 08:47:43 +02:00
void CommandFinished() noexcept override;
SongTime GetSeekTime() noexcept override;
uint64_t GetSeekFrame() noexcept override;
2019-04-05 08:47:43 +02:00
void SeekError() noexcept override;
InputStreamPtr OpenUri(const char *uri) override;
2019-07-05 08:35:39 +02:00
size_t Read(InputStream &is,
std::span<std::byte> dest) noexcept override;
2019-04-05 08:47:43 +02:00
void SubmitTimestamp(FloatDuration t) noexcept override;
DecoderCommand SubmitAudio(InputStream *is,
std::span<const std::byte> audio,
uint16_t kbit_rate) noexcept override;
2019-04-05 08:47:43 +02:00
DecoderCommand SubmitTag(InputStream *is, Tag &&tag) noexcept override;
void SubmitReplayGain(const ReplayGainInfo *replay_gain_info) noexcept override;
void SubmitMixRamp(MixRampInfo &&mix_ramp) noexcept override;
};
#endif