Remove unused external variables

This commit is contained in:
xenakios 2017-11-20 23:00:51 +02:00
parent 98858218d5
commit 31dbfb84cd
2 changed files with 0 additions and 4 deletions

View File

@ -29,8 +29,6 @@
using namespace std; using namespace std;
extern std::unique_ptr<PropertiesFile> g_propsfile;
Control::Control(AudioFormatManager* afm) : m_afm(afm), m_bufferingthread("stretchbufferingthread") Control::Control(AudioFormatManager* afm) : m_afm(afm), m_bufferingthread("stretchbufferingthread")
{ {
m_stretch_source = std::make_unique<StretchAudioSource>(2,m_afm); m_stretch_source = std::make_unique<StretchAudioSource>(2,m_afm);

View File

@ -21,8 +21,6 @@
#include <stdio.h> #include <stdio.h>
#include "ProcessedStretch.h" #include "ProcessedStretch.h"
extern std::unique_ptr<PropertiesFile> g_propsfile;
ProcessedStretch::ProcessedStretch(REALTYPE rap_,int in_bufsize_,FFTWindow w,bool bypass_,REALTYPE samplerate_,int stereo_mode_) ProcessedStretch::ProcessedStretch(REALTYPE rap_,int in_bufsize_,FFTWindow w,bool bypass_,REALTYPE samplerate_,int stereo_mode_)
: Stretch(rap_,in_bufsize_,w,bypass_,samplerate_,stereo_mode_) : Stretch(rap_,in_bufsize_,w,bypass_,samplerate_,stereo_mode_)
{ {