Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PVR] Document implict call to CloseXXXStream() before OpenXXXStream() #15479

Merged
merged 1 commit into from Feb 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions xbmc/addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_dll.h
Expand Up @@ -413,6 +413,7 @@ extern "C"
* @param channel The channel to stream.
* @return True if the stream has been opened successfully, false otherwise.
* @remarks Required if bHandlesInputStream or bHandlesDemuxing is set to true.
* CloseLiveStream() will always be called by Kodi prior to calling this function.
* Return false if this add-on won't provide this function.
*/
bool OpenLiveStream(const PVR_CHANNEL& channel);
Expand Down Expand Up @@ -523,6 +524,7 @@ extern "C"
* @param recording The recording to open.
* @return True if the stream has been opened successfully, false otherwise.
* @remarks Optional, and only used if bSupportsRecordings is set to true.
* CloseRecordedStream() will always be called by Kodi prior to calling this function.
* Return false if this add-on won't provide this function.
*/
bool OpenRecordedStream(const PVR_RECORDING& recording);
Expand Down