Commit e277a2e 1 parent d77c88f commit e277a2e Copy full SHA for e277a2e
File tree 4 files changed +10
-7
lines changed
4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<addon
3
3
id =" pvr.wmc"
4
- version =" 22.1 .0"
4
+ version =" 22.2 .0"
5
5
name =" Windows Media Center Client"
6
6
provider-name =" KrustyReturns and scarecrow420" >
7
7
<requires >@ADDON_DEPENDS@</requires >
Original file line number Diff line number Diff line change
1
+ v22.2.0
2
+ - PVR Add-on API v9.2.0
3
+
1
4
v22.1.0
2
5
- PVR Add-on API v9.0.0
3
6
Original file line number Diff line number Diff line change @@ -1567,7 +1567,7 @@ bool Pvr2Wmc::CloseStream(bool notifyServer /*=true*/)
1567
1567
return true ;
1568
1568
}
1569
1569
1570
- bool Pvr2Wmc::OpenRecordedStream (const kodi::addon::PVRRecording& recording)
1570
+ bool Pvr2Wmc::OpenRecordedStream (const kodi::addon::PVRRecording& recording, int64_t & streamId )
1571
1571
{
1572
1572
if (IsServerDown ())
1573
1573
return false ;
Original file line number Diff line number Diff line change @@ -132,17 +132,17 @@ class ATTR_DLL_LOCAL Pvr2Wmc : public kodi::addon::CInstancePVRClient
132
132
std::vector<kodi::addon::PVREDLEntry>& edl) override ;
133
133
134
134
// recording streams
135
- bool OpenRecordedStream (const kodi::addon::PVRRecording& recording) override ;
136
- void CloseRecordedStream () override { CloseStream (); }
137
- int ReadRecordedStream (unsigned char * buffer, unsigned int size) override
135
+ bool OpenRecordedStream (const kodi::addon::PVRRecording& recording, int64_t & streamId ) override ;
136
+ void CloseRecordedStream (int64_t streamId ) override { CloseStream (); }
137
+ int ReadRecordedStream (int64_t streamId, unsigned char * buffer, unsigned int size) override
138
138
{
139
139
return ReadStream (buffer, size);
140
140
}
141
- int64_t SeekRecordedStream (int64_t position, int whence) override
141
+ int64_t SeekRecordedStream (int64_t streamId, int64_t position, int whence) override
142
142
{
143
143
return SeekStream (position, whence);
144
144
}
145
- int64_t LengthRecordedStream () override { return LengthStream (); }
145
+ int64_t LengthRecordedStream (int64_t streamId ) override { return LengthStream (); }
146
146
147
147
// live tv
148
148
bool OpenLiveStream (const kodi::addon::PVRChannel& channel) override ;
You can’t perform that action at this time.
0 commit comments