aboutsummaryrefslogtreecommitdiffstats
path: root/qml/Viper/main.qml
diff options
context:
space:
mode:
authorjsamain <jsamain@cisco.com>2019-05-27 18:59:35 +0200
committerjsamain <jsamain@cisco.com>2019-05-27 18:59:35 +0200
commit2a876fc0d7986dc1ecb169bdc41972fe0f33d0dd (patch)
tree4a907472bfbe31e3fa75e3291282af27d6ba6956 /qml/Viper/main.qml
parent6dd3a9e9f88d7ef36707dad09f16685944aa182c (diff)
Update to be compliant with [HICN-206] Customize first part of the name for HTTP.
Added the -P option to set the IPv6 first word of the name. Change-Id: I321b22450d0efee713ddefef7405cf46ee381369 Signed-off-by: jsamain <jsamain@cisco.com>
Diffstat (limited to 'qml/Viper/main.qml')
-rwxr-xr-xqml/Viper/main.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/qml/Viper/main.qml b/qml/Viper/main.qml
index e170931b..1b645e35 100755
--- a/qml/Viper/main.qml
+++ b/qml/Viper/main.qml
@@ -37,6 +37,7 @@ Rectangle {
property bool buffering: false
property string adaptationLogic: ""
property string videoURI: ""
+ property string v6FirstWord: ""
property real alpha: 0
property real segmentBufferSize: 0
property bool icn: false
@@ -412,6 +413,7 @@ Rectangle {
icn = dashPlayer.getIcn()
adaptationLogic = dashPlayer.getAdaptationLogic()
videoURI = dashPlayer.getVideoURI()
+ v6FirstWord = dashPlayer.getV6FirstWord()
segmentBufferSize = dashPlayer.getSegmentBufferSize()
rateAlpha = dashPlayer.getRateAlpha()
bufferReservoirThreshold = dashPlayer.getBufferReservoirThreshold()
@@ -574,6 +576,11 @@ Rectangle {
videoURI = selectedVideoURI
}
+ onSaveV6FirstWord: {
+ dashPlayer.setV6FirstWord(selectedV6FirstWord)
+ v6FirstWord = selectedV6FirstWord
+ }
+
onSaveSegmentBufferSize: {
dashPlayer.setSegmentBufferSize(selectedSegmentBufferSize)
segmentBufferSize = selectedSegmentBufferSize