MusicChunk.hxx 3.89 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2020 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20 21
#ifndef MPD_MUSIC_CHUNK_HXX
#define MPD_MUSIC_CHUNK_HXX
22

23
#include "MusicChunkPtr.hxx"
24
#include "Chrono.hxx"
25
#include "ReplayGainInfo.hxx"
26
#include "util/WritableBuffer.hxx"
27

28
#ifndef NDEBUG
29
#include "pcm/AudioFormat.hxx"
30 31
#endif

32
#include <cstddef>
33
#include <cstdint>
34 35
#include <memory>

36
static constexpr size_t CHUNK_SIZE = 4096;
37

38
struct AudioFormat;
Max Kellermann's avatar
Max Kellermann committed
39
struct Tag;
40
struct MusicChunk;
41

42
/**
43
 * Meta information for #MusicChunk.
44
 */
45
struct MusicChunkInfo {
46
	/** the next chunk in a linked list */
47
	MusicChunkPtr next;
48

49 50 51 52
	/**
	 * An optional chunk which should be mixed into this chunk.
	 * This is used for cross-fading.
	 */
53
	MusicChunkPtr other;
54

55 56 57 58 59 60
	/**
	 * An optional tag associated with this chunk (and the
	 * following chunks); appears at song boundaries.
	 */
	std::unique_ptr<Tag> tag;

61 62 63 64 65 66
	/**
	 * The current mix ratio for cross-fading: 1.0 means play 100%
	 * of this chunk, 0.0 means play 100% of the "other" chunk.
	 */
	float mix_ratio;

67
	/** number of bytes stored in this chunk */
68
	uint16_t length = 0;
69 70 71 72 73

	/** current bit rate of the source file */
	uint16_t bit_rate;

	/** the time stamp within the song */
74
	SignedSongTime time;
75

76 77 78 79
	/**
	 * Replay gain information associated with this chunk.
	 * Only valid if the serial is not 0.
	 */
80
	ReplayGainInfo replay_gain_info;
81 82 83 84 85 86

	/**
	 * A serial number for checking if replay gain info has
	 * changed since the last chunk.  The magic value 0 indicates
	 * that there is no replay gain info available.
	 */
87
	unsigned replay_gain_serial;
88

89
#ifndef NDEBUG
90
	AudioFormat audio_format;
91
#endif
92

93 94
	MusicChunkInfo() noexcept;
	~MusicChunkInfo() noexcept;
95

96 97
	MusicChunkInfo(const MusicChunkInfo &) = delete;
	MusicChunkInfo &operator=(const MusicChunkInfo &) = delete;
98

99 100 101
	bool IsEmpty() const {
		return length == 0 && tag == nullptr;
	}
102

103
#ifndef NDEBUG
104 105 106 107 108
	/**
	 * Checks if the audio format if the chunk is equal to the
	 * specified audio_format.
	 */
	gcc_pure
109
	bool CheckFormat(AudioFormat audio_format) const noexcept;
110
#endif
111 112 113 114 115 116 117 118
};

/**
 * A chunk of music data.  Its format is defined by the
 * MusicPipe::Push() caller.
 */
struct MusicChunk : MusicChunkInfo {
	/** the data (probably PCM) */
119
	uint8_t data[CHUNK_SIZE - sizeof(MusicChunkInfo)];
120

121 122 123
	/**
	 * Prepares appending to the music chunk.  Returns a buffer
	 * where you may write into.  After you are finished, call
124
	 * Expand().
125
	 *
Max Kellermann's avatar
Max Kellermann committed
126
	 * @param af the audio format for the appended data;
127 128 129
	 * must stay the same for the life cycle of this chunk
	 * @param data_time the time within the song
	 * @param bit_rate the current bit rate of the source file
130
	 * @return a writable buffer, or nullptr if the chunk is full
131
	 */
132
	WritableBuffer<void> Write(AudioFormat af,
133
				   SongTime data_time,
134
				   uint16_t bit_rate) noexcept;
135

136 137
	/**
	 * Increases the length of the chunk after the caller has written to
138
	 * the buffer returned by Write().
139
	 *
Max Kellermann's avatar
Max Kellermann committed
140
	 * @param af the audio format for the appended data; must
141 142 143 144
	 * stay the same for the life cycle of this chunk
	 * @param length the number of bytes which were appended
	 * @return true if the chunk is full
	 */
145
	bool Expand(AudioFormat af, size_t length) noexcept;
146 147
};

148 149
static_assert(sizeof(MusicChunk) == CHUNK_SIZE, "Wrong size");

150
#endif