summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h')
-rw-r--r--xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h b/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
index 27fa800..42a2abd 100644
--- a/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
+++ b/xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
@@ -413,6 +413,7 @@ extern "C"
413 * @param channel The channel to stream. 413 * @param channel The channel to stream.
414 * @return True if the stream has been opened successfully, false otherwise. 414 * @return True if the stream has been opened successfully, false otherwise.
415 * @remarks Required if bHandlesInputStream or bHandlesDemuxing is set to true. 415 * @remarks Required if bHandlesInputStream or bHandlesDemuxing is set to true.
416 * CloseLiveStream() will always be called by Kodi prior to calling this function.
416 * Return false if this add-on won't provide this function. 417 * Return false if this add-on won't provide this function.
417 */ 418 */
418 bool OpenLiveStream(const PVR_CHANNEL& channel); 419 bool OpenLiveStream(const PVR_CHANNEL& channel);
@@ -497,7 +498,7 @@ extern "C"
497 * Get the stream properties of the stream that's currently being read. 498 * Get the stream properties of the stream that's currently being read.
498 * @param pProperties The properties of the currently playing stream. 499 * @param pProperties The properties of the currently playing stream.
499 * @return PVR_ERROR_NO_ERROR if the properties have been fetched successfully. 500 * @return PVR_ERROR_NO_ERROR if the properties have been fetched successfully.
500 * @remarks Required if bHandlesInputStream or bHandlesDemuxing is set to true. 501 * @remarks Required if bHandlesDemuxing is set to true.
501 * Return PVR_ERROR_NOT_IMPLEMENTED if this add-on won't provide this function. 502 * Return PVR_ERROR_NOT_IMPLEMENTED if this add-on won't provide this function.
502 */ 503 */
503 PVR_ERROR GetStreamProperties(PVR_STREAM_PROPERTIES* pProperties); 504 PVR_ERROR GetStreamProperties(PVR_STREAM_PROPERTIES* pProperties);
@@ -523,6 +524,7 @@ extern "C"
523 * @param recording The recording to open. 524 * @param recording The recording to open.
524 * @return True if the stream has been opened successfully, false otherwise. 525 * @return True if the stream has been opened successfully, false otherwise.
525 * @remarks Optional, and only used if bSupportsRecordings is set to true. 526 * @remarks Optional, and only used if bSupportsRecordings is set to true.
527 * CloseRecordedStream() will always be called by Kodi prior to calling this function.
526 * Return false if this add-on won't provide this function. 528 * Return false if this add-on won't provide this function.
527 */ 529 */
528 bool OpenRecordedStream(const PVR_RECORDING& recording); 530 bool OpenRecordedStream(const PVR_RECORDING& recording);