Skip to content

Commit f02d42e

Browse files
committed
RDKEMW-3750 : Upgrade Thunder to Version R4.4.3
Reason for change: AddRef return type got changed in R4.4.3 , modified the changes in RustAdapter pligin Test Procedure: please referred ticket descriptions Risks: Medium Priority: P1 Signed-off-by: Thamim Razith <[email protected]>
1 parent 07fd812 commit f02d42e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

AVOutput/AVOutput.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@ namespace Plugin {
6060
const std::string Initialize(PluginHost::IShell* service);
6161
void Deinitialize(PluginHost::IShell* service);
6262
virtual string Information() const override { return {}; }
63+
#if ((THUNDER_VERSION >= 4) && (THUNDER_VERSION_MINOR == 4) && (THUNDER_VERSION_PATCH == 3))
64+
virtual uint32_t AddRef() const {return 0; }
65+
#else
6366
virtual void AddRef() const { }
67+
#endif
6468
virtual uint32_t Release() const {return 0; }
6569
BEGIN_INTERFACE_MAP(AVOutput)
6670
INTERFACE_ENTRY(PluginHost::IPlugin)

0 commit comments

Comments
 (0)