2009-02-25 17:09:09 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-02-25 17:09:09 +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:09:09 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-10 10:33:20 +01:00
|
|
|
#include "IOThread.hxx"
|
2013-01-30 17:18:48 +01:00
|
|
|
#include "DecoderList.hxx"
|
2013-07-28 13:18:48 +02:00
|
|
|
#include "DecoderAPI.hxx"
|
2013-01-10 10:15:09 +01:00
|
|
|
#include "InputInit.hxx"
|
2013-09-05 00:06:31 +02:00
|
|
|
#include "InputStream.hxx"
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 10:06:31 +02:00
|
|
|
#include "thread/Cond.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2010-05-20 07:17:20 +02:00
|
|
|
#include "stdbin.h"
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2013-12-15 12:32:15 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2009-02-25 17:09:09 +01:00
|
|
|
#include <glib.h>
|
2013-12-15 12:32:15 +01:00
|
|
|
#endif
|
2009-02-25 17:09:09 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <unistd.h>
|
2011-08-24 03:23:12 +02:00
|
|
|
#include <stdlib.h>
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2009-12-14 21:26:43 +01:00
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
my_log_func(const gchar *log_domain, gcc_unused GLogLevelFlags log_level,
|
|
|
|
const gchar *message, gcc_unused gpointer user_data)
|
2009-12-14 21:26:43 +01:00
|
|
|
{
|
|
|
|
if (log_domain != NULL)
|
|
|
|
g_printerr("%s: %s\n", log_domain, message);
|
|
|
|
else
|
|
|
|
g_printerr("%s\n", message);
|
|
|
|
}
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
struct Decoder {
|
2009-02-25 17:09:09 +01:00
|
|
|
const char *uri;
|
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
const struct DecoderPlugin *plugin;
|
2009-02-25 17:09:09 +01:00
|
|
|
|
|
|
|
bool initialized;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_initialized(Decoder &decoder,
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat audio_format,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused bool seekable,
|
2013-10-24 21:35:03 +02:00
|
|
|
float duration)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
2009-11-10 17:57:14 +01:00
|
|
|
struct audio_format_string af_string;
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
assert(!decoder.initialized);
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(audio_format.IsValid());
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2013-10-24 21:35:03 +02:00
|
|
|
g_printerr("audio_format=%s duration=%f\n",
|
|
|
|
audio_format_to_string(audio_format, &af_string),
|
|
|
|
duration);
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder.initialized = true;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_get_command(gcc_unused Decoder &decoder)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
2013-09-27 12:11:37 +02:00
|
|
|
return DecoderCommand::NONE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
void
|
|
|
|
decoder_command_finished(gcc_unused Decoder &decoder)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
double
|
|
|
|
decoder_seek_where(gcc_unused Decoder &decoder)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
void
|
|
|
|
decoder_seek_error(gcc_unused Decoder &decoder)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_read(gcc_unused Decoder *decoder,
|
2013-10-23 22:08:59 +02:00
|
|
|
InputStream &is,
|
2009-02-25 17:09:09 +01:00
|
|
|
void *buffer, size_t length)
|
|
|
|
{
|
2013-10-23 22:08:59 +02:00
|
|
|
return is.LockRead(buffer, length, IgnoreError());
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-12-14 12:43:06 +01:00
|
|
|
bool
|
|
|
|
decoder_read_full(Decoder *decoder, InputStream &is,
|
|
|
|
void *_buffer, size_t size)
|
|
|
|
{
|
|
|
|
uint8_t *buffer = (uint8_t *)_buffer;
|
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
size_t nbytes = decoder_read(decoder, is, buffer, size);
|
|
|
|
if (nbytes == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
buffer += nbytes;
|
|
|
|
size -= nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-14 12:21:23 +01:00
|
|
|
bool
|
|
|
|
decoder_skip(Decoder *decoder, InputStream &is, size_t size)
|
|
|
|
{
|
|
|
|
while (size > 0) {
|
|
|
|
char buffer[1024];
|
|
|
|
size_t nbytes = decoder_read(decoder, is, buffer,
|
|
|
|
std::min(sizeof(buffer), size));
|
|
|
|
if (nbytes == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
size -= nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-25 19:47:33 +01:00
|
|
|
void
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_timestamp(gcc_unused Decoder &decoder,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused double t)
|
2009-12-25 19:47:33 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_data(gcc_unused Decoder &decoder,
|
2013-10-23 22:08:59 +02:00
|
|
|
gcc_unused InputStream *is,
|
2009-02-25 17:09:09 +01:00
|
|
|
const void *data, size_t datalen,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused uint16_t kbit_rate)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused ssize_t nbytes = write(1, data, datalen);
|
2013-09-27 12:11:37 +02:00
|
|
|
return DecoderCommand::NONE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_tag(gcc_unused Decoder &decoder,
|
2013-10-23 22:08:59 +02:00
|
|
|
gcc_unused InputStream *is,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused Tag &&tag)
|
2009-02-25 17:09:09 +01:00
|
|
|
{
|
2013-09-27 12:11:37 +02:00
|
|
|
return DecoderCommand::NONE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-01-05 02:05:50 +01:00
|
|
|
void
|
2013-10-21 21:12:37 +02:00
|
|
|
decoder_replay_gain(gcc_unused Decoder &decoder,
|
2013-10-25 19:09:22 +02:00
|
|
|
const ReplayGainInfo *rgi)
|
2010-01-03 22:44:23 +01:00
|
|
|
{
|
2013-10-25 19:09:22 +02:00
|
|
|
const ReplayGainTuple *tuple = &rgi->tuples[REPLAY_GAIN_ALBUM];
|
2013-10-25 19:05:49 +02:00
|
|
|
if (tuple->IsDefined())
|
2010-07-20 00:02:27 +02:00
|
|
|
g_printerr("replay_gain[album]: gain=%f peak=%f\n",
|
|
|
|
tuple->gain, tuple->peak);
|
|
|
|
|
2013-10-25 19:09:22 +02:00
|
|
|
tuple = &rgi->tuples[REPLAY_GAIN_TRACK];
|
2013-10-25 19:05:49 +02:00
|
|
|
if (tuple->IsDefined())
|
2010-07-20 00:02:27 +02:00
|
|
|
g_printerr("replay_gain[track]: gain=%f peak=%f\n",
|
|
|
|
tuple->gain, tuple->peak);
|
2010-01-03 22:44:23 +01:00
|
|
|
}
|
|
|
|
|
2010-03-21 18:21:47 +01:00
|
|
|
void
|
2013-10-26 14:19:34 +02:00
|
|
|
decoder_mixramp(gcc_unused Decoder &decoder, gcc_unused MixRampInfo &&mix_ramp)
|
2010-03-21 18:21:47 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *decoder_name;
|
|
|
|
|
|
|
|
if (argc != 3) {
|
|
|
|
g_printerr("Usage: run_decoder DECODER URI >OUT\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
Decoder decoder;
|
2009-02-25 17:09:09 +01:00
|
|
|
decoder_name = argv[1];
|
|
|
|
decoder.uri = argv[2];
|
|
|
|
|
2013-12-15 12:32:15 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2013-04-17 01:53:10 +02:00
|
|
|
#if !GLIB_CHECK_VERSION(2,32,0)
|
2011-10-03 19:28:40 +02:00
|
|
|
g_thread_init(NULL);
|
2013-12-15 12:32:15 +01:00
|
|
|
#endif
|
2013-04-17 01:53:10 +02:00
|
|
|
#endif
|
|
|
|
|
2009-12-14 21:26:43 +01:00
|
|
|
g_log_set_default_handler(my_log_func, NULL);
|
|
|
|
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_init();
|
2013-09-03 11:28:47 +02:00
|
|
|
io_thread_start();
|
2011-08-24 03:23:12 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
if (!input_stream_global_init(error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2009-12-14 22:29:46 +01:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
decoder_plugin_init_all();
|
|
|
|
|
|
|
|
decoder.plugin = decoder_plugin_from_name(decoder_name);
|
|
|
|
if (decoder.plugin == NULL) {
|
|
|
|
g_printerr("No such decoder: %s\n", decoder_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-03-02 23:09:58 +01:00
|
|
|
decoder.initialized = false;
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
if (decoder.plugin->file_decode != NULL) {
|
2013-10-21 20:36:34 +02:00
|
|
|
decoder.plugin->FileDecode(decoder, decoder.uri);
|
2009-02-25 17:09:09 +01:00
|
|
|
} else if (decoder.plugin->stream_decode != NULL) {
|
2013-01-27 17:20:50 +01:00
|
|
|
Mutex mutex;
|
|
|
|
Cond cond;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
InputStream *is =
|
|
|
|
InputStream::Open(decoder.uri, mutex, cond, error);
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is == NULL) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2013-08-10 18:02:44 +02:00
|
|
|
else
|
2013-10-23 22:08:59 +02:00
|
|
|
g_printerr("InputStream::Open() failed\n");
|
2009-11-14 23:53:04 +01:00
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
return 1;
|
2009-11-14 23:53:04 +01:00
|
|
|
}
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
decoder.plugin->StreamDecode(decoder, *is);
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Close();
|
2009-02-25 17:09:09 +01:00
|
|
|
} else {
|
|
|
|
g_printerr("Decoder plugin is not usable\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder_plugin_deinit_all();
|
2009-03-02 23:08:24 +01:00
|
|
|
input_stream_global_finish();
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_deinit();
|
2009-02-25 17:09:09 +01:00
|
|
|
|
|
|
|
if (!decoder.initialized) {
|
|
|
|
g_printerr("Decoding failed\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|