Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
7f6c201
RDKEMW-5197 : Advance PQParams MW Changes
aktamilbe Aug 18, 2025
10783ef
Merge pull request #235 from rdkcentral/develop
utkarshece14 Aug 20, 2025
9093339
RDKEMW-5197 : Handle the logic for setSDRGamma to set correct enum value
aktamilbe Aug 22, 2025
a685c65
RDKEMW-5197 : zoomMode and resetBLackScreen issue
aktamilbe Sep 12, 2025
7ee310c
RDKEMW-5197 : Updated Changelog
aktamilbe Sep 12, 2025
2435557
Merge pull request #230 from rdkcentral/feature/support_5197
utkarshece14 Sep 12, 2025
d229924
RDKEMW-8202: Temporarily comment out set/get/reset CMS due to missing…
Sep 15, 2025
9559afc
Revert "RDKEMW-8202: Temporarily comment out set/get/reset CMS due to…
Sep 16, 2025
60e002d
Merge branch 'develop' into support/pq_dvt1.1
utkarshece14 Sep 17, 2025
15cfe8a
RDKEMW-5197 : Add Missed out changes in support/pq_dvt1.1
aktamilbe Sep 18, 2025
05a6317
Merge pull request #259 from rdkcentral/feature/5197_AddMissingChanges
utkarshece14 Sep 22, 2025
43e87b3
RDKEMW-5197 : Enable CMS sync
aktamilbe Sep 30, 2025
7b3da5b
RDKEMW-5197 : Fix set/get/reset CMS issues with JSOn implementation
aktamilbe Sep 30, 2025
665315d
Merge pull request #265 from rdkcentral/feature/CMS
utkarshece14 Oct 3, 2025
4d40064
RDKEMW-5197 : Add Changes for getVideoSource and getVideoFormat Caps
aktamilbe Oct 6, 2025
dbb828e
Merge pull request #266 from rdkcentral/feature/Caps_RDKEMW-5197
utkarshece14 Oct 7, 2025
14fb6bd
Merge branch 'develop' into support/pq_dvt1.1
utkarshece14 Oct 8, 2025
a62c593
Merge branch 'support/pq_dvt1.1' into feature/RDKEMW-9633
utkarshece14 Oct 23, 2025
10dee81
Merge branch 'develop' into feature/RDKEMW-9633
utkarshece14 Nov 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion AVOutput/AVOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,27 @@
#include "UtilsIarm.h"
#include "UtilsSearchRDKProfile.h"

#define API_VERSION_NUMBER_MAJOR 1
#define API_VERSION_NUMBER_MINOR 1
#define API_VERSION_NUMBER_PATCH 0

namespace WPEFramework {
namespace Plugin {

SERVICE_REGISTRATION(AVOutput,1, 0);
static Plugin::Metadata<Plugin::AVOutput> metadata(
// Version (Major, Minor, Patch)
API_VERSION_NUMBER_MAJOR, API_VERSION_NUMBER_MINOR, API_VERSION_NUMBER_PATCH,
// Preconditions
{},
// Terminations
{},
// Controls
{}
);


SERVICE_REGISTRATION(AVOutput, API_VERSION_NUMBER_MAJOR, API_VERSION_NUMBER_MINOR, API_VERSION_NUMBER_PATCH);


AVOutput::AVOutput()
{
Expand Down
Loading
Loading