Removal of external data ptr functionality in StkFrames, as revert merge did not work.

This commit is contained in:
Gary Scavone
2021-03-19 13:40:45 -04:00
parent 51f9676229
commit 15a1359671
2 changed files with 6 additions and 22 deletions

View File

@@ -285,9 +285,6 @@ public:
//! Overloaded constructor that initializes the frame data to the specified size with \c value.
StkFrames( const StkFloat& value, unsigned int nFrames, unsigned int nChannels );
//! Overloaded constructor that wraps the provided pointer to \c data.
StkFrames( StkFloat* data, unsigned int nFrames, unsigned int nChannels = 1 );
//! The destructor.
~StkFrames();
@@ -443,7 +440,6 @@ private:
unsigned int nChannels_;
size_t size_;
size_t bufferSize_;
bool ownData_;
};