run_convert.cxx 2.73 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 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 23 24 25 26
 * 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.
 */

/*
 * This program is a command line interface to MPD's PCM conversion
 * library (pcm_convert.c).
 *
 */

#include "config.h"
27
#include "AudioParser.hxx"
28
#include "AudioFormat.hxx"
Max Kellermann's avatar
Max Kellermann committed
29
#include "pcm/PcmConvert.hxx"
30
#include "util/ConstBuffer.hxx"
31
#include "util/StaticFifoBuffer.hxx"
32
#include "util/Error.hxx"
33
#include "Log.hxx"
34
#include "stdbin.h"
35

36
#include <assert.h>
37
#include <stddef.h>
38
#include <stdlib.h>
39 40 41 42
#include <unistd.h>

int main(int argc, char **argv)
{
43
	AudioFormat in_audio_format, out_audio_format;
44 45

	if (argc != 3) {
46 47
		fprintf(stderr,
			"Usage: run_convert IN_FORMAT OUT_FORMAT <IN >OUT\n");
48 49 50
		return 1;
	}

51
	Error error;
52
	if (!audio_format_parse(in_audio_format, argv[1],
53
				false, error)) {
54 55
		LogError(error, "Failed to parse audio format");
		return EXIT_FAILURE;
56 57
	}

58 59
	AudioFormat out_audio_format_mask;
	if (!audio_format_parse(out_audio_format_mask, argv[2],
60
				true, error)) {
61 62
		LogError(error, "Failed to parse audio format");
		return EXIT_FAILURE;
63 64
	}

65
	out_audio_format = in_audio_format;
66
	out_audio_format.ApplyMask(out_audio_format_mask);
67

68
	const size_t in_frame_size = in_audio_format.GetFrameSize();
69

70
	PcmConvert state;
71
	if (!state.Open(in_audio_format, out_audio_format_mask, error)) {
72
		LogError(error, "Failed to open PcmConvert");
73 74
		return EXIT_FAILURE;
	}
75

76
	StaticFifoBuffer<uint8_t, 4096> buffer;
77 78

	while (true) {
79 80 81
		{
			const auto dest = buffer.Write();
			assert(!dest.IsEmpty());
82

83 84 85
			ssize_t nbytes = read(0, dest.data, dest.size);
			if (nbytes <= 0)
				break;
86

87 88
			buffer.Append(nbytes);
		}
89

90 91
		auto src = buffer.Read();
		assert(!src.IsEmpty());
92

93 94
		src.size -= src.size % in_frame_size;
		if (src.IsEmpty())
95 96
			continue;

97
		buffer.Consume(src.size);
98

99 100
		auto output = state.Convert({src.data, src.size}, error);
		if (output.IsNull()) {
101
			state.Close();
102 103
			LogError(error, "Failed to convert");
			return EXIT_FAILURE;
104 105
		}

106 107
		gcc_unused ssize_t ignored = write(1, output.data,
						   output.size);
108 109
	}

110 111
	state.Close();

112
	return EXIT_SUCCESS;
113
}