-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5438 from Dosakaya/sprint/24Q2
RDK-49561: RDKV - System Services Plugin unit Test compliance with Thunder 4.4.1
- Loading branch information
Showing
10 changed files
with
3,873 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Index: git/interfaces/ITextToSpeech.h | ||
=================================================================== | ||
--- git.orig/interfaces/ITextToSpeech.h | ||
+++ git/interfaces/ITextToSpeech.h | ||
@@ -65,6 +65,7 @@ namespace Exchange { | ||
|
||
virtual void Register(ITextToSpeech::INotification* sink) = 0; | ||
virtual void Unregister(ITextToSpeech::INotification* sink) = 0; | ||
+ virtual void RegisterWithCallsign(const string callsign,ITextToSpeech::INotification* sink) = 0; | ||
|
||
// @property | ||
// @brief Query the status/enable tts | ||
@@ -80,6 +81,7 @@ namespace Exchange { | ||
virtual uint32_t SetFallbackText(const string scenario,const string value) = 0; | ||
virtual uint32_t SetAPIKey(const string apikey) = 0; | ||
virtual uint32_t SetPrimaryVolDuck(const uint8_t prim) = 0; | ||
+ virtual uint32_t SetACL(const string method,const string apps) = 0; | ||
|
||
// @brief Retrieve tts configuration attributes | ||
// @param config tts configuration | ||
@@ -94,7 +96,7 @@ namespace Exchange { | ||
// @param text for conversion | ||
// @param speechid returns id for the text | ||
// @param status return status | ||
- virtual uint32_t Speak(const string text,uint32_t &speechid/* @out */,TTSErrorDetail &status/* @out */) = 0; | ||
+ virtual uint32_t Speak(const string callsign,const string text,uint32_t &speechid/* @out */,TTSErrorDetail &status/* @out */) = 0; | ||
|
||
// @brief Cancel the speech | ||
// @param speechid id of text to be cancelled |
Oops, something went wrong.