FlacEncoderPlugin.cxx 6.42 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
 * 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"
21
#include "FlacEncoderPlugin.hxx"
22
#include "../EncoderAPI.hxx"
23
#include "AudioFormat.hxx"
24
#include "pcm/PcmBuffer.hxx"
25
#include "config/Domain.hxx"
26
#include "util/DynamicFifoBuffer.hxx"
27
#include "util/RuntimeError.hxx"
28 29 30

#include <FLAC/stream_encoder.h>

31 32 33 34
#if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
#error libFLAC is too old
#endif

35 36
class FlacEncoder final : public Encoder {
	const AudioFormat audio_format;
37

38
	FLAC__StreamEncoder *const fse;
39

40
	PcmBuffer expand_buffer;
41

42 43 44 45
	/**
	 * This buffer will hold encoded data from libFLAC until it is
	 * picked up with flac_encoder_read().
	 */
46 47 48
	DynamicFifoBuffer<uint8_t> output_buffer;

public:
49
	FlacEncoder(AudioFormat _audio_format, FLAC__StreamEncoder *_fse);
50 51 52 53 54 55

	~FlacEncoder() override {
		FLAC__stream_encoder_delete(fse);
	}

	/* virtual methods from class Encoder */
56
	void End() override {
57 58
		(void) FLAC__stream_encoder_finish(fse);
	}
59

60
	void Flush() override {
61 62 63
		(void) FLAC__stream_encoder_finish(fse);
	}

64
	void Write(const void *data, size_t length) override;
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

	size_t Read(void *dest, size_t length) override {
		return output_buffer.Read((uint8_t *)dest, length);
	}

private:
	static FLAC__StreamEncoderWriteStatus WriteCallback(const FLAC__StreamEncoder *,
							    const FLAC__byte data[],
							    size_t bytes,
							    gcc_unused unsigned samples,
							    gcc_unused unsigned current_frame,
							    void *client_data) {
		auto &encoder = *(FlacEncoder *)client_data;
		encoder.output_buffer.Append((const uint8_t *)data, bytes);
		return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
	}
};

83
class PreparedFlacEncoder final : public PreparedEncoder {
84
	const unsigned compression;
85

86
public:
87
	PreparedFlacEncoder(const ConfigBlock &block);
88 89

	/* virtual methods from class PreparedEncoder */
90
	Encoder *Open(AudioFormat &audio_format) override;
91 92 93 94

	const char *GetMimeType() const override {
		return  "audio/flac";
	}
95
};
96

97 98
PreparedFlacEncoder::PreparedFlacEncoder(const ConfigBlock &block)
	:compression(block.GetBlockValue("compression", 5u))
99 100 101
{
}

102
static PreparedEncoder *
103
flac_encoder_init(const ConfigBlock &block)
104
{
105
	return new PreparedFlacEncoder(block);
106 107
}

108
static void
109
flac_encoder_setup(FLAC__StreamEncoder *fse, unsigned compression,
110
		   const AudioFormat &audio_format, unsigned bits_per_sample)
111
{
112 113 114
	if (!FLAC__stream_encoder_set_compression_level(fse, compression))
		throw FormatRuntimeError("error setting flac compression to %d",
					 compression);
115

116 117 118
	if (!FLAC__stream_encoder_set_channels(fse, audio_format.channels))
		throw FormatRuntimeError("error setting flac channels num to %d",
					 audio_format.channels);
119

120 121 122
	if (!FLAC__stream_encoder_set_bits_per_sample(fse, bits_per_sample))
		throw FormatRuntimeError("error setting flac bit format to %d",
					 bits_per_sample);
123 124

	if (!FLAC__stream_encoder_set_sample_rate(fse,
125 126 127
						  audio_format.sample_rate))
		throw FormatRuntimeError("error setting flac sample rate to %d",
					 audio_format.sample_rate);
128 129
}

