Skip to content

Commit d71c96a

Browse files
committed
Merge branch 'release/1.7.4' into main
2 parents 7226f3b + f63b249 commit d71c96a

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.7.4](https://github.com/rdkcentral/entservices-apis/compare/1.7.3...1.7.4)
8+
9+
- RDKEMW-5316 : To list AV1 codec from PlayerInfo [`#299`](https://github.com/rdkcentral/entservices-apis/pull/299)
10+
- Merge tag '1.7.3' into develop [`a7adee3`](https://github.com/rdkcentral/entservices-apis/commit/a7adee30028485acad6c9ff95bf9181ab98bc03c)
11+
712
#### [1.7.3](https://github.com/rdkcentral/entservices-apis/compare/1.7.2...1.7.3)
813

14+
> 18 June 2025
15+
916
- RDKEMW-5139: RDKEMW-5139: [RDKM-VA-Devices]EntServices : DeviceInfo.modelid, DeviceInfo.make and DeviceInfo.socname APIs return ERROR_GENERAL response. [`#277`](https://github.com/rdkcentral/entservices-apis/pull/277)
17+
- RDKEMW-5139 - Changelog updates for 1.7.3 [`c4da0dc`](https://github.com/rdkcentral/entservices-apis/commit/c4da0dc64da820d595a810409112f238810f193e)
1018
- Merge tag '1.7.2' into develop [`17895d0`](https://github.com/rdkcentral/entservices-apis/commit/17895d0c89434f22c074df40a14fd0d276d8ab33)
1119

1220
#### [1.7.2](https://github.com/rdkcentral/entservices-apis/compare/1.7.1...1.7.2)
@@ -215,11 +223,17 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
215223
- Merge tag '1.3.1' into develop [`8a2352c`](https://github.com/rdkcentral/entservices-apis/commit/8a2352c5ea75c5827a97130869b6d922d7d0a620)
216224
- RDKEMW-1009 Update DeviceDiagnostics plugin doc [`c6f1756`](https://github.com/rdkcentral/entservices-apis/commit/c6f1756394e386e019575067388affc6d9d39026)
217225

218-
#### [1.3.1](https://github.com/rdkcentral/entservices-apis/compare/1.3.0...1.3.1)
226+
#### [1.3.1](https://github.com/rdkcentral/entservices-apis/compare/1.3.1-RDK7.1...1.3.1)
219227

220228
> 2 April 2025
221229
230+
#### [1.3.1-RDK7.1](https://github.com/rdkcentral/entservices-apis/compare/1.3.0...1.3.1-RDK7.1)
231+
232+
> 18 June 2025
233+
234+
- RDKEMW-5139: [RDKM-VA-Devices]EntServices : DeviceInfo.modelid, DeviceInfo.make and DeviceInfo.socname APIs return ERROR_GENERAL response. [`#304`](https://github.com/rdkcentral/entservices-apis/pull/304)
222235
- RDKEMW-1020: Add COM-RPC support to ScreenCapture plugin [`#76`](https://github.com/rdkcentral/entservices-apis/pull/76)
236+
- RDKEMW-5139 - Changelog updates for 1.3.1-RDK7.1 [`c6aeaa2`](https://github.com/rdkcentral/entservices-apis/commit/c6aeaa2b1484b29c56dbe0af52e810eda90cb6a4)
223237
- 1.3.1 release changelog updates [`3c8ae32`](https://github.com/rdkcentral/entservices-apis/commit/3c8ae32b46cbc3b07bf10955af6824cb1bcab99e)
224238
- Merge tag '1.3.0' into develop [`a90b57f`](https://github.com/rdkcentral/entservices-apis/commit/a90b57f997984acba3039040137c911df17c6c6c)
225239

apis/PlayerInfo/IPlayerInfo.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ namespace Exchange {
5656
VIDEO_MPEG4,
5757
VIDEO_VP8,
5858
VIDEO_VP9,
59-
VIDEO_VP10
59+
VIDEO_VP10,
60+
VIDEO_AV1
6061
};
6162

6263
enum PlaybackResolution : uint8_t {

apis/PlayerInfo/PlayerInfo.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@
5151
"MPEG",
5252
"VP8",
5353
"VP9",
54-
"VP10"
54+
"VP10",
55+
"AV1"
5556
],
5657
"enumvalues": [
5758
0,
@@ -62,7 +63,8 @@
6263
5,
6364
6,
6465
7,
65-
8
66+
8,
67+
9
6668
],
6769
"description": "Video Codec supported by the platform",
6870
"example": "VideoH264"

0 commit comments

Comments
 (0)