mpd/src/tag/ApeReplayGain.hxx

17 lines
305 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-07-28 20:31:27 +02:00
#ifndef MPD_APE_REPLAY_GAIN_HXX
#define MPD_APE_REPLAY_GAIN_HXX
class InputStream;
struct ReplayGainInfo;
/**
* Throws on I/O error.
*/
bool
replay_gain_ape_read(InputStream &is, ReplayGainInfo &info);
#endif