mpd/test/run_encoder.cxx

80 lines
1.7 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#include "encoder/EncoderList.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderInterface.hxx"
#include "encoder/ToOutputStream.hxx"
2020-01-18 20:07:09 +01:00
#include "pcm/AudioFormat.hxx"
#include "pcm/AudioParser.hxx"
#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"
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>
#include <unistd.h>
int main(int argc, char **argv)
2018-07-17 21:56:43 +02:00
try {
const char *encoder_name;
/* parse command line */
if (argc > 3) {
fprintf(stderr,
"Usage: run_encoder [ENCODER] [FORMAT] <IN >OUT\n");
return EXIT_FAILURE;
}
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) {
fprintf(stderr, "No such encoder: %s\n", encoder_name);
return EXIT_FAILURE;
}
ConfigBlock block;
block.AddBlockParam("quality", "5.0", -1);
2018-07-17 21:56:43 +02:00
std::unique_ptr<PreparedEncoder> p_encoder(encoder_init(*plugin, block));
2018-07-17 21:56:43 +02:00
/* open the encoder */
2018-07-17 21:56:43 +02:00
AudioFormat audio_format(44100, SampleFormat::S16, 2);
if (argc > 2)
audio_format = ParseAudioFormat(argv[2], false);
2018-07-17 21:56:43 +02:00
std::unique_ptr<Encoder> encoder(p_encoder->Open(audio_format));
2018-07-17 21:56:43 +02:00
StdioOutputStream os(stdout);
2018-07-17 21:56:43 +02:00
EncoderToOutputStream(os, *encoder);
2018-07-17 21:56:43 +02:00
/* do it */
static std::byte buffer[32768];
2018-07-17 21:56:43 +02:00
ssize_t nbytes;
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
encoder->Write(std::span{buffer}.first(nbytes));
EncoderToOutputStream(os, *encoder);
}
2018-07-17 21:56:43 +02:00
encoder->End();
EncoderToOutputStream(os, *encoder);
return EXIT_SUCCESS;
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
}