Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing problem with Representation Base #43

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 14 additions & 14 deletions libdash/libdash/source/mpd/RepresentationBase.h
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