summaryrefslogtreecommitdiff
path: root/src/audiocache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/audiocache.cc')
-rw-r--r--src/audiocache.cc4
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();
}