Skip to content

Commit

Permalink
Update all clients to include empty implentation of new timeshift API…
Browse files Browse the repository at this point in the history
… stubs.
  • Loading branch information
adamsutton authored and opdenkamp committed Nov 10, 2012
1 parent ffd7745 commit 53500a6
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions addons/pvr.demo/src/client.cpp
Expand Up @@ -309,4 +309,6 @@ unsigned int GetChannelSwitchDelay(void) { return 0; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
}
2 changes: 2 additions & 0 deletions addons/pvr.fortherecord.argus/src/client.cpp
Expand Up @@ -621,4 +621,6 @@ 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 -1; }
unsigned int GetChannelSwitchDelay(void) { return 0; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
} //end extern "C"
2 changes: 2 additions & 0 deletions addons/pvr.hts/src/client.cpp
Expand Up @@ -584,4 +584,6 @@ unsigned int GetChannelSwitchDelay(void) { return 0; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
}
2 changes: 2 additions & 0 deletions addons/pvr.mediaportal.tvserver/src/client.cpp
Expand Up @@ -847,4 +847,6 @@ 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 -1; }
unsigned int GetChannelSwitchDelay(void) { return 0; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
} //end extern "C"
2 changes: 2 additions & 0 deletions addons/pvr.nextpvr/src/client.cpp
Expand Up @@ -647,4 +647,6 @@ unsigned int GetChannelSwitchDelay(void) { return 0; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
} //end extern "C"
2 changes: 2 additions & 0 deletions addons/pvr.njoy/src/client.cpp
Expand Up @@ -271,4 +271,6 @@ DemuxPacket* DemuxRead(void) { return NULL; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
} //end extern "C"
2 changes: 2 additions & 0 deletions addons/pvr.vdr.vnsi/src/client.cpp
Expand Up @@ -656,4 +656,6 @@ unsigned int GetChannelSwitchDelay(void) { return 0; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
}
2 changes: 2 additions & 0 deletions addons/pvr.vuplus/src/client.cpp
Expand Up @@ -588,4 +588,6 @@ unsigned int GetChannelSwitchDelay(void) { return 0; }
void PauseStream(bool bPaused) {}
bool CanPauseStream(void) { return false; }
bool CanSeekStream(void) { return false; }
bool SeekTime(int,bool,double*) { return false; }
void SetSpeed(int) {};
}

0 comments on commit 53500a6

Please sign in to comment.