diff --git a/src/IptvSimple.cpp b/src/IptvSimple.cpp index 864761d5..b17ca0ae 100644 --- a/src/IptvSimple.cpp +++ b/src/IptvSimple.cpp @@ -436,6 +436,15 @@ PVR_ERROR IptvSimple::GetSignalStatus(int channelUid, kodi::addon::PVRSignalStat return PVR_ERROR_NO_ERROR; } +/*************************************************************************** + * Stream State + **************************************************************************/ + +void IptvSimple::StreamClosed() +{ + Logger::Log(LEVEL_INFO, "%s - Stream Closed", __FUNCTION__); +} + /*************************************************************************** * InstanceSettings **************************************************************************/ diff --git a/src/IptvSimple.h b/src/IptvSimple.h index 69537928..a4a78a19 100644 --- a/src/IptvSimple.h +++ b/src/IptvSimple.h @@ -71,6 +71,8 @@ class ATTR_DLL_LOCAL IptvSimple : public iptvsimple::IConnectionListener PVR_ERROR GetSignalStatus(int channelUid, kodi::addon::PVRSignalStatus& signalStatus) override; + PVR_ERROR StreamClosed() override; + PVR_ERROR GetRecordingsAmount(bool deleted, int& amount) override; PVR_ERROR GetRecordings(bool deleted, kodi::addon::PVRRecordingsResultSet& results) override; PVR_ERROR GetRecordingStreamProperties(const kodi::addon::PVRRecording& recording, std::vector& properties) override;