decoder/mikmod: convert to C++

This commit is contained in:
Max Kellermann 2013-07-28 12:54:59 +02:00
parent 33aedc887a
commit 1688b6dda9
4 changed files with 52 additions and 20 deletions

View File

@ -574,7 +574,9 @@ libdecoder_plugins_a_SOURCES += \
endif endif
if ENABLE_MIKMOD_DECODER if ENABLE_MIKMOD_DECODER
libdecoder_plugins_a_SOURCES += src/decoder/mikmod_decoder_plugin.c libdecoder_plugins_a_SOURCES += \
src/decoder/MikmodDecoderPlugin.cxx \
src/decoder/MikmodDecoderPlugin.hxx
endif endif
if HAVE_MODPLUG if HAVE_MODPLUG

View File

@ -38,6 +38,7 @@
#include "decoder/SndfileDecoderPlugin.hxx" #include "decoder/SndfileDecoderPlugin.hxx"
#include "decoder/Mpg123DecoderPlugin.hxx" #include "decoder/Mpg123DecoderPlugin.hxx"
#include "decoder/WildmidiDecoderPlugin.hxx" #include "decoder/WildmidiDecoderPlugin.hxx"
#include "decoder/MikmodDecoderPlugin.hxx"
#include <glib.h> #include <glib.h>
@ -45,7 +46,6 @@
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 modplug_decoder_plugin;
extern const struct decoder_plugin mikmod_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;

View File

@ -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 "MikmodDecoderPlugin.hxx"
#include "decoder_api.h" #include "decoder_api.h"
#include "mpd_error.h" #include "mpd_error.h"
#include "tag_handler.h" #include "tag_handler.h"
@ -31,7 +32,7 @@
/* this is largely copied from alsaplayer */ /* this is largely copied from alsaplayer */
#define MIKMOD_FRAME_SIZE 4096 static constexpr size_t MIKMOD_FRAME_SIZE = 4096;
static BOOL static BOOL
mikmod_mpd_init(void) mikmod_mpd_init(void)
@ -64,7 +65,7 @@ static char drv_alias[] = PACKAGE;
#endif #endif
static MDRIVER drv_mpd = { static MDRIVER drv_mpd = {
NULL, nullptr,
drv_name, drv_name,
drv_version, drv_version,
0, 0,
@ -72,9 +73,9 @@ static MDRIVER drv_mpd = {
#if (LIBMIKMOD_VERSION > 0x030106) #if (LIBMIKMOD_VERSION > 0x030106)
drv_alias, drv_alias,
#if (LIBMIKMOD_VERSION >= 0x030200) #if (LIBMIKMOD_VERSION >= 0x030200)
NULL, /* CmdLineHelp */ nullptr, /* CmdLineHelp */
#endif #endif
NULL, /* CommandLine */ nullptr, /* CommandLine */
#endif #endif
mikmod_mpd_is_present, mikmod_mpd_is_present,
VC_SampleLoad, VC_SampleLoad,
@ -83,12 +84,12 @@ static MDRIVER drv_mpd = {
VC_SampleLength, VC_SampleLength,
mikmod_mpd_init, mikmod_mpd_init,
mikmod_mpd_exit, mikmod_mpd_exit,
NULL, nullptr,
VC_SetNumVoices, VC_SetNumVoices,
VC_PlayStart, VC_PlayStart,
VC_PlayStop, VC_PlayStop,
mikmod_mpd_update, mikmod_mpd_update,
NULL, nullptr,
VC_VoiceSetVolume, VC_VoiceSetVolume,
VC_VoiceGetVolume, VC_VoiceGetVolume,
VC_VoiceSetFrequency, VC_VoiceSetFrequency,
@ -155,7 +156,7 @@ mikmod_decoder_file_decode(struct decoder *decoder, const char *path_fs)
handle = Player_Load(path2, 128, 0); handle = Player_Load(path2, 128, 0);
g_free(path2); g_free(path2);
if (handle == NULL) { if (handle == nullptr) {
g_warning("failed to open mod: %s", path_fs); g_warning("failed to open mod: %s", path_fs);
return; return;
} }
@ -171,7 +172,7 @@ mikmod_decoder_file_decode(struct decoder *decoder, const char *path_fs)
Player_Start(handle); Player_Start(handle);
while (cmd == DECODE_COMMAND_NONE && Player_Active()) { while (cmd == DECODE_COMMAND_NONE && Player_Active()) {
ret = VC_WriteBytes(buffer, sizeof(buffer)); ret = VC_WriteBytes(buffer, sizeof(buffer));
cmd = decoder_data(decoder, NULL, buffer, ret, 0); cmd = decoder_data(decoder, nullptr, buffer, ret, 0);
} }
Player_Stop(); Player_Stop();
@ -185,7 +186,7 @@ mikmod_decoder_scan_file(const char *path_fs,
char *path2 = g_strdup(path_fs); char *path2 = g_strdup(path_fs);
MODULE *handle = Player_Load(path2, 128, 0); MODULE *handle = Player_Load(path2, 128, 0);
if (handle == NULL) { if (handle == nullptr) {
g_free(path2); g_free(path2);
g_debug("Failed to open file: %s", path_fs); g_debug("Failed to open file: %s", path_fs);
return false; return false;
@ -197,7 +198,7 @@ mikmod_decoder_scan_file(const char *path_fs,
char *title = Player_LoadTitle(path2); char *title = Player_LoadTitle(path2);
g_free(path2); g_free(path2);
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);
free(title); free(title);
@ -222,14 +223,18 @@ static const char *const mikmod_decoder_suffixes[] = {
"ult", "ult",
"uni", "uni",
"xm", "xm",
NULL nullptr
}; };
const struct decoder_plugin mikmod_decoder_plugin = { const struct decoder_plugin mikmod_decoder_plugin = {
.name = "mikmod", "mikmod",
.init = mikmod_decoder_init, mikmod_decoder_init,
.finish = mikmod_decoder_finish, mikmod_decoder_finish,
.file_decode = mikmod_decoder_file_decode, nullptr,
.scan_file = mikmod_decoder_scan_file, mikmod_decoder_file_decode,
.suffixes = mikmod_decoder_suffixes, mikmod_decoder_scan_file,
nullptr,
nullptr,
mikmod_decoder_suffixes,
nullptr,
}; };

View 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_MIKMOD_HXX
#define MPD_DECODER_MIKMOD_HXX
extern const struct decoder_plugin mikmod_decoder_plugin;
#endif