Skip to content

Commit 2435557

Browse files
authored
Merge pull request #230 from rdkcentral/feature/support_5197
RDKEMW-5197 : Advance PQParams MW Changes
2 parents 10783ef + 7ee310c commit 2435557

File tree

5 files changed

+5519
-1640
lines changed

5 files changed

+5519
-1640
lines changed

AVOutput/AVOutput.cpp

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,27 @@
2222
#include "UtilsIarm.h"
2323
#include "UtilsSearchRDKProfile.h"
2424

25+
#define API_VERSION_NUMBER_MAJOR 1
26+
#define API_VERSION_NUMBER_MINOR 1
27+
#define API_VERSION_NUMBER_PATCH 0
28+
2529
namespace WPEFramework {
2630
namespace Plugin {
2731

28-
SERVICE_REGISTRATION(AVOutput,1, 0);
32+
static Plugin::Metadata<Plugin::AVOutput> metadata(
33+
// Version (Major, Minor, Patch)
34+
API_VERSION_NUMBER_MAJOR, API_VERSION_NUMBER_MINOR, API_VERSION_NUMBER_PATCH,
35+
// Preconditions
36+
{},
37+
// Terminations
38+
{},
39+
// Controls
40+
{}
41+
);
42+
43+
44+
SERVICE_REGISTRATION(AVOutput, API_VERSION_NUMBER_MAJOR, API_VERSION_NUMBER_MINOR, API_VERSION_NUMBER_PATCH);
45+
2946

3047
AVOutput::AVOutput()
3148
{

0 commit comments

Comments
 (0)