Merge pull request #327 from Dwedit/snes9xgit

Backport Hermite Resampler bypass code from Libretro version
This commit is contained in:
bearoso 2018-06-06 20:07:09 -05:00 committed by GitHub
commit 0f41b70324
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,6 +66,13 @@ class HermiteResampler : public Resampler
void void
read (short *data, int num_samples) read (short *data, int num_samples)
{ {
//If we are outputting the exact same ratio as the input, pull directly from the input buffer
if (r_step == 1.0)
{
ring_buffer::pull((unsigned char*)data, num_samples * sizeof(short));
return;
}
assert((num_samples & 1) == 0); // resampler always processes both stereo samples assert((num_samples & 1) == 0); // resampler always processes both stereo samples
int i_position = start >> 1; int i_position = start >> 1;
int max_samples = buffer_size >> 1; int max_samples = buffer_size >> 1;
@ -121,6 +128,12 @@ class HermiteResampler : public Resampler
inline int inline int
avail (void) avail (void)
{ {
//If we are outputting the exact same ratio as the input, find out directly from the input buffer
if (r_step == 1.0)
{
return (ring_buffer::space_filled() + sizeof(short) - 1) / sizeof(short);
}
return (int) floor (((size >> 2) - r_frac) / r_step) * 2; return (int) floor (((size >> 2) - r_frac) / r_step) * 2;
} }
}; };