aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/include/IContentComponent.h
diff options
context:
space:
mode:
authorAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-06 14:22:24 +0200
committerAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-07 15:01:28 +0200
commit6358e611e09092ad121f4a85e548c0d9411ab09f (patch)
tree1e9ac163ce10ab44402dcce1566b7920afbe1bf1 /src/libdash/include/IContentComponent.h
parentdca773280df13ce3ecc6d306dffd603715cf25a5 (diff)
update applications to use new version libicnet
Change-Id: I4b2381a13cf64488baf83056fc1fa11b359d1147 Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
Diffstat (limited to 'src/libdash/include/IContentComponent.h')
-rw-r--r--src/libdash/include/IContentComponent.h83
1 files changed, 0 insertions, 83 deletions
diff --git a/src/libdash/include/IContentComponent.h b/src/libdash/include/IContentComponent.h
deleted file mode 100644
index 9f3be97f..00000000
--- a/src/libdash/include/IContentComponent.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/**
- * @class dash::mpd::IContentComponent
- * @brief This interface is needed for accessing the attributes and elements of the <b><tt>ContentComponent</tt></b> element
- * as specified in <em>ISO/IEC 23009-1, Part 1, 2012</em>, section 5.3.4.2, table 6
- * @details Each Adaptation Set contains one or more media content components. The properties of each media content
- * component are described by a <b><tt>ContentComponent</tt></b> element or may be described directly on the <b><tt>AdaptationSet</tt></b> element
- * if only one media content component is present in the Adaptation Set. <b><tt>ContentComponent</tt></b> elements are contained in an <b><tt>AdaptationSet</tt></b> element.
- * @see dash::mpd::IMPDElement dash::mpd::IDescriptor dash::mpd::IAdaptationSet
- *
- * @author bitmovin Softwareentwicklung OG \n
- * Email: libdash-dev@vicky.bitmovin.net
- * @version 2.1
- * @date 2013
- * @copyright bitmovin Softwareentwicklung OG, All Rights Reserved \n\n
- * This source code and its use and distribution, is subject to the terms
- * and conditions of the applicable license agreement.
- */
-
-#ifndef ICONTENTCOMPONENT_H_
-#define ICONTENTCOMPONENT_H_
-
-#include "config.h"
-
-#include "IMPDElement.h"
-#include "IDescriptor.h"
-
-namespace dash
-{
- namespace mpd
- {
- class IContentComponent : public virtual IMPDElement
- {
- public:
- virtual ~IContentComponent(){}
-
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetAccessibility()
- */
- virtual const std::vector<IDescriptor *>& GetAccessibility () const = 0;
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetRole()
- */
- virtual const std::vector<IDescriptor *>& GetRole () const = 0;
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetRating()
- */
- virtual const std::vector<IDescriptor *>& GetRating () const = 0;
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetViewpoint()
- */
- virtual const std::vector<IDescriptor *>& GetViewpoint () const = 0;
-
- /**
- * Returns an unsigned integer that specifies an identifier for this media component.
- * The attribute shall be unique in the scope of the containing Adaptation Set.
- * @return an unsigned integer
- */
- virtual uint32_t GetId () const = 0;
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetLang()
- */
- virtual const std::string& GetLang () const = 0;
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetContentType()
- */
- virtual const std::string& GetContentType () const = 0;
-
- /**
- * @copydoc dash::mpd::IAdaptationSet::GetPar()
- */
- virtual const std::string& GetPar () const = 0;
-
- };
- }
-}
-
-#endif /* ICONTENTCOMPONENT_H_ */ \ No newline at end of file