summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/resampler.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/resampler.h')
-rw-r--r--apps/codecs/libgme/resampler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libgme/resampler.h b/apps/codecs/libgme/resampler.h
index f5e8c55119..741bdb50a4 100644
--- a/apps/codecs/libgme/resampler.h
+++ b/apps/codecs/libgme/resampler.h
@@ -31,7 +31,7 @@ struct Resampler {
31 int buffer_size; 31 int buffer_size;
32 32
33 int write_pos; 33 int write_pos;
34 double rate_; 34 int rate_;
35 35
36 int pos; 36 int pos;
37 int step; 37 int step;
@@ -55,7 +55,7 @@ static inline void Resampler_set_callback(struct Resampler* this, int (*func)( v
55 this->callback_data = user_data; 55 this->callback_data = user_data;
56} 56}
57 57
58blargg_err_t Resampler_setup( struct Resampler* this, double oversample, double rolloff, double gain ); 58blargg_err_t Resampler_setup( struct Resampler* this, int fm_rate, int fm_gain, int rate, int gain );
59 59
60static inline void Resampler_clear( struct Resampler* this ) 60static inline void Resampler_clear( struct Resampler* this )
61{ 61{