2009-02-25 17:12:14 +01:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-02-25 17:12:14 +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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-02-25 17:12:14 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2014-01-23 23:09:14 +01:00
|
|
|
#include "encoder/EncoderList.hxx"
|
|
|
|
#include "encoder/EncoderPlugin.hxx"
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2013-01-30 21:47:12 +01:00
|
|
|
#include "AudioParser.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigData.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-12-15 17:12:43 +01:00
|
|
|
#include "Log.hxx"
|
2010-05-20 07:17:20 +02:00
|
|
|
#include "stdbin.h"
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2014-01-07 23:57:39 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2009-02-25 17:12:14 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-05-05 22:51:22 +02:00
|
|
|
static void
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_to_stdout(Encoder &encoder)
|
2009-05-05 22:51:22 +02:00
|
|
|
{
|
|
|
|
size_t length;
|
|
|
|
static char buffer[32768];
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
while ((length = encoder_read(&encoder, buffer, sizeof(buffer))) > 0) {
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused ssize_t ignored = write(1, buffer, length);
|
2012-03-19 20:37:17 +01:00
|
|
|
}
|
2009-05-05 22:51:22 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 17:12:14 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *encoder_name;
|
|
|
|
static char buffer[32768];
|
|
|
|
|
|
|
|
/* 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);
|
2009-02-25 17:12:14 +01:00
|
|
|
if (plugin == NULL) {
|
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
|
|
|
}
|
|
|
|
|
2013-01-30 22:00:32 +01:00
|
|
|
config_param param;
|
2013-01-30 22:25:17 +01:00
|
|
|
param.AddBlockParam("quality", "5.0", -1);
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
const auto encoder = encoder_init(*plugin, param, error);
|
2009-02-25 17:12:14 +01:00
|
|
|
if (encoder == NULL) {
|
2013-12-15 17:12:43 +01:00
|
|
|
LogError(error, "Failed to initialize encoder");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* open the encoder */
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
AudioFormat audio_format(44100, SampleFormat::S16, 2);
|
2009-02-25 17:12:14 +01:00
|
|
|
if (argc > 2) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!audio_format_parse(audio_format, argv[2], false, error)) {
|
2013-12-15 17:12:43 +01:00
|
|
|
LogError(error, "Failed to parse audio format");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!encoder_open(encoder, audio_format, error)) {
|
2013-12-15 17:12:43 +01:00
|
|
|
LogError(error, "Failed to open encoder");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_to_stdout(*encoder);
|
2012-10-01 23:17:13 +02:00
|
|
|
|
2009-02-25 17:12:14 +01:00
|
|
|
/* do it */
|
|
|
|
|
2013-01-30 21:27:37 +01:00
|
|
|
ssize_t nbytes;
|
2009-02-25 17:12:14 +01:00
|
|
|
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!encoder_write(encoder, buffer, nbytes, error)) {
|
2013-12-15 17:12:43 +01:00
|
|
|
LogError(error, "encoder_write() failed");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_to_stdout(*encoder);
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
2009-05-05 22:51:22 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!encoder_end(encoder, error)) {
|
2013-12-15 17:12:43 +01:00
|
|
|
LogError(error, "encoder_flush() failed");
|
|
|
|
return EXIT_FAILURE;
|
2009-05-05 22:51:22 +02:00
|
|
|
}
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
encoder_to_stdout(*encoder);
|
2013-12-05 11:49:18 +01:00
|
|
|
|
|
|
|
encoder_close(encoder);
|
|
|
|
encoder_finish(encoder);
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|