2009-02-25 17:12:14 +01:00
|
|
|
/*
|
2013-01-30 21:27:37 +01:00
|
|
|
* Copyright (C) 2003-2013 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"
|
2013-04-17 22:22:37 +02:00
|
|
|
#include "EncoderList.hxx"
|
2009-02-25 17:12:14 +01:00
|
|
|
#include "encoder_plugin.h"
|
|
|
|
#include "audio_format.h"
|
2013-01-30 21:47:12 +01:00
|
|
|
#include "AudioParser.hxx"
|
2009-02-25 17:12:14 +01:00
|
|
|
#include "conf.h"
|
2010-05-20 07:17:20 +02:00
|
|
|
#include "stdbin.h"
|
2009-02-25 17:12:14 +01:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-05-05 22:51:22 +02:00
|
|
|
static void
|
|
|
|
encoder_to_stdout(struct encoder *encoder)
|
|
|
|
{
|
|
|
|
size_t length;
|
|
|
|
static char buffer[32768];
|
|
|
|
|
2012-03-19 20:37:17 +01:00
|
|
|
while ((length = encoder_read(encoder, buffer, sizeof(buffer))) > 0) {
|
|
|
|
G_GNUC_UNUSED ssize_t ignored = write(1, buffer, length);
|
|
|
|
}
|
2009-05-05 22:51:22 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 17:12:14 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
2009-07-19 17:24:43 +02:00
|
|
|
struct audio_format audio_format;
|
2009-02-25 17:12:14 +01:00
|
|
|
bool ret;
|
|
|
|
const char *encoder_name;
|
|
|
|
const struct encoder_plugin *plugin;
|
|
|
|
struct encoder *encoder;
|
|
|
|
static char buffer[32768];
|
|
|
|
|
|
|
|
/* parse command line */
|
|
|
|
|
|
|
|
if (argc > 3) {
|
|
|
|
g_printerr("Usage: run_encoder [ENCODER] [FORMAT] <IN >OUT\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
encoder_name = argv[1];
|
|
|
|
else
|
|
|
|
encoder_name = "vorbis";
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
audio_format_init(&audio_format, 44100, SAMPLE_FORMAT_S16, 2);
|
2009-07-19 17:24:43 +02:00
|
|
|
|
2009-02-25 17:12:14 +01:00
|
|
|
/* create the encoder */
|
|
|
|
|
|
|
|
plugin = encoder_plugin_get(encoder_name);
|
|
|
|
if (plugin == NULL) {
|
|
|
|
g_printerr("No such encoder: %s\n", encoder_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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-01-30 22:00:32 +01:00
|
|
|
encoder = encoder_init(plugin, ¶m, &error);
|
2009-02-25 17:12:14 +01:00
|
|
|
if (encoder == NULL) {
|
|
|
|
g_printerr("Failed to initialize encoder: %s\n",
|
|
|
|
error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open the encoder */
|
|
|
|
|
|
|
|
if (argc > 2) {
|
2009-10-21 23:01:04 +02:00
|
|
|
ret = audio_format_parse(&audio_format, argv[2],
|
|
|
|
false, &error);
|
2009-02-25 17:12:14 +01:00
|
|
|
if (!ret) {
|
|
|
|
g_printerr("Failed to parse audio format: %s\n",
|
|
|
|
error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-01 23:04:40 +02:00
|
|
|
if (!encoder_open(encoder, &audio_format, &error)) {
|
2009-02-25 17:12:14 +01:00
|
|
|
g_printerr("Failed to open encoder: %s\n",
|
|
|
|
error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-10-01 23:17:13 +02:00
|
|
|
encoder_to_stdout(encoder);
|
|
|
|
|
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) {
|
|
|
|
ret = encoder_write(encoder, buffer, nbytes, &error);
|
|
|
|
if (!ret) {
|
|
|
|
g_printerr("encoder_write() failed: %s\n",
|
|
|
|
error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-05-05 22:51:22 +02:00
|
|
|
encoder_to_stdout(encoder);
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
2009-05-05 22:51:22 +02:00
|
|
|
|
2012-04-05 00:03:38 +02:00
|
|
|
ret = encoder_end(encoder, &error);
|
2009-05-05 22:51:22 +02:00
|
|
|
if (!ret) {
|
|
|
|
g_printerr("encoder_flush() failed: %s\n",
|
|
|
|
error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
encoder_to_stdout(encoder);
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|