Codebase list kodi-pvr-mythtv / b91510f
Update upstream source from tag 'upstream/7.3.1+ds1' Update to upstream version '7.3.1+ds1' with Debian dir b2326d7a4189033da1549f682e29936b9da6bed3 Vasyl Gello 3 years ago
4 changed file(s) with 18 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
00 <?xml version="1.0" encoding="UTF-8"?>
11 <addon
22 id="pvr.mythtv"
3 version="7.3.0"
3 version="7.3.1"
44 name="MythTV PVR Client"
55 provider-name="Christian Fetzer, Jean-Luc Barrière">
66 <requires>@ADDON_DEPENDS@</requires>
0 v7.3.1
1 - Implement missing methods to allow pause and seek with livestream
2
03 v7.3.0
14 - Update PVR API 7.1.0
25
24162416 return PVR_ERROR_NO_ERROR;
24172417 }
24182418
2419 bool PVRClientMythTV::CanPauseStream()
2420 {
2421 // reject pause with dummy stream
2422 return (m_liveStream ? true : false);
2423 }
2424
2425 bool PVRClientMythTV::CanSeekStream()
2426 {
2427 // reject seek with dummy stream
2428 return (m_liveStream ? true : false);
2429 }
2430
24192431 bool PVRClientMythTV::OpenRecordedStream(const kodi::addon::PVRRecording& recording)
24202432 {
24212433 if (!m_control || !m_eventHandler)
122122 PVR_ERROR GetSignalStatus(int channelUid, kodi::addon::PVRSignalStatus& signalStatus) override;
123123 bool IsRealTimeStream() override { return m_liveStream ? true : false; }
124124 PVR_ERROR GetStreamTimes(kodi::addon::PVRStreamTimes& streamTimes) override;
125 bool CanPauseStream() override;
126 bool CanSeekStream() override;
125127
126128 // Recording playback
127129 bool OpenRecordedStream(const kodi::addon::PVRRecording& recinfo) override;