aboutsummaryrefslogtreecommitdiffstats
path: root/Input/DASHManager.h
diff options
context:
space:
mode:
authorLuca Muscariello <lumuscar+fdio@cisco.com>2017-02-25 23:42:31 +0100
committerLuca Muscariello <lumuscar+fdio@cisco.com>2017-02-25 23:42:31 +0100
commit05c1a838c881ea502888659848d8792843b28718 (patch)
treecf0b05b58bd725a1eb6c80325ba986c63dea42aa /Input/DASHManager.h
parent9b30fc10fb1cbebe651e5a107e8ca5b24de54675 (diff)
Initial commit: video player - viper
Change-Id: Id5aa33598ce34659bad4a7a9ae5006bfb84f9bd1 Signed-off-by: Luca Muscariello <lumuscar+fdio@cisco.com>
Diffstat (limited to 'Input/DASHManager.h')
-rw-r--r--Input/DASHManager.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/Input/DASHManager.h b/Input/DASHManager.h
new file mode 100644
index 00000000..2b723426
--- /dev/null
+++ b/Input/DASHManager.h
@@ -0,0 +1,80 @@
+/*
+ * DASHManager.h
+ *****************************************************************************
+ * Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
+ *
+ * Email: libdash-dev@vicky.bitmovin.net
+ *
+ * This source code and its use and distribution, is subject to the terms
+ * and conditions of the applicable license agreement.
+ *****************************************************************************/
+
+#ifndef LIBDASH_FRAMEWORK_INPUT_DASHMANAGER_H_
+#define LIBDASH_FRAMEWORK_INPUT_DASHMANAGER_H_
+
+#include "DASHReceiver.h"
+#include "IDASHReceiverObserver.h"
+#include "libdash.h"
+#include "IMPD.h"
+#include <QtMultimedia/qaudioformat.h>
+#include "IDASHManagerObserver.h"
+//#include "../Buffer/Segment.h"
+#include "../Managers/IStreamObserver.h"
+#include "../Buffer/IBufferObserver.h"
+
+
+namespace libdash
+{
+namespace framework
+{
+namespace input
+{
+
+class DASHManager : public IDASHReceiverObserver, public IBufferObserver
+{
+public:
+ DASHManager (viper::managers::StreamType type, uint32_t maxCapacity, IDASHManagerObserver *multimediaStream, dash::mpd::IMPD *mpd, bool icnEnabled, double icnAlpha, bool nodecoding, float beta, float drop);
+ virtual ~DASHManager ();
+
+ bool start();
+ void stop();
+ uint32_t getPosition();
+ void setPosition(uint32_t segmentNumber); // to implement
+ void setLooping(bool looping);
+ void setPositionInMsec(uint32_t millisec);
+ void clear();
+ void setRepresentation(dash::mpd::IPeriod *period, dash::mpd::IAdaptationSet *adaptationSet, dash::mpd::IRepresentation *representation);
+ void enqueueRepresentation(dash::mpd::IPeriod *period, dash::mpd::IAdaptationSet *adaptationSet, dash::mpd::IRepresentation *representation);
+
+ void onSegmentDownloaded();
+ void notifyStatistics(int, uint32_t, int, uint32_t);
+ void notifyQualityDownloading (uint32_t);
+ bool canPush();
+ int getBufferLevel();
+ void setAdaptationLogic(libdash::framework::adaptation::IAdaptationLogic *_adaptationLogic);
+ bool isICN();
+ void shouldAbort();
+
+ void setTargetDownloadingTime(double);
+ MediaObject* getSegment();
+ void onBufferStateChanged(BufferType type, uint32_t fillstateInPercent, int maxC);
+
+private:
+ float beta;
+ float drop;
+ buffer::Buffer<MediaObject> *buffer;
+ DASHReceiver *receiver;
+ uint32_t readSegmentCount;
+ IDASHManagerObserver *multimediaStream;
+ bool isRunning;
+ bool icn;
+ double icnAlpha;
+ bool noDecoding;
+
+ libdash::framework::adaptation::IAdaptationLogic *adaptationLogic;
+};
+}
+}
+}
+
+#endif /* LIBDASH_FRAMEWORK_INPUT_DASHMANAGER_H_ */