From 6358e611e09092ad121f4a85e548c0d9411ab09f Mon Sep 17 00:00:00 2001 From: "Angelo Mantellini (manangel)" Date: Tue, 6 Jun 2017 14:22:24 +0200 Subject: update applications to use new version libicnet Change-Id: I4b2381a13cf64488baf83056fc1fa11b359d1147 Signed-off-by: Angelo Mantellini (manangel) --- src/libdash/source/mpd/RepresentationBase.h | 89 ----------------------------- 1 file changed, 89 deletions(-) delete mode 100644 src/libdash/source/mpd/RepresentationBase.h (limited to 'src/libdash/source/mpd/RepresentationBase.h') diff --git a/src/libdash/source/mpd/RepresentationBase.h b/src/libdash/source/mpd/RepresentationBase.h deleted file mode 100644 index bb7fd287..00000000 --- a/src/libdash/source/mpd/RepresentationBase.h +++ /dev/null @@ -1,89 +0,0 @@ -/* - * RepresentationBase.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 REPRESENTATIONBASE_H_ -#define REPRESENTATIONBASE_H_ - -#include "config.h" - -#include "IRepresentationBase.h" -#include "Descriptor.h" -#include "../helpers/String.h" -#include "AbstractMPDElement.h" - -namespace dash -{ - namespace mpd - { - class RepresentationBase : public virtual IRepresentationBase, public AbstractMPDElement - { - public: - RepresentationBase (); - virtual ~RepresentationBase (); - - const std::vector& GetFramePacking () const; - const std::vector& GetAudioChannelConfiguration () const; - const std::vector& GetContentProtection () const; - const std::vector& GetProfiles () const; - uint32_t GetWidth () const; - uint32_t GetHeight () const; - std::string GetSar () const; - std::string GetFrameRate () const; - std::string GetAudioSamplingRate () const; - std::string GetMimeType () const; - const std::vector& GetSegmentProfiles () const; - const std::vector& GetCodecs () const; - double GetMaximumSAPPeriod () const; - uint8_t GetStartWithSAP () const; - double GetMaxPlayoutRate () const; - bool HasCodingDependency () const; - std::string GetScanType () const; - - void AddFramePacking (Descriptor *framePacking); - void AddAudioChannelConfiguration (Descriptor *audioChannelConfiguration); - void AddContentProtection (Descriptor *contentProtection); - void SetProfiles (const std::string& profiles); - void SetWidth (uint32_t width); - void SetHeight (uint32_t height); - void SetSar (const std::string& sar); - void SetFrameRate (const std::string& frameRate); - void SetAudioSamplingRate (const std::string& audioSamplingRate); - void SetMimeType (const std::string& mimeType); - void SetSegmentProfiles (const std::string& segmentProfiles); - void SetCodecs (const std::string& codecs); - void SetMaximumSAPPeriod (double maximumSAPPeroid); - void SetStartWithSAP (uint8_t startWithSAP); - void SetMaxPlayoutRate (double maxPlayoutRate); - void SetCodingDependency (bool codingDependency); - void SetScanType (const std::string& scanType); - - protected: - std::vector framePacking; - std::vector audioChannelConfiguration; - std::vector contentProtection; - std::vector profiles; - uint32_t width; - uint32_t height; - std::string sar; - std::string frameRate; - std::string audioSamplingRate; - std::string mimeType; - std::vector segmentProfiles; - std::vector codecs; - double maximumSAPPeriod; - uint8_t startWithSAP; - double maxPlayoutRate; - bool codingDependency; - std::string scanType; - }; - } -} -#endif /* REPRESENTATIONBASE_H_ */ -- cgit 1.2.3-korg