mirror of https://github.com/snes9xgit/snes9x.git
Increase buffer size. Don't use sizeof on heap buffer (returns pointer size).
This commit is contained in:
parent
3c0f6bfdee
commit
add3a16f25
|
@ -336,9 +336,9 @@ bool8 S9xMixSamples (uint8 *buffer, int sample_count)
|
||||||
{
|
{
|
||||||
if (msu::resampler->avail() >= sample_count)
|
if (msu::resampler->avail() >= sample_count)
|
||||||
{
|
{
|
||||||
uint8 *msu_sample = new uint8[sizeof(dest)];
|
uint8 *msu_sample = new uint8[shrink_buffer_size];
|
||||||
msu::resampler->read((short *)msu_sample, sample_count);
|
msu::resampler->read((short *)msu_sample, sample_count);
|
||||||
for(uint32 i = 0; i < sizeof(dest); ++i)
|
for(uint32 i = 0; i < sample_count; ++i)
|
||||||
dest[i] += msu_sample[i];
|
dest[i] += msu_sample[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -481,7 +481,12 @@ bool8 S9xInitSound (int buffer_ms, int lag_ms)
|
||||||
if (Settings.SixteenBitSound)
|
if (Settings.SixteenBitSound)
|
||||||
spc::buffer_size <<= 1;
|
spc::buffer_size <<= 1;
|
||||||
if (Settings.MSU1)
|
if (Settings.MSU1)
|
||||||
|
{
|
||||||
|
/* MSU1 is 44.1KHz, 16-bit audio */
|
||||||
msu::buffer_size = buffer_ms * 44100 / 1000;
|
msu::buffer_size = buffer_ms * 44100 / 1000;
|
||||||
|
msu::buffer_size *= 2; /* Double byte-count for stereo */
|
||||||
|
msu::buffer_size *= 2; /* Double byte-count for 16-bit audio */
|
||||||
|
}
|
||||||
|
|
||||||
printf("Sound buffer size: %d (%d samples)\n", spc::buffer_size, sample_count);
|
printf("Sound buffer size: %d (%d samples)\n", spc::buffer_size, sample_count);
|
||||||
|
|
||||||
|
|
|
@ -136,6 +136,11 @@ snes9x_gtk_SOURCES += \
|
||||||
../apu/bapu/smp/smp.cpp \
|
../apu/bapu/smp/smp.cpp \
|
||||||
../apu/bapu/smp/smp_state.cpp
|
../apu/bapu/smp/smp_state.cpp
|
||||||
|
|
||||||
|
# MSU1
|
||||||
|
snes9x_gtk_SOURCES += \
|
||||||
|
../msu1.cpp \
|
||||||
|
../msu1.h
|
||||||
|
|
||||||
# DSP
|
# DSP
|
||||||
snes9x_gtk_SOURCES += \
|
snes9x_gtk_SOURCES += \
|
||||||
../dsp.cpp \
|
../dsp.cpp \
|
||||||
|
|
|
@ -201,6 +201,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include "snes9x.h"
|
#include "snes9x.h"
|
||||||
#include "memmap.h"
|
#include "memmap.h"
|
||||||
|
|
Loading…
Reference in New Issue