mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2023-10-10 13:36:57 +02:00
Update for Kodi 16.0 Jarvis
Update to PVR API version 4.1.0. Signed-off-by: Julian Scheel <julian@jusst.de>
This commit is contained in:
parent
a2399d67c2
commit
a1f3f7ccab
@ -1,12 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon
|
||||
id="pvr.octonet"
|
||||
version="0.1"
|
||||
version="0.2"
|
||||
name="PVR DigitalDevices Octonet Client"
|
||||
provider-name="digitaldevices">
|
||||
<requires>
|
||||
<c-pluff version="0.1" />
|
||||
<import addon="xbmc.pvr" version="1.9.6" />
|
||||
<import addon="xbmc.pvr" version="4.1.0" />
|
||||
</requires>
|
||||
<extension
|
||||
point="xbmc.pvrclient"
|
||||
|
@ -224,6 +224,7 @@ PVR_ERROR SetRecordingPlayCount(const PVR_RECORDING& recording, int count) { ret
|
||||
PVR_ERROR SetRecordingLastPlayedPosition(const PVR_RECORDING& recording, int lastplayedposition) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
int GetRecordingLastPlayedPosition(const PVR_RECORDING& recording) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
PVR_ERROR GetRecordingEdl(const PVR_RECORDING&, PVR_EDL_ENTRY edl[], int *size) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
PVR_ERROR GetTimerTypes(PVR_TIMER_TYPE types[], int *size) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
int GetTimersAmount(void) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
PVR_ERROR GetTimers(ADDON_HANDLE handle) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
PVR_ERROR AddTimer(const PVR_TIMER& timer) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||
@ -262,6 +263,7 @@ DemuxPacket* DemuxRead(void) { return NULL; }
|
||||
|
||||
/* Various helper functions */
|
||||
unsigned int GetChannelSwitchDelay(void) { return 0; }
|
||||
bool IsTimeshifting(void) { return false; }
|
||||
bool CanPauseStream() { return false; }
|
||||
bool CanSeekStream() { return false; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user