summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Keeler <jacob.keeler@livioradio.com>2021-01-14 09:09:05 -0500
committerGitHub <noreply@github.com>2021-01-14 09:09:05 -0500
commit721913c182212f97b46e51746efcddc951771514 (patch)
tree92a97b76a3a438d78f0e13cbc855be7576368379
parent8be4f3273203c353ada484c57d654c12cd19d2e4 (diff)
downloadsdl_core-721913c182212f97b46e51746efcddc951771514.tar.gz
Add Custom Playback Rate to SetMediaClockTimer (SDL 0244) (#3597)
* Add countRate to HMI API
-rw-r--r--src/components/interfaces/HMI_API.xml7
m---------tools/rpc_spec0
2 files changed, 7 insertions, 0 deletions
diff --git a/src/components/interfaces/HMI_API.xml b/src/components/interfaces/HMI_API.xml
index a9ad0792ec..f7a463f293 100644
--- a/src/components/interfaces/HMI_API.xml
+++ b/src/components/interfaces/HMI_API.xml
@@ -5553,6 +5553,13 @@
<param name="audioStreamingIndicator" type="Common.AudioStreamingIndicator" mandatory="false">
<description>Indicates that a button press of the Play/Pause button would play, pause or Stop the current playback.</description>
</param>
+ <param name="countRate" type="Float" minvalue="0.1" maxvalue="100.0" defvalue="1.0" mandatory="false">
+ <description>
+ The value of this parameter is the amount that the media clock timer will advance per 1.0 seconds of real time.
+ Values less than 1.0 will therefore advance the timer slower than real-time, while values greater than 1.0 will advance the timer faster than real-time.
+ e.g. If this parameter is set to `0.5`, the timer will advance one second per two seconds real-time, or at 50% speed. If this parameter is set to `2.0`, the timer will advance two seconds per one second real-time, or at 200% speed.
+ </description>
+ </param>
<param name="appID" type="Integer" mandatory="true">
<description>ID of application that requested this RPC.</description>
</param>
diff --git a/tools/rpc_spec b/tools/rpc_spec
-Subproject 762489ca140f246923e8bb8f54e96364e9d0101
+Subproject 24eaaecc70d49b649f44ae285eeacc72ca601e7