Skip to content

Commit 10095fa

Browse files
RDKTV-35827: To list AV1 codec from PlayerInfo (rdkcentral#6282)
Reason For Change: PlayerInfo service doesn't report AV1 codec though platform supports Test procedure: Mentioned in the ticket RDKTV-35827 Risks: Low Signed-off-by: [email protected] Signed-off-by: [email protected] Co-authored-by: Michael Fiess <[email protected]>
1 parent e684e16 commit 10095fa

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

PlayerInfo/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ 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+
## [1.1.1] - 2025-06-13
20+
### Fixed
21+
- Added support for PlayerInfo to report AV1 codec
1922

2023
## [1.1.0] - 2024-06-04
2124
### Fixed

PlayerInfo/DeviceSettings/PlatformImplementation.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,8 @@ class PlayerInfoImplementation : public Exchange::IPlayerProperties, public Exch
475475
{"video/mpeg, mpegversion=(int)4, systemstream=(boolean)false", Exchange::IPlayerProperties::VideoCodec::VIDEO_MPEG4},
476476
{"video/x-vp8", Exchange::IPlayerProperties::VideoCodec::VIDEO_VP8},
477477
{"video/x-vp9", Exchange::IPlayerProperties::VideoCodec::VIDEO_VP9},
478-
{"video/x-vp10", Exchange::IPlayerProperties::VideoCodec::VIDEO_VP10}
478+
{"video/x-vp10", Exchange::IPlayerProperties::VideoCodec::VIDEO_VP10},
479+
{"video/x-av1", Exchange::IPlayerProperties::VideoCodec::VIDEO_AV1}
479480
};
480481
if (GstUtils::GstRegistryCheckElementsForMediaTypes(videoCaps, _videoCodecs) != true) {
481482
TRACE(Trace::Warning, (_T("There is no Video Codec support available")));

PlayerInfo/PlayerInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#define API_VERSION_NUMBER_MAJOR 1
2323
#define API_VERSION_NUMBER_MINOR 1
24-
#define API_VERSION_NUMBER_PATCH 0
24+
#define API_VERSION_NUMBER_PATCH 1
2525

2626
namespace WPEFramework {
2727

PlayerInfo/PlayerInfo.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
"MPEG4",
5959
"VP8",
6060
"VP9",
61-
"VP10"
61+
"VP10",
62+
"AV1"
6263
],
6364
"enumvalues": [
6465
0,
@@ -71,7 +72,8 @@
7172
7,
7273
8,
7374
9,
74-
10
75+
10,
76+
11
7577
],
7678
"example": "VideoH264"
7779
},
@@ -137,7 +139,8 @@
137139
"VideoMpeg",
138140
"VideoVp8",
139141
"VideoVp9",
140-
"VideoVp10"
142+
"VideoVp10",
143+
"VideoAv1"
141144
],
142145
"example": "VideoUndefined"
143146
}

0 commit comments

Comments
 (0)