Skip to content

Commit

Permalink
v22.1.0: PVR Add-on API v9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ksooo committed Aug 16, 2024
1 parent 9edd24e commit 60a3b4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pvr.freebox/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.freebox"
version="22.0.0"
version="22.1.0"
name="PVR Freebox TV"
provider-name="aassif">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
2 changes: 1 addition & 1 deletion src/Freebox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,7 @@ PVR_ERROR Freebox::GetChannelGroupMembers (const kodi::addon::PVRChannelGroup &
return PVR_ERROR_NO_ERROR;
}

PVR_ERROR Freebox::GetChannelStreamProperties (const kodi::addon::PVRChannel & channel, std::vector<kodi::addon::PVRStreamProperty> & properties)
PVR_ERROR Freebox::GetChannelStreamProperties (const kodi::addon::PVRChannel & channel, PVR_SOURCE /*source*/, std::vector<kodi::addon::PVRStreamProperty> & properties)
{
enum Source source = ChannelSource (channel.GetUniqueId (), true);
enum Quality quality = ChannelQuality (channel.GetUniqueId (), true);
Expand Down
2 changes: 1 addition & 1 deletion src/Freebox.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class ATTR_DLL_LOCAL Freebox :
PVR_ERROR GetChannelGroupsAmount(int &) override;
PVR_ERROR GetChannelGroups(bool, kodi::addon::PVRChannelGroupsResultSet &) override;
PVR_ERROR GetChannelGroupMembers(const kodi::addon::PVRChannelGroup &, kodi::addon::PVRChannelGroupMembersResultSet &) override;
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel &, std::vector<kodi::addon::PVRStreamProperty> &) override;
PVR_ERROR GetChannelStreamProperties(const kodi::addon::PVRChannel &, PVR_SOURCE, std::vector<kodi::addon::PVRStreamProperty> &) override;

// R E C O R D I N G S /////////////////////////////////////////////////////
PVR_ERROR GetRecordingsAmount(bool, int &) override;
Expand Down

0 comments on commit 60a3b4e

Please sign in to comment.