[SCM] kodi-pvr-vdr-vnsi/upstream: [API 5.0.0] Add PVR_RECORDING.iChannelUid

tiber-guest at users.alioth.debian.org tiber-guest at users.alioth.debian.org
Sun Feb 28 15:47:25 UTC 2016


The following commit has been merged in the upstream branch:
commit 664fa09369367cbd888ff4f1ee17e90f74f3cb7f
Author: Kai Sommerfeld <kai.sommerfeld at gmx.com>
Date:   Fri Feb 12 14:28:17 2016 +0100

    [API 5.0.0] Add PVR_RECORDING.iChannelUid

diff --git a/src/VNSIData.cpp b/src/VNSIData.cpp
index 8f442c0..84ee448 100644
--- a/src/VNSIData.cpp
+++ b/src/VNSIData.cpp
@@ -657,6 +657,9 @@ PVR_ERROR cVNSIData::GetRecordingsList(ADDON_HANDLE handle)
     strRecordingId.Format("%i", vresp->extract_U32());
     strncpy(tag.strRecordingId, strRecordingId.c_str(), sizeof(tag.strRecordingId) - 1);
 
+    /* TODO: PVR API 5.0.0: Implement this */
+    tag.iChannelUid = PVR_CHANNEL_INVALID_UID;
+
     PVR->TransferRecordingEntry(handle, &tag);
   }
 
@@ -803,6 +806,9 @@ PVR_ERROR cVNSIData::GetDeletedRecordingsList(ADDON_HANDLE handle)
     strRecordingId.Format("%i", vresp->extract_U32());
     strncpy(tag.strRecordingId, strRecordingId.c_str(), sizeof(tag.strRecordingId) - 1);
 
+    /* TODO: PVR API 5.0.0: Implement this */
+    tag.iChannelUid = PVR_CHANNEL_INVALID_UID;
+
     PVR->TransferRecordingEntry(handle, &tag);
   }
 

-- 
kodi-pvr-vdr-vnsi packaging



More information about the pkg-multimedia-commits mailing list