diff options
author | Christian Glöckner <cgloeckner@freenet.de> | 2016-03-29 10:50:36 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-31 17:35:47 +0200 |
commit | c860412cddfb96004ded3bc0055c16308b5bc168 (patch) | |
tree | 84f55fd4bb8bf31a9d00e0df50f24a8ac09fefd6 /src/audiocache.cc | |
parent | 90cf32becc608fdd1a5e9bf815e040d7fb71b819 (diff) |
made API of AudioCache's getters more consistent
Diffstat (limited to 'src/audiocache.cc')
-rw-r--r-- | src/audiocache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audiocache.cc b/src/audiocache.cc index 65ddef9..a5fb0db 100644 --- a/src/audiocache.cc +++ b/src/audiocache.cc @@ -271,7 +271,7 @@ void AudioCache::setFrameSize(size_t framesize) event_handler.setChunkSize(CHUNKSIZE(framesize)); } -size_t AudioCache::frameSize() const +size_t AudioCache::getFrameSize() const { return framesize; } @@ -281,7 +281,7 @@ void AudioCache::setAsyncMode(bool async) event_handler.setThreaded(async); } -bool AudioCache::asyncMode() const +bool AudioCache::isAsyncMode() const { return event_handler.isThreaded(); } |