From 2a876fc0d7986dc1ecb169bdc41972fe0f33d0dd Mon Sep 17 00:00:00 2001 From: jsamain Date: Mon, 27 May 2019 18:59:35 +0200 Subject: 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 --- UI/DASHPlayer.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'UI/DASHPlayer.h') diff --git a/UI/DASHPlayer.h b/UI/DASHPlayer.h index c85c2351..7b6274f6 100644 --- a/UI/DASHPlayer.h +++ b/UI/DASHPlayer.h @@ -45,7 +45,7 @@ class DASHPlayer : public IDASHPlayerGuiObserver, public managers::IMultimediaMa Q_OBJECT public: - DASHPlayer(ViperGui& gui, Config *config); + DASHPlayer(int argc, char* argv[], ViperGui& gui, Config *config); virtual ~DASHPlayer(); virtual void onSettingsChanged(int period, int videoAdaptationSet, int videoRepresentation, int audioAdaptationSet, int audioRepresentation); @@ -74,7 +74,9 @@ public: Q_INVOKABLE bool getIcn(); Q_INVOKABLE void setIcn(bool icn); Q_INVOKABLE QString getVideoURI(); + Q_INVOKABLE QString getV6FirstWord(); Q_INVOKABLE void setVideoURI(QString videoURI); + Q_INVOKABLE void setV6FirstWord(QString v6FirstWord); Q_INVOKABLE qreal getAlpha(); Q_INVOKABLE void setAlpha(qreal alpha); Q_INVOKABLE qreal getSegmentBufferSize(); @@ -174,6 +176,7 @@ private: const char *url; bool icn; std::string videoURI; + std::string v6FirstWord; double alpha; struct libdash::framework::adaptation::AdaptationParameters *parametersAdaptation; libdash::framework::adaptation::LogicType adaptLogic; -- cgit 1.2.3-korg