2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2014-01-23 23:09:14 +01:00
|
|
|
#include "encoder/EncoderList.hxx"
|
|
|
|
#include "encoder/EncoderPlugin.hxx"
|
2015-01-08 19:31:57 +01:00
|
|
|
#include "encoder/EncoderInterface.hxx"
|
2015-01-14 21:56:28 +01:00
|
|
|
#include "encoder/ToOutputStream.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioFormat.hxx"
|
|
|
|
#include "pcm/AudioParser.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2021-12-03 14:02:07 +01:00
|
|
|
#include "io/StdioOutputStream.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2019-08-15 17:57:20 +02:00
|
|
|
#include <exception>
|
2016-05-04 18:46:06 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2014-01-07 23:57:39 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2009-02-25 17:12:14 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2018-07-17 21:56:43 +02:00
|
|
|
try {
|
2009-02-25 17:12:14 +01:00
|
|
|
const char *encoder_name;
|
|
|
|
|
|
|
|
/* parse command line */
|
|
|
|
|
|
|
|
if (argc > 3) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: run_encoder [ENCODER] [FORMAT] <IN >OUT\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
encoder_name = argv[1];
|
|
|
|
else
|
|
|
|
encoder_name = "vorbis";
|
|
|
|
|
|
|
|
/* create the encoder */
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
const auto plugin = encoder_plugin_get(encoder_name);
|
2020-02-01 13:49:19 +01:00
|
|
|
if (plugin == nullptr) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "No such encoder: %s\n", encoder_name);
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
ConfigBlock block;
|
|
|
|
block.AddBlockParam("quality", "5.0", -1);
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
std::unique_ptr<PreparedEncoder> p_encoder(encoder_init(*plugin, block));
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
/* open the encoder */
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
AudioFormat audio_format(44100, SampleFormat::S16, 2);
|
|
|
|
if (argc > 2)
|
|
|
|
audio_format = ParseAudioFormat(argv[2], false);
|
2015-12-16 10:24:43 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
std::unique_ptr<Encoder> encoder(p_encoder->Open(audio_format));
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
StdioOutputStream os(stdout);
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
EncoderToOutputStream(os, *encoder);
|
2012-10-01 23:17:13 +02:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
/* do it */
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2022-07-11 22:14:48 +02:00
|
|
|
static std::byte buffer[32768];
|
2018-07-17 21:56:43 +02:00
|
|
|
ssize_t nbytes;
|
|
|
|
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
|
2022-07-11 22:14:48 +02:00
|
|
|
encoder->Write(std::span{buffer}.first(nbytes));
|
2015-12-16 10:24:43 +01:00
|
|
|
EncoderToOutputStream(os, *encoder);
|
2015-01-14 21:56:28 +01:00
|
|
|
}
|
2018-07-17 21:56:43 +02:00
|
|
|
|
|
|
|
encoder->End();
|
|
|
|
EncoderToOutputStream(os, *encoder);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|