2009-11-19 21:00:46 +01:00
|
|
|
/*
|
2019-06-17 11:17:30 +02:00
|
|
|
* Copyright 2003-2019 The Music Player Daemon Project
|
2009-11-19 21:00:46 +01:00
|
|
|
* 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).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-01-30 21:47:12 +01:00
|
|
|
#include "AudioParser.hxx"
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2013-04-09 01:24:52 +02:00
|
|
|
#include "pcm/PcmConvert.hxx"
|
2014-08-12 16:36:07 +02:00
|
|
|
#include "util/ConstBuffer.hxx"
|
2014-08-06 16:54:53 +02:00
|
|
|
#include "util/StaticFifoBuffer.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2009-11-19 21:00:46 +01:00
|
|
|
|
2010-01-16 23:25:43 +01:00
|
|
|
#include <assert.h>
|
2009-11-19 21:00:46 +01:00
|
|
|
#include <stddef.h>
|
2013-11-11 08:17:29 +01:00
|
|
|
#include <stdlib.h>
|
2016-07-02 14:19:47 +02:00
|
|
|
#include <stdio.h>
|
2009-11-19 21:00:46 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-09-05 12:19:20 +02:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
try {
|
2009-11-19 21:00:46 +01:00
|
|
|
if (argc != 3) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: run_convert IN_FORMAT OUT_FORMAT <IN >OUT\n");
|
2009-11-19 21:00:46 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-10-28 21:46:20 +02:00
|
|
|
const auto in_audio_format = ParseAudioFormat(argv[1], false);
|
|
|
|
const auto out_audio_format_mask = ParseAudioFormat(argv[2], false);
|
2009-11-19 21:00:46 +01:00
|
|
|
|
2016-12-13 20:55:48 +01:00
|
|
|
const auto out_audio_format =
|
|
|
|
in_audio_format.WithMask(out_audio_format_mask);
|
2012-03-21 09:29:31 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const size_t in_frame_size = in_audio_format.GetFrameSize();
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2019-04-04 20:55:39 +02:00
|
|
|
PcmConvert state(in_audio_format, out_audio_format);
|
2009-11-19 21:00:46 +01:00
|
|
|
|
2014-08-06 16:54:53 +02:00
|
|
|
StaticFifoBuffer<uint8_t, 4096> buffer;
|
2010-01-16 23:25:43 +01:00
|
|
|
|
|
|
|
while (true) {
|
2013-10-15 10:28:52 +02:00
|
|
|
{
|
|
|
|
const auto dest = buffer.Write();
|
2017-11-10 19:24:33 +01:00
|
|
|
assert(!dest.empty());
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
ssize_t nbytes = read(0, dest.data, dest.size);
|
|
|
|
if (nbytes <= 0)
|
|
|
|
break;
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
buffer.Append(nbytes);
|
|
|
|
}
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
auto src = buffer.Read();
|
2017-11-10 19:24:33 +01:00
|
|
|
assert(!src.empty());
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
src.size -= src.size % in_frame_size;
|
2017-11-10 19:24:33 +01:00
|
|
|
if (src.empty())
|
2010-01-16 23:25:43 +01:00
|
|
|
continue;
|
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
buffer.Consume(src.size);
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2016-09-05 12:19:20 +02:00
|
|
|
auto output = state.Convert({src.data, src.size});
|
2009-11-19 21:00:46 +01:00
|
|
|
|
2014-08-12 16:36:07 +02:00
|
|
|
gcc_unused ssize_t ignored = write(1, output.data,
|
|
|
|
output.size);
|
2009-11-19 21:00:46 +01:00
|
|
|
}
|
|
|
|
|
2018-01-01 19:22:45 +01:00
|
|
|
while (true) {
|
|
|
|
auto output = state.Flush();
|
|
|
|
if (output.IsNull())
|
|
|
|
break;
|
|
|
|
|
|
|
|
gcc_unused ssize_t ignored = write(1, output.data,
|
|
|
|
output.size);
|
|
|
|
}
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
return EXIT_SUCCESS;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-09-05 12:19:20 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-11-19 21:00:46 +01:00
|
|
|
}
|