decoder/modplug: convert to C++
This commit is contained in:
parent
1688b6dda9
commit
2eed9d64ce
@ -580,8 +580,10 @@ libdecoder_plugins_a_SOURCES += \
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
if HAVE_MODPLUG
|
if HAVE_MODPLUG
|
||||||
libmodplug_decoder_plugin_a_SOURCES = src/decoder/modplug_decoder_plugin.c
|
libmodplug_decoder_plugin_a_SOURCES = \
|
||||||
libmodplug_decoder_plugin_a_CFLAGS = $(src_mpd_CFLAGS) $(MODPLUG_CFLAGS)
|
src/decoder/ModplugDecoderPlugin.cxx \
|
||||||
|
src/decoder/ModplugDecoderPlugin.hxx
|
||||||
|
libmodplug_decoder_plugin_a_CXXFLAGS = $(AM_CXXFLAGS) $(MODPLUG_CFLAGS)
|
||||||
libmodplug_decoder_plugin_a_CPPFLAGS = $(src_mpd_CPPFLAGS)
|
libmodplug_decoder_plugin_a_CPPFLAGS = $(src_mpd_CPPFLAGS)
|
||||||
noinst_LIBRARIES += libmodplug_decoder_plugin.a
|
noinst_LIBRARIES += libmodplug_decoder_plugin.a
|
||||||
DECODER_LIBS += libmodplug_decoder_plugin.a $(MODPLUG_LIBS)
|
DECODER_LIBS += libmodplug_decoder_plugin.a $(MODPLUG_LIBS)
|
||||||
|
@ -39,13 +39,13 @@
|
|||||||
#include "decoder/Mpg123DecoderPlugin.hxx"
|
#include "decoder/Mpg123DecoderPlugin.hxx"
|
||||||
#include "decoder/WildmidiDecoderPlugin.hxx"
|
#include "decoder/WildmidiDecoderPlugin.hxx"
|
||||||
#include "decoder/MikmodDecoderPlugin.hxx"
|
#include "decoder/MikmodDecoderPlugin.hxx"
|
||||||
|
#include "decoder/ModplugDecoderPlugin.hxx"
|
||||||
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
extern const struct decoder_plugin mpcdec_decoder_plugin;
|
extern const struct decoder_plugin mpcdec_decoder_plugin;
|
||||||
extern const struct decoder_plugin modplug_decoder_plugin;
|
|
||||||
extern const struct decoder_plugin sidplay_decoder_plugin;
|
extern const struct decoder_plugin sidplay_decoder_plugin;
|
||||||
extern const struct decoder_plugin fluidsynth_decoder_plugin;
|
extern const struct decoder_plugin fluidsynth_decoder_plugin;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
||||||
* http://www.musicpd.org
|
* http://www.musicpd.org
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
@ -18,6 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "ModplugDecoderPlugin.hxx"
|
||||||
#include "decoder_api.h"
|
#include "decoder_api.h"
|
||||||
#include "tag_handler.h"
|
#include "tag_handler.h"
|
||||||
|
|
||||||
@ -28,42 +29,39 @@
|
|||||||
#undef G_LOG_DOMAIN
|
#undef G_LOG_DOMAIN
|
||||||
#define G_LOG_DOMAIN "modplug"
|
#define G_LOG_DOMAIN "modplug"
|
||||||
|
|
||||||
enum {
|
static constexpr size_t MODPLUG_FRAME_SIZE = 4096;
|
||||||
MODPLUG_FRAME_SIZE = 4096,
|
static constexpr size_t MODPLUG_PREALLOC_BLOCK = 256 * 1024;
|
||||||
MODPLUG_PREALLOC_BLOCK = 256 * 1024,
|
static constexpr size_t MODPLUG_READ_BLOCK = 128 * 1024;
|
||||||
MODPLUG_READ_BLOCK = 128 * 1024,
|
static constexpr goffset MODPLUG_FILE_LIMIT = 100 * 1024 * 1024;
|
||||||
MODPLUG_FILE_LIMIT = 100 * 1024 * 1024,
|
|
||||||
};
|
|
||||||
|
|
||||||
static GByteArray *mod_loadfile(struct decoder *decoder, struct input_stream *is)
|
static GByteArray *
|
||||||
|
mod_loadfile(struct decoder *decoder, struct input_stream *is)
|
||||||
{
|
{
|
||||||
unsigned char *data;
|
|
||||||
GByteArray *bdatas;
|
|
||||||
size_t ret;
|
|
||||||
|
|
||||||
const goffset size = input_stream_get_size(is);
|
const goffset size = input_stream_get_size(is);
|
||||||
|
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
g_warning("file is empty");
|
g_warning("file is empty");
|
||||||
return NULL;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (size > MODPLUG_FILE_LIMIT) {
|
if (size > MODPLUG_FILE_LIMIT) {
|
||||||
g_warning("file too large");
|
g_warning("file too large");
|
||||||
return NULL;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
//known/unknown size, preallocate array, lets read in chunks
|
//known/unknown size, preallocate array, lets read in chunks
|
||||||
|
GByteArray *bdatas;
|
||||||
if (size > 0) {
|
if (size > 0) {
|
||||||
bdatas = g_byte_array_sized_new(size);
|
bdatas = g_byte_array_sized_new(size);
|
||||||
} else {
|
} else {
|
||||||
bdatas = g_byte_array_sized_new(MODPLUG_PREALLOC_BLOCK);
|
bdatas = g_byte_array_sized_new(MODPLUG_PREALLOC_BLOCK);
|
||||||
}
|
}
|
||||||
|
|
||||||
data = g_malloc(MODPLUG_READ_BLOCK);
|
unsigned char *data = (unsigned char *)g_malloc(MODPLUG_READ_BLOCK);
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
ret = decoder_read(decoder, is, data, MODPLUG_READ_BLOCK);
|
size_t ret = decoder_read(decoder, is, data,
|
||||||
|
MODPLUG_READ_BLOCK);
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
if (input_stream_lock_eof(is))
|
if (input_stream_lock_eof(is))
|
||||||
/* end of file */
|
/* end of file */
|
||||||
@ -72,14 +70,14 @@ static GByteArray *mod_loadfile(struct decoder *decoder, struct input_stream *is
|
|||||||
/* I/O error - skip this song */
|
/* I/O error - skip this song */
|
||||||
g_free(data);
|
g_free(data);
|
||||||
g_byte_array_free(bdatas, true);
|
g_byte_array_free(bdatas, true);
|
||||||
return NULL;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bdatas->len + ret > MODPLUG_FILE_LIMIT) {
|
if (goffset(bdatas->len + ret) > MODPLUG_FILE_LIMIT) {
|
||||||
g_warning("stream too large\n");
|
g_warning("stream too large\n");
|
||||||
g_free(data);
|
g_free(data);
|
||||||
g_byte_array_free(bdatas, TRUE);
|
g_byte_array_free(bdatas, TRUE);
|
||||||
return NULL;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
g_byte_array_append(bdatas, data, ret);
|
g_byte_array_append(bdatas, data, ret);
|
||||||
@ -136,7 +134,7 @@ mod_decode(struct decoder *decoder, struct input_stream *is)
|
|||||||
if (ret <= 0)
|
if (ret <= 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
cmd = decoder_data(decoder, NULL,
|
cmd = decoder_data(decoder, nullptr,
|
||||||
audio_buffer, ret,
|
audio_buffer, ret,
|
||||||
0);
|
0);
|
||||||
|
|
||||||
@ -160,20 +158,20 @@ modplug_scan_stream(struct input_stream *is,
|
|||||||
ModPlugFile *f;
|
ModPlugFile *f;
|
||||||
GByteArray *bdatas;
|
GByteArray *bdatas;
|
||||||
|
|
||||||
bdatas = mod_loadfile(NULL, is);
|
bdatas = mod_loadfile(nullptr, is);
|
||||||
if (!bdatas)
|
if (!bdatas)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
f = ModPlug_Load(bdatas->data, bdatas->len);
|
f = ModPlug_Load(bdatas->data, bdatas->len);
|
||||||
g_byte_array_free(bdatas, TRUE);
|
g_byte_array_free(bdatas, TRUE);
|
||||||
if (f == NULL)
|
if (f == nullptr)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
tag_handler_invoke_duration(handler, handler_ctx,
|
tag_handler_invoke_duration(handler, handler_ctx,
|
||||||
ModPlug_GetLength(f) / 1000);
|
ModPlug_GetLength(f) / 1000);
|
||||||
|
|
||||||
const char *title = ModPlug_GetName(f);
|
const char *title = ModPlug_GetName(f);
|
||||||
if (title != NULL)
|
if (title != nullptr)
|
||||||
tag_handler_invoke_tag(handler, handler_ctx,
|
tag_handler_invoke_tag(handler, handler_ctx,
|
||||||
TAG_TITLE, title);
|
TAG_TITLE, title);
|
||||||
|
|
||||||
@ -186,12 +184,18 @@ static const char *const mod_suffixes[] = {
|
|||||||
"669", "amf", "ams", "dbm", "dfm", "dsm", "far", "it",
|
"669", "amf", "ams", "dbm", "dfm", "dsm", "far", "it",
|
||||||
"med", "mdl", "mod", "mtm", "mt2", "okt", "s3m", "stm",
|
"med", "mdl", "mod", "mtm", "mt2", "okt", "s3m", "stm",
|
||||||
"ult", "umx", "xm",
|
"ult", "umx", "xm",
|
||||||
NULL
|
nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
const struct decoder_plugin modplug_decoder_plugin = {
|
const struct decoder_plugin modplug_decoder_plugin = {
|
||||||
.name = "modplug",
|
"modplug",
|
||||||
.stream_decode = mod_decode,
|
nullptr,
|
||||||
.scan_stream = modplug_scan_stream,
|
nullptr,
|
||||||
.suffixes = mod_suffixes,
|
mod_decode,
|
||||||
|
nullptr,
|
||||||
|
nullptr,
|
||||||
|
modplug_scan_stream,
|
||||||
|
nullptr,
|
||||||
|
mod_suffixes,
|
||||||
|
nullptr,
|
||||||
};
|
};
|
25
src/decoder/ModplugDecoderPlugin.hxx
Normal file
25
src/decoder/ModplugDecoderPlugin.hxx
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MPD_DECODER_MODPLUG_HXX
|
||||||
|
#define MPD_DECODER_MODPLUG_HXX
|
||||||
|
|
||||||
|
extern const struct decoder_plugin modplug_decoder_plugin;
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user