2004-05-31 23:17:20 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-05-31 23:17:20 +02:00
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
#include "../decoder_api.h"
|
2004-05-31 23:17:20 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_MIKMOD
|
|
|
|
|
|
|
|
#include "../utils.h"
|
|
|
|
#include "../log.h"
|
|
|
|
|
|
|
|
#include <mikmod.h>
|
|
|
|
|
|
|
|
/* this is largely copied from alsaplayer */
|
|
|
|
|
|
|
|
#define MIKMOD_FRAME_SIZE 4096
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static BOOL mod_mpd_Init(void)
|
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
return VC_Init();
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void mod_mpd_Exit(void)
|
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
VC_Exit();
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void mod_mpd_Update(void)
|
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static BOOL mod_mpd_IsThere(void)
|
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MDRIVER drv_mpd = {
|
2004-05-31 23:17:20 +02:00
|
|
|
NULL,
|
|
|
|
"MPD",
|
|
|
|
"MPD Output Driver v0.1",
|
|
|
|
0,
|
|
|
|
255,
|
2007-03-02 13:14:18 +01:00
|
|
|
#if (LIBMIKMOD_VERSION > 0x030106)
|
|
|
|
"mpd", /* Alias */
|
2008-06-13 09:39:05 +02:00
|
|
|
#if (LIBMIKMOD_VERSION >= 0x030200)
|
2007-03-02 13:14:18 +01:00
|
|
|
NULL, /* CmdLineHelp */
|
|
|
|
#endif
|
|
|
|
NULL, /* CommandLine */
|
|
|
|
#endif
|
2004-05-31 23:17:20 +02:00
|
|
|
mod_mpd_IsThere,
|
|
|
|
VC_SampleLoad,
|
|
|
|
VC_SampleUnload,
|
|
|
|
VC_SampleSpace,
|
|
|
|
VC_SampleLength,
|
|
|
|
mod_mpd_Init,
|
|
|
|
mod_mpd_Exit,
|
|
|
|
NULL,
|
|
|
|
VC_SetNumVoices,
|
|
|
|
VC_PlayStart,
|
|
|
|
VC_PlayStop,
|
|
|
|
mod_mpd_Update,
|
|
|
|
NULL,
|
|
|
|
VC_VoiceSetVolume,
|
|
|
|
VC_VoiceGetVolume,
|
|
|
|
VC_VoiceSetFrequency,
|
|
|
|
VC_VoiceGetFrequency,
|
|
|
|
VC_VoiceSetPanning,
|
|
|
|
VC_VoiceGetPanning,
|
|
|
|
VC_VoicePlay,
|
|
|
|
VC_VoiceStop,
|
|
|
|
VC_VoiceStopped,
|
|
|
|
VC_VoiceGetPosition,
|
|
|
|
VC_VoiceRealVolume
|
|
|
|
};
|
|
|
|
|
2007-01-14 04:07:53 +01:00
|
|
|
static int mod_mikModInitiated;
|
|
|
|
static int mod_mikModInitError;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static int mod_initMikMod(void)
|
|
|
|
{
|
|
|
|
if (mod_mikModInitError)
|
|
|
|
return -1;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!mod_mikModInitiated) {
|
2004-09-02 20:16:00 +02:00
|
|
|
mod_mikModInitiated = 1;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2004-09-02 20:16:00 +02:00
|
|
|
md_device = 0;
|
|
|
|
md_reverb = 0;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2004-09-02 20:16:00 +02:00
|
|
|
MikMod_RegisterDriver(&drv_mpd);
|
|
|
|
MikMod_RegisterAllLoaders();
|
|
|
|
}
|
|
|
|
|
|
|
|
md_pansep = 64;
|
|
|
|
md_mixfreq = 44100;
|
|
|
|
md_mode = (DMODE_SOFT_MUSIC | DMODE_INTERP | DMODE_STEREO |
|
2006-07-20 18:02:40 +02:00
|
|
|
DMODE_16BITS);
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (MikMod_Init("")) {
|
|
|
|
ERROR("Could not init MikMod: %s\n",
|
|
|
|
MikMod_strerror(MikMod_errno));
|
2004-05-31 23:17:20 +02:00
|
|
|
mod_mikModInitError = 1;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void mod_finishMikMod(void)
|
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
MikMod_Exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _mod_Data {
|
2006-07-20 18:02:40 +02:00
|
|
|
MODULE *moduleHandle;
|
|
|
|
SBYTE *audio_buffer;
|
|
|
|
} mod_Data;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static mod_Data *mod_open(char *path)
|
|
|
|
{
|
|
|
|
MODULE *moduleHandle;
|
|
|
|
mod_Data *data;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!(moduleHandle = Player_Load(path, 128, 0)))
|
|
|
|
return NULL;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2007-03-31 19:50:59 +02:00
|
|
|
/* Prevent module from looping forever */
|
|
|
|
moduleHandle->loop = 0;
|
|
|
|
|
2006-08-26 08:25:57 +02:00
|
|
|
data = xmalloc(sizeof(mod_Data));
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-08-26 08:25:57 +02:00
|
|
|
data->audio_buffer = xmalloc(MIKMOD_FRAME_SIZE);
|
2004-05-31 23:17:20 +02:00
|
|
|
data->moduleHandle = moduleHandle;
|
|
|
|
|
|
|
|
Player_Start(data->moduleHandle);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static void mod_close(mod_Data * data)
|
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
Player_Stop();
|
|
|
|
Player_Free(data->moduleHandle);
|
|
|
|
free(data->audio_buffer);
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
static int mod_decode(struct decoder * decoder, char *path)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
mod_Data *data;
|
2008-08-26 08:27:05 +02:00
|
|
|
AudioFormat audio_format;
|
2008-01-26 13:46:21 +01:00
|
|
|
float total_time = 0.0;
|
2004-05-31 23:17:20 +02:00
|
|
|
int ret;
|
|
|
|
float secPerByte;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (mod_initMikMod() < 0)
|
|
|
|
return -1;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!(data = mod_open(path))) {
|
2004-05-31 23:17:20 +02:00
|
|
|
ERROR("failed to open mod: %s\n", path);
|
2004-09-02 20:16:00 +02:00
|
|
|
MikMod_Exit();
|
2004-05-31 23:17:20 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
audio_format.bits = 16;
|
|
|
|
audio_format.sampleRate = 44100;
|
|
|
|
audio_format.channels = 2;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
secPerByte =
|
2008-08-26 08:27:05 +02:00
|
|
|
1.0 / ((audio_format.bits * audio_format.channels / 8.0) *
|
|
|
|
(float)audio_format.sampleRate);
|
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_initialized(decoder, &audio_format, 0);
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
while (1) {
|
2008-08-26 08:27:04 +02:00
|
|
|
if (dc.command == DECODE_COMMAND_SEEK) {
|
2008-04-13 03:16:03 +02:00
|
|
|
dc.seekError = 1;
|
2008-08-26 08:27:04 +02:00
|
|
|
dc_command_finished();
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
if (dc.command == DECODE_COMMAND_STOP)
|
2006-07-20 18:02:40 +02:00
|
|
|
break;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!Player_Active())
|
|
|
|
break;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
|
|
|
ret = VC_WriteBytes(data->audio_buffer, MIKMOD_FRAME_SIZE);
|
2008-01-26 13:46:21 +01:00
|
|
|
total_time += ret * secPerByte;
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_data(decoder, NULL, 0,
|
|
|
|
(char *)data->audio_buffer, ret,
|
|
|
|
total_time, 0, NULL);
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
decoder_flush(decoder);
|
2004-05-31 23:17:20 +02:00
|
|
|
|
|
|
|
mod_close(data);
|
|
|
|
|
2004-09-02 20:16:00 +02:00
|
|
|
MikMod_Exit();
|
|
|
|
|
2004-05-31 23:17:20 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MpdTag *modTagDup(char *file)
|
|
|
|
{
|
|
|
|
MpdTag *ret = NULL;
|
|
|
|
MODULE *moduleHandle;
|
|
|
|
char *title;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (mod_initMikMod() < 0) {
|
2005-09-08 23:08:02 +02:00
|
|
|
DEBUG("modTagDup: Failed to initialize MikMod\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!(moduleHandle = Player_Load(file, 128, 0))) {
|
|
|
|
DEBUG("modTagDup: Failed to open file: %s\n", file);
|
2005-09-08 23:08:02 +02:00
|
|
|
MikMod_Exit();
|
|
|
|
return NULL;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2005-09-08 23:08:02 +02:00
|
|
|
}
|
2004-05-31 23:17:20 +02:00
|
|
|
Player_Free(moduleHandle);
|
|
|
|
|
|
|
|
ret = newMpdTag();
|
|
|
|
|
|
|
|
ret->time = 0;
|
2006-08-26 08:25:57 +02:00
|
|
|
title = xstrdup(Player_LoadTitle(file));
|
2006-07-20 18:02:40 +02:00
|
|
|
if (title)
|
|
|
|
addItemToMpdTag(ret, TAG_ITEM_TITLE, title);
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2004-09-02 20:16:00 +02:00
|
|
|
MikMod_Exit();
|
|
|
|
|
2004-05-31 23:17:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-02-05 11:17:33 +01:00
|
|
|
static const char *modSuffixes[] = { "amf",
|
2006-07-20 18:02:40 +02:00
|
|
|
"dsm",
|
|
|
|
"far",
|
|
|
|
"gdm",
|
|
|
|
"imf",
|
|
|
|
"it",
|
|
|
|
"med",
|
|
|
|
"mod",
|
|
|
|
"mtm",
|
|
|
|
"s3m",
|
|
|
|
"stm",
|
|
|
|
"stx",
|
|
|
|
"ult",
|
|
|
|
"uni",
|
|
|
|
"xm",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
InputPlugin modPlugin = {
|
|
|
|
"mod",
|
|
|
|
NULL,
|
2004-05-31 23:17:20 +02:00
|
|
|
mod_finishMikMod,
|
|
|
|
NULL,
|
2006-03-16 07:52:46 +01:00
|
|
|
NULL,
|
2006-07-20 18:02:40 +02:00
|
|
|
mod_decode,
|
|
|
|
modTagDup,
|
|
|
|
INPUT_PLUGIN_STREAM_FILE,
|
|
|
|
modSuffixes,
|
|
|
|
NULL
|
2004-05-31 23:17:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-01-14 04:07:53 +01:00
|
|
|
InputPlugin modPlugin;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2007-04-09 14:24:48 +02:00
|
|
|
#endif /* HAVE_MIKMOD */
|