Skip to content

Commit df402c6

Browse files
Delia 68186 main (rdkcentral#6301)
* DELIA-68186 : Update interface to have closeSessionResponse parameter (rdkcentral#6265) Reason for change: align with the HLA Test Procedure: None Risks: None Signed-off-by: Nikita Poltorapavlo <[email protected]> * update changelog and api version --------- Signed-off-by: Nikita Poltorapavlo <[email protected]>
1 parent 2e44c49 commit df402c6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ContentProtection/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [2.1.0] - 2025-06-25
20+
### Changed
21+
- Support for returning video platform data in closeDrmSession result
22+
1923
## [2.0.0] - 2025-06-12
2024
### Changed
2125
- Parameters initData, openSessionResponse, updateSessionResponse to be stringified json instead of json

ContentProtection/ContentProtection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "ContentProtection.h"
2121

2222
#define API_VERSION_NUMBER_MAJOR 2
23-
#define API_VERSION_NUMBER_MINOR 0
23+
#define API_VERSION_NUMBER_MINOR 1
2424
#define API_VERSION_NUMBER_PATCH 0
2525

2626
namespace WPEFramework {

ContentProtection/ContentProtection.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,8 @@ namespace Plugin {
436436
return result;
437437
}
438438

439-
uint32_t CloseDrmSession(uint32_t sessionId) override
439+
uint32_t CloseDrmSession(uint32_t sessionId,
440+
string& /*response*/) override
440441
{
441442
auto session = _parent._sessionStorage.Get(sessionId);
442443
if (!session.IsSet()) {

0 commit comments

Comments
 (0)