mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
rename cPlayback::isPlaying() => cPlayback::IsPlaying()
This commit is contained in:
@@ -44,7 +44,7 @@ class cPlayback
|
||||
void FindAllDvbsubtitlePids(int *pids, unsigned int *numpidd, std::string *language);
|
||||
void FindAllTeletextsubtitlePids(int *pids, unsigned int *numpidt, std::string *tlanguage);
|
||||
void RequestAbort(void);
|
||||
bool isPlaying(void) { return false; }
|
||||
bool IsPlaying(void) { return false; }
|
||||
void FindAllSubs(int *pids, unsigned int *supported, unsigned int *numpida, std::string *language);
|
||||
bool SelectSubtitles(int pid);
|
||||
void GetChapters(std::vector<int> &positions, std::vector<std::string> &titles);
|
||||
|
@@ -757,7 +757,7 @@ void cPlayback::RequestAbort() {
|
||||
}
|
||||
}
|
||||
|
||||
bool cPlayback::isPlaying() {
|
||||
bool cPlayback::IsPlaying() {
|
||||
if (player && player->playback)
|
||||
return player->playback->isPlaying;
|
||||
return false;
|
||||
|
@@ -48,7 +48,7 @@ class cPlayback
|
||||
void FindAllDvbsubtitlePids(int *pids, unsigned int *numpidd, std::string *language);
|
||||
void FindAllTeletextsubtitlePids(int *pids, unsigned int *numpidt, std::string *tlanguage);
|
||||
void RequestAbort(void);
|
||||
bool isPlaying(void);
|
||||
bool IsPlaying(void);
|
||||
unsigned long long GetReadCount(void);
|
||||
#if 0
|
||||
void FindAllSubs(uint16_t *pids, unsigned short *supported, uint16_t *numpida, std::string *language);
|
||||
|
Reference in New Issue
Block a user