Skip to content

Commit 0fd8062

Browse files
authored
Merge pull request #239 from rdkcentral/feature/RDKEMW-1008-COM-RPC_support
RDKEMW-1008: Add COM-RPC support to AVInput plugin
2 parents ad301b0 + 5c25bcf commit 0fd8062

File tree

12 files changed

+2655
-1969
lines changed

12 files changed

+2655
-1969
lines changed

AVInput/AVInput.conf.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,11 @@ precondition = ["Platform"]
22
callsign = "org.rdk.AVInput"
33
autostart = "false"
44
startuporder = "@PLUGIN_AVINPUT_STARTUPORDER@"
5+
6+
configuration = JSON()
7+
rootobject = JSON()
8+
9+
rootobject.add("mode", "@PLUGIN_AVINPUT_MODE@")
10+
rootobject.add("locator", "lib@[email protected]")
11+
12+
configuration.add("root", rootobject)

AVInput/AVInput.config

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
set (autostart false)
22
set (preconditions Platform)
3-
set (callsign org.rdk.AVInput)
3+
set (callsign "org.rdk.AVInput")
44

55
if(PLUGIN_AVINPUT_STARTUPORDER)
66
set (startuporder ${PLUGIN_AVINPUT_STARTUPORDER})
77
endif()
8+
9+
map()
10+
key(root)
11+
map()
12+
kv(mode ${PLUGIN_AVINPUT_MODE})
13+
kv(locator lib${PLUGIN_IMPLEMENTATION}.so)
14+
end()
15+
end()
16+
ans(configuration)

0 commit comments

Comments
 (0)