Kodi Development  20.0
for Binary and Script based Add-Ons

Source parts:

bool CMyInstance::CanPauseStream()
{
return false;
}
bool CMyInstance::CanSeekStream()
{
return false;
}
void CMyInstance::PauseStream(bool paused)
{
}
bool CMyInstance::IsRealTimeStream()
{
return false;
}
PVR_ERROR CMyInstance::GetStreamTimes(kodi::addon::PVRStreamTimes& times)
{
}
PVR_ERROR CMyInstance::GetStreamReadChunkSize(int& chunksize)
{
}
Definition: Stream.h:262
PVR_ERROR
Definition: pvr_general.h:35
@ PVR_ERROR_NOT_IMPLEMENTED
-2 : The method that Kodi called is not implemented by the add-on.
Definition: pvr_general.h:43