Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions libdash/libdash/source/mpd/RepresentationBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,20 +106,20 @@ namespace dash
void SetTag (const std::string& tag);

protected:
std::vector<Descriptor *> framePacking;
std::vector<Descriptor *> audioChannelConfiguration;
std::vector<ContentProtection *> contentProtections;
Descriptor* outputProtection;
std::vector<Descriptor *> essentialProperties;
std::vector<Descriptor *> supplementalProperties;
std::vector<EventStream *> eventStreams;
std::vector<Switching *> switchings;
std::vector<RandomAccess *> randomAccesses;
std::vector<Label *> groupLabels;
std::vector<Label *> labels;
std::vector<ContentPopularityRate *> contentPopularityRates;
std::vector<ProducerReferenceTime *> producerReferenceTimes;
std::vector<Resync *> resyncs;
std::vector<IDescriptor *> framePacking;
std::vector<IDescriptor *> audioChannelConfiguration;
std::vector<IContentProtection *> contentProtections;
IDescriptor* outputProtection;
std::vector<IDescriptor *> essentialProperties;
std::vector<IDescriptor *> supplementalProperties;
std::vector<IEventStream *> eventStreams;
std::vector<ISwitching *> switchings;
std::vector<IRandomAccess *> randomAccesses;
std::vector<ILabel *> groupLabels;
std::vector<ILabel *> labels;
std::vector<IContentPopularityRate *> contentPopularityRates;
std::vector<IProducerReferenceTime *> producerReferenceTimes;
std::vector<IResync *> resyncs;
std::vector<std::string> profiles;
uint32_t width;
uint32_t height;
Expand Down