Source.cxx 6.2 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 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"
#include "Source.hxx"
#include "MusicChunk.hxx"
23 24
#include "filter/Filter.hxx"
#include "filter/Prepared.hxx"
25 26
#include "filter/plugins/ReplayGainFilterPlugin.hxx"
#include "pcm/PcmMix.hxx"
27
#include "thread/Mutex.hxx"
28 29 30 31 32
#include "util/ConstBuffer.hxx"
#include "util/RuntimeError.hxx"

#include <string.h>

33 34 35
AudioOutputSource::AudioOutputSource() noexcept {}
AudioOutputSource::~AudioOutputSource() noexcept = default;

36
AudioFormat
37
AudioOutputSource::Open(const AudioFormat audio_format, const MusicPipe &_pipe,
38 39
			PreparedFilter *prepared_replay_gain_filter,
			PreparedFilter *prepared_other_replay_gain_filter,
40
			PreparedFilter &prepared_filter)
41 42 43 44 45 46 47 48
{
	assert(audio_format.IsValid());

	if (!IsOpen() || &_pipe != &pipe.GetPipe())
		pipe.Init(_pipe);

	/* (re)open the filter */

49
	if (filter && audio_format != in_audio_format)
50 51 52 53
		/* the filter must be reopened on all input format
		   changes */
		CloseFilter();

54
	if (filter == nullptr)
55 56 57 58 59 60 61
		/* open the filter */
		OpenFilter(audio_format,
			   prepared_replay_gain_filter,
			   prepared_other_replay_gain_filter,
			   prepared_filter);

	in_audio_format = audio_format;
62
	return filter->GetOutAudioFormat();
63 64 65
}

void
66
AudioOutputSource::Close() noexcept
67 68 69 70
{
	assert(in_audio_format.IsValid());
	in_audio_format.Clear();

71
	Cancel();
72 73 74 75

	CloseFilter();
}

76
void
77
AudioOutputSource::Cancel() noexcept
78 79 80
{
	current_chunk = nullptr;
	pipe.Cancel();
81

82 83
	if (replay_gain_filter)
		replay_gain_filter->Reset();
84

85 86
	if (other_replay_gain_filter)
		other_replay_gain_filter->Reset();
87

88 89
	if (filter)
		filter->Reset();
90 91
}

92 93 94 95
void
AudioOutputSource::OpenFilter(AudioFormat audio_format,
			      PreparedFilter *prepared_replay_gain_filter,
			      PreparedFilter *prepared_other_replay_gain_filter,
96
			      PreparedFilter &prepared_filter)
97 98 99 100
try {
	assert(audio_format.IsValid());

	/* the replay_gain filter cannot fail here */
101
	if (prepared_replay_gain_filter) {
102
		replay_gain_serial = 0;
103
		replay_gain_filter =
104
			prepared_replay_gain_filter->Open(audio_format);
105
	}
106

107
	if (prepared_other_replay_gain_filter) {
108
		other_replay_gain_serial = 0;
109
		other_replay_gain_filter =
110
			prepared_other_replay_gain_filter->Open(audio_format);
111
	}
112

113
	filter = prepared_filter.Open(audio_format);
114 115 116 117 118 119
} catch (...) {
	CloseFilter();
	throw;
}

void
120
AudioOutputSource::CloseFilter() noexcept
121
{
122 123 124
	replay_gain_filter.reset();
	other_replay_gain_filter.reset();
	filter.reset();
125 126 127 128
}

ConstBuffer<void>
AudioOutputSource::GetChunkData(const MusicChunk &chunk,
129
				Filter *current_replay_gain_filter,
130 131 132 133 134 135 136 137 138
				unsigned *replay_gain_serial_p)
{
	assert(!chunk.IsEmpty());
	assert(chunk.CheckFormat(in_audio_format));

	ConstBuffer<void> data(chunk.data, chunk.length);

	assert(data.size % in_audio_format.GetFrameSize() == 0);

139 140
	if (!data.empty() && current_replay_gain_filter != nullptr) {
		replay_gain_filter_set_mode(*current_replay_gain_filter,
141 142
					    replay_gain_mode);

143 144
		if (chunk.replay_gain_serial != *replay_gain_serial_p &&
		    chunk.replay_gain_serial != MusicChunk::IGNORE_REPLAY_GAIN) {
145
			replay_gain_filter_set_info(*current_replay_gain_filter,
146 147 148 149 150 151
						    chunk.replay_gain_serial != 0
						    ? &chunk.replay_gain_info
						    : nullptr);
			*replay_gain_serial_p = chunk.replay_gain_serial;
		}

152
		data = current_replay_gain_filter->FilterPCM(data);
153 154 155 156 157 158 159 160
	}

	return data;
}

ConstBuffer<void>
AudioOutputSource::FilterChunk(const MusicChunk &chunk)
{
161
	auto data = GetChunkData(chunk, replay_gain_filter.get(),
162
				 &replay_gain_serial);
163
	if (data.empty())
164 165 166 167 168 169
		return data;

	/* cross-fade */

	if (chunk.other != nullptr) {
		auto other_data = GetChunkData(*chunk.other,
170
					       other_replay_gain_filter.get(),
171
					       &other_replay_gain_serial);
172
		if (other_data.empty())
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
			return data;

		/* if the "other" chunk is longer, then that trailer
		   is used as-is, without mixing; it is part of the
		   "next" song being faded in, and if there's a rest,
		   it means cross-fading ends here */

		if (data.size > other_data.size)
			data.size = other_data.size;

		float mix_ratio = chunk.mix_ratio;
		if (mix_ratio >= 0)
			/* reverse the mix ratio (because the
			   arguments to pcm_mix() are reversed), but
			   only if the mix ratio is non-negative; a
			   negative mix ratio is a MixRamp special
			   case */
			mix_ratio = 1.0 - mix_ratio;

		void *dest = cross_fade_buffer.Get(other_data.size);
		memcpy(dest, other_data.data, other_data.size);
		if (!pcm_mix(cross_fade_dither, dest, data.data, data.size,
			     in_audio_format.format,
			     mix_ratio))
			throw FormatRuntimeError("Cannot cross-fade format %s",
						 sample_format_to_string(in_audio_format.format));

		data.data = dest;
		data.size = other_data.size;
	}

	/* apply filter chain */

206
	return filter->FilterPCM(data);
207
}
208 209

bool
210
AudioOutputSource::Fill(Mutex &mutex)
211 212
{
	if (current_chunk != nullptr && pending_tag == nullptr &&
213
	    pending_data.empty())
214 215 216 217 218 219 220 221 222
		pipe.Consume(*std::exchange(current_chunk, nullptr));

	if (current_chunk != nullptr)
		return true;

	current_chunk = pipe.Get();
	if (current_chunk == nullptr)
		return false;

223
	pending_tag = current_chunk->tag.get();
224 225

	try {
226 227 228 229
		/* release the mutex while the filter runs, because
		   that may take a while */
		const ScopeUnlock unlock(mutex);

230 231 232 233 234 235 236 237 238 239 240 241 242 243
		pending_data = pending_data.FromVoid(FilterChunk(*current_chunk));
	} catch (...) {
		current_chunk = nullptr;
		throw;
	}

	return true;
}

void
AudioOutputSource::ConsumeData(size_t nbytes) noexcept
{
	pending_data.skip_front(nbytes);

244
	if (pending_data.empty())
245 246
		pipe.Consume(*std::exchange(current_chunk, nullptr));
}