130 131 132 133
FlacEncoder::FlacEncoder(AudioFormat _audio_format, FLAC__StreamEncoder *_fse)
	:Encoder(false),
	 audio_format(_audio_format), fse(_fse),
	 output_buffer(8192)
134
{
135
	/* this immediately outputs data through callback */
136

137 138 139 140 141
	auto init_status =
		FLAC__stream_encoder_init_stream(fse,
						 WriteCallback,
						 nullptr, nullptr, nullptr,
						 this);
142

143 144 145
	if (init_status != FLAC__STREAM_ENCODER_INIT_STATUS_OK)
		throw FormatRuntimeError("failed to initialize encoder: %s\n",
					 FLAC__StreamEncoderInitStatusString[init_status]);
146 147
}

148
Encoder *
149
PreparedFlacEncoder::Open(AudioFormat &audio_format)
150
{
151
	unsigned bits_per_sample;
152 153

	/* FIXME: flac should support 32bit as well */
154 155
	switch (audio_format.format) {
	case SampleFormat::S8:
156 157 158
		bits_per_sample = 8;
		break;

159
	case SampleFormat::S16:
160 161 162
		bits_per_sample = 16;
		break;

163
	case SampleFormat::S24_P32:
164 165 166 167 168
		bits_per_sample = 24;
		break;

	default:
		bits_per_sample = 24;
169
		audio_format.format = SampleFormat::S24_P32;
170
	}
171 172

	/* allocate the encoder */
173
	auto fse = FLAC__stream_encoder_new();
174 175
	if (fse == nullptr)
		throw std::runtime_error("FLAC__stream_encoder_new() failed");
176

177 178 179 180
	try {
		flac_encoder_setup(fse, compression,
				   audio_format, bits_per_sample);
	} catch (...) {
181
		FLAC__stream_encoder_delete(fse);
182
		throw;
183 184
	}

185
	return new FlacEncoder(audio_format, fse);
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
}

static inline void
pcm8_to_flac(int32_t *out, const int8_t *in, unsigned num_samples)
{
	while (num_samples > 0) {
		*out++ = *in++;
		--num_samples;
	}
}

static inline void
pcm16_to_flac(int32_t *out, const int16_t *in, unsigned num_samples)
{
	while (num_samples > 0) {
		*out++ = *in++;
		--num_samples;
	}
}

206 207
void
FlacEncoder::Write(const void *data, size_t length)
208 209
{
	void *exbuffer;
210
	const void *buffer = nullptr;
211 212 213

	/* format conversion */

214 215
	const unsigned num_frames = length / audio_format.GetFrameSize();
	const unsigned num_samples = num_frames * audio_format.channels;
216

217
	switch (audio_format.format) {
218
	case SampleFormat::S8:
219
		exbuffer = expand_buffer.Get(length * 4);
220 221
		pcm8_to_flac((int32_t *)exbuffer, (const int8_t *)data,
			     num_samples);
222 223
		buffer = exbuffer;
		break;
224

225
	case SampleFormat::S16:
226
		exbuffer = expand_buffer.Get(length * 2);
227 228
		pcm16_to_flac((int32_t *)exbuffer, (const int16_t *)data,
			      num_samples);
229 230
		buffer = exbuffer;
		break;
231

232 233
	case SampleFormat::S24_P32:
	case SampleFormat::S32:
234 235
		/* nothing need to be done; format is the same for
		   both mpd and libFLAC */
236 237
		buffer = data;
		break;
238 239 240

	default:
		gcc_unreachable();
241 242 243 244
	}

	/* feed samples to encoder */

245
	if (!FLAC__stream_encoder_process_interleaved(fse,
246
						      (const FLAC__int32 *)buffer,
247 248
						      num_frames))
		throw std::runtime_error("flac encoder process failed");
249 250
}

251
const EncoderPlugin flac_encoder_plugin = {
252 253
	"flac",
	flac_encoder_init,
254
};
255