X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=snd_mem.c;h=f6f9c145d85c073cf9aa2421f5cdab6d3dc17068;hb=eb41b61de7494d3ede97b1ed51065ecac0726769;hp=d294b248c7d74c128d52602c8737539dbd4a1093;hpb=10e1054afd86d2b6994acffd2fa5ec4b4495a216;p=xonotic%2Fdarkplaces.git diff --git a/snd_mem.c b/snd_mem.c index d294b248..f6f9c145 100644 --- a/snd_mem.c +++ b/snd_mem.c @@ -24,7 +24,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "snd_main.h" #include "snd_ogg.h" #include "snd_wav.h" -#include "snd_modplug.h" /* @@ -82,7 +81,7 @@ snd_buffer_t *Snd_CreateSndBuffer (const unsigned char *samples, unsigned int sa size_t newsampleframes, memsize; snd_buffer_t* sb; - newsampleframes = (size_t) ((double)sampleframes * (double)sb_speed / (double)in_format->speed); + newsampleframes = (size_t) ceil((double)sampleframes * (double)sb_speed / (double)in_format->speed); memsize = newsampleframes * in_format->channels * in_format->width; memsize += sizeof (*sb) - sizeof (sb->samples); @@ -91,7 +90,7 @@ snd_buffer_t *Snd_CreateSndBuffer (const unsigned char *samples, unsigned int sa sb->format.channels = in_format->channels; sb->format.width = in_format->width; sb->format.speed = sb_speed; - sb->maxframes = newsampleframes; + sb->maxframes = (unsigned int)newsampleframes; sb->nbframes = 0; if (!Snd_AppendToSndBuffer (sb, samples, sampleframes, in_format)) @@ -290,7 +289,7 @@ qboolean Snd_AppendToSndBuffer (snd_buffer_t* sb, const unsigned char *samples, } } - sb->nbframes += outcount; + sb->nbframes += (unsigned int)outcount; return true; } @@ -344,11 +343,6 @@ qboolean S_LoadSound (sfx_t *sfx, qboolean complain) if (OGG_LoadVorbisFile (namebuffer, sfx)) goto loaded; } - else - { - if (ModPlug_LoadModPlugFile (namebuffer, sfx)) - goto loaded; - } } // LordHavoc: then try without the added sound/ as wav and ogg @@ -368,11 +362,6 @@ qboolean S_LoadSound (sfx_t *sfx, qboolean complain) if (OGG_LoadVorbisFile (namebuffer, sfx)) goto loaded; } - else - { - if (ModPlug_LoadModPlugFile (namebuffer, sfx)) - goto loaded; - } // Can't load the sound! sfx->flags |= SFXFLAG_FILEMISSING;