aboutsummaryrefslogtreecommitdiffstats
path: root/MPD/RepresentationStreamFactory.h
diff options
context:
space:
mode:
authorLuca Muscariello <lumuscar+fdio@cisco.com>2017-06-23 14:51:19 +0000
committerGerrit Code Review <gerrit@fd.io>2017-06-23 14:51:19 +0000
commitea99c36cadfab26fe4bf523931f87132c01a54a2 (patch)
tree13fc8ff2f6072add96f987a1a68a15c22d68d911 /MPD/RepresentationStreamFactory.h
parente207b82a2b7e70e2700cf1c4237a2e819c655809 (diff)
parenta644414fd2c3a3f7f41e716b6875a78981e4cfe1 (diff)
Merge "adding mpd live handling + automatic mpd fetching" into viper/master
Diffstat (limited to 'MPD/RepresentationStreamFactory.h')
-rw-r--r--MPD/RepresentationStreamFactory.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/MPD/RepresentationStreamFactory.h b/MPD/RepresentationStreamFactory.h
index 22c70b96..e3eb137c 100644
--- a/MPD/RepresentationStreamFactory.h
+++ b/MPD/RepresentationStreamFactory.h
@@ -12,6 +12,8 @@
#ifndef LIBDASH_FRAMEWORK_MPD_RERPRESENTATIONSTREAMFACTORY_H_
#define LIBDASH_FRAMEWORK_MPD_RERPRESENTATIONSTREAMFACTORY_H_
+
+#include "../MPD/MPDWrapper.h"
#include "IRepresentationStream.h"
#include "SingleMediaSegmentStream.h"
#include "SegmentListStream.h"
@@ -27,8 +29,9 @@ namespace mpd
class RepresentationStreamFactory
{
public:
- static IRepresentationStream* create(libdash::framework::mpd::RepresentationStreamType type, dash::mpd::IMPD *mpd, dash::mpd::IPeriod *period,
- dash::mpd::IAdaptationSet *adaptationSet, dash::mpd::IRepresentation *representation);
+ static IRepresentationStream* create(viper::managers::StreamType streamType, libdash::framework::mpd::RepresentationStreamType type, libdash::framework::mpd::MPDWrapper *mpdWrapper, dash::mpd::IPeriod *period,
+ dash::mpd::IAdaptationSet *adaptationSet, dash::mpd::IRepresentation *representation, dash::mpd::IMPD* mpd = NULL);
+// static IRepresentationStream* create(viper::managers::StreamType streamType, libdash::framework::mpd::RepresentationStreamType type, dash::mpd::MPDWrapper *mpdWrapper);
};
}