2009-02-25 17:09:09 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 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-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2016-07-11 22:37:40 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
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)
|
2016-07-11 22:37:40 +02:00
|
|
|
try {
|
2009-02-25 17:09:09 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-11-18 07:13:35 +01:00
|
|
|
FakeDecoder 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
|
|
|
|
2017-01-25 23:06:12 +01:00
|
|
|
input_stream_global_init(io_thread_get());
|
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,
|
2016-09-09 15:37:06 +02:00
|
|
|
decoder.cond);
|
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
|
|
|
}
|
|
|
|
|
2016-07-11 22:37:40 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
LogError(e);
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|