Skip to content

Commit 907f93d

Browse files
aktamilbetamilselvanak
authored andcommitted
RDKEMW-5197 AVOutput Advance PQParams
1 parent dab1c4a commit 907f93d

File tree

5 files changed

+6164
-1646
lines changed

5 files changed

+6164
-1646
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 2
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)