run_convert.cxx 2.46 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 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
 * 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).
 *
 */

26
#include "AudioParser.hxx"
27
#include "AudioFormat.hxx"
Max Kellermann's avatar
Max Kellermann committed
28
#include "pcm/PcmConvert.hxx"
29
#include "util/ConstBuffer.hxx"
30
#include "util/StaticFifoBuffer.hxx"
31
#include "util/PrintException.hxx"
32

33
#include <assert.h>
34
#include <stddef.h>
35
#include <stdlib.h>
36
#include <stdio.h>
37 38
#include <unistd.h>

39 40 41
int
main(int argc, char **argv)
try {
42
	if (argc != 3) {
43 44
		fprintf(stderr,
			"Usage: run_convert IN_FORMAT OUT_FORMAT <IN >OUT\n");
45 46 47
		return 1;
	}

48 49
	const auto in_audio_format = ParseAudioFormat(argv[1], false);
	const auto out_audio_format_mask = ParseAudioFormat(argv[2], false);
50

51 52
	const auto out_audio_format =
		in_audio_format.WithMask(out_audio_format_mask);
53

54
	const size_t in_frame_size = in_audio_format.GetFrameSize();
55

56
	PcmConvert state;
57
	state.Open(in_audio_format, out_audio_format);
58

59
	StaticFifoBuffer<uint8_t, 4096> buffer;
60 61

	while (true) {
62 63
		{
			const auto dest = buffer.Write();
64
			assert(!dest.empty());
65

66 67 68
			ssize_t nbytes = read(0, dest.data, dest.size);
			if (nbytes <= 0)
				break;
69

70 71
			buffer.Append(nbytes);
		}
72

73
		auto src = buffer.Read();
74
		assert(!src.empty());
75

76
		src.size -= src.size % in_frame_size;
77
		if (src.empty())
78 79
			continue;

80
		buffer.Consume(src.size);
81

82
		auto output = state.Convert({src.data, src.size});
83

84 85
		gcc_unused ssize_t ignored = write(1, output.data,
						   output.size);
86 87
	}

88 89 90 91 92 93 94 95 96
	while (true) {
		auto output = state.Flush();
		if (output.IsNull())
			break;

		gcc_unused ssize_t ignored = write(1, output.data,
						   output.size);
	}

97 98
	state.Close();

99
	return EXIT_SUCCESS;
100 101
} catch (...) {
	PrintException(std::current_exception());
102
	return EXIT_FAILURE;
103
}