libstb-hal/libspark/playback: add method for retrieving read-count

Origin commit data
------------------
Branch: master
Commit: de39d0cdc7
Author: martii <m4rtii@gmx.de>
Date: 2013-11-04 (Mon, 04 Nov 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-11-04 14:15:21 +01:00
parent 03dbb31720
commit 04e0664607
4 changed files with 11 additions and 1 deletions

View File

@@ -724,6 +724,13 @@ bool cPlayback::isPlaying() {
return player->playback->isPlaying;
return false;
}
unsigned long long cPlayback::GetReadCount() {
if (player && player->playback) {
return player->playback->readCount;
}
return 0;
}
#if 0
bool cPlayback::IsPlaying(void) const
{