2009-02-25 17:09:09 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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"
|
2014-10-07 20:02:13 +02:00
|
|
|
#include "ScopeIOThread.hxx"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "decoder/DecoderList.hxx"
|
2014-05-22 11:24:40 +02:00
|
|
|
#include "decoder/DecoderPlugin.hxx"
|
|
|
|
#include "FakeDecoderAPI.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/Init.hxx"
|
|
|
|
#include "input/InputStream.hxx"
|
2014-02-07 18:52:19 +01:00
|
|
|
#include "fs/Path.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-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
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>
|
2013-12-15 17:12:43 +01:00
|
|
|
#include <stdio.h>
|
2009-12-14 21:26:43 +01:00
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if (argc != 3) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "Usage: run_decoder DECODER URI >OUT\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2013-10-21 21:12:37 +02:00
|
|
|
Decoder decoder;
|
2014-05-22 11:17:11 +02:00
|
|
|
const char *const decoder_name = argv[1];
|
|
|
|
const char *const uri = argv[2];
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2014-10-07 20:02:13 +02:00
|
|
|
const ScopeIOThread io_thread;
|
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);
|
2013-12-15 17:12:43 +01:00
|
|
|
return EXIT_FAILURE;
|
2009-12-14 22:29:46 +01:00
|
|
|
}
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
decoder_plugin_init_all();
|
|
|
|
|
2014-05-22 11:14:01 +02:00
|
|
|
const DecoderPlugin *plugin = decoder_plugin_from_name(decoder_name);
|
|
|
|
if (plugin == nullptr) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "No such decoder: %s\n", decoder_name);
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2014-05-22 11:14:01 +02:00
|
|
|
if (plugin->file_decode != nullptr) {
|
2014-05-22 11:17:11 +02:00
|
|
|
plugin->FileDecode(decoder, Path::FromFS(uri));
|
2014-05-22 11:14:01 +02:00
|
|
|
} else if (plugin->stream_decode != nullptr) {
|
2016-02-21 08:03:32 +01:00
|
|
|
auto is = InputStream::OpenReady(uri, decoder.mutex,
|
|
|
|
decoder.cond, error);
|
|
|
|
if (!is) {
|
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
|
2014-03-16 09:40:59 +01:00
|
|
|
fprintf(stderr, "InputStream::Open() failed\n");
|
2009-11-14 23:53:04 +01:00
|
|
|
|
2013-12-15 17:12:43 +01:00
|
|
|
return EXIT_FAILURE;
|
2009-11-14 23:53:04 +01:00
|
|
|
}
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2014-05-22 11:14:01 +02:00
|
|
|
plugin->StreamDecode(decoder, *is);
|
2009-02-25 17:09:09 +01:00
|
|
|
} else {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "Decoder plugin is not usable\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
decoder_plugin_deinit_all();
|
2009-03-02 23:08:24 +01:00
|
|
|
input_stream_global_finish();
|
2009-02-25 17:09:09 +01:00
|
|
|
|
|
|
|
if (!decoder.initialized) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "Decoding failed\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|