Remove AddStereoSample function

This commit is contained in:
Chris Burgener
2016-06-30 20:43:59 -04:00
parent 488847099f
commit 76abf1f727
2 changed files with 3 additions and 35 deletions

View File

@ -30,7 +30,6 @@ public:
void Stop();
void SetSkipSilence(bool skip) { skip_silence = skip; }
void AddStereoSamples(const short* sample_data, u32 count, int sample_rate);
void AddStereoSamplesBE(const short* sample_data, u32 count, int sample_rate); // big endian
u32 GetAudioSize() const { return audio_size; }
private:
@ -42,7 +41,6 @@ private:
std::array<short, BUFFER_SIZE> conv_buffer{};
void Write(u32 value);
void Write4(const char* ptr);
void CheckSampleRate(int sample_rate);
std::string basename;
int current_sample_rate;
int file_index = 0;