1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-09-20 00:11:38 +02:00

Added virtual destructor to FIFOSamplePipe base class

This commit is contained in:
oparviai 2009-04-13 13:18:48 +00:00
parent f1a9f40da0
commit 02483980a5

View File

@ -59,6 +59,10 @@ namespace soundtouch
class FIFOSamplePipe
{
public:
// virtual default destructor
virtual ~FIFOSamplePipe() {}
/// Returns a pointer to the beginning of the output samples.
/// This function is provided for accessing the output samples directly.
/// Please be careful for not to corrupt the book-keeping!