Home
last modified time | relevance | path

Searched refs:DashList (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/include/mpd_parser/
H A Ddash_mpd_def.h75 DashList<DashSegTimeline *> segTimeline_;
90 DashList<DashSegUrl *> segmentUrl_;
106 DashList<DashDescriptor *> audioChannelConfigurationList_;
111 DashList<DashDescriptor *> contentProtectionList_;
112 DashList<DashDescriptor *> essentialPropertyList_;
135 DashList<DashDescriptor *> roleList_;
165 DashList<DashContentCompInfo *> contentCompList_;
166 DashList<DashRepresentationInfo *> representationList_;
167 DashList<DashDescriptor *> roleList_;
182 DashList<DashAdptSetInfo *> adptSetList_;
[all …]
H A Ddash_mpd_parser.h66 DashList<DashSegTimeline *> &segTmlineList);
71 DashList<DashDescriptor *> &contentProtectionList);
73 DashList<DashDescriptor *> &essentialPropertyList);
75 DashList<DashDescriptor *> &propertyList);
77 DashList<DashSegUrl *> &segUrlList);
79 DashList<DashContentCompInfo *> &contentCompInfoList);
88 void ClearAdaptationSet(DashList<DashAdptSetInfo *> &adptSetInfoList);
89 void ClearContentComp(DashList<DashContentCompInfo *> &contentCompList);
90 void ClearRepresentation(DashList<DashRepresentationInfo *> &representationList);
94 void ClearRoleList(DashList<DashDescriptor *> &roleList);
[all …]
H A Dsidx_box_parser.h29 DashList<std::shared_ptr<SubSegmentIndex>> &subSegIndexTable);
36DashList<std::shared_ptr<SubSegmentIndex>> &subSegIndexTable, uint32_t &currPos);
H A Ddash_mpd_util.h28 void DashAppendBaseUrl(std::string &srcUrl, DashList<std::string> baseUrlList);
47 bool DashStreamIsHdr(DashList<DashDescriptor*> essentialPropertyList);
H A Ddash_period_manager.h45 void ParseAdptSetList(DashList<DashAdptSetInfo *> adptSetList);
47 …void ParseAdptSetTypeByComp(DashList<DashContentCompInfo *> contentCompList, DashAdptSetInfo *adpt…
H A Ddash_mpd_manager.h46 const DashList<DashPeriodInfo *> &GetPeriods() const;
H A Ddash_adpt_set_manager.h54 DashList<DashRepresentationInfo *> representationList_;
H A Dmpd_parser_def.h31 using DashList = std::list<T, Alloc>; variable
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/mpd_parser/
H A Ddash_period_manager.cpp31 static bool ContainType(DashList<DashContentCompInfo *> contentComp, const std::string &pattern) in ContainType()
34 …for (DashList<DashContentCompInfo *>::iterator it = contentComp.begin(); it != contentComp.end(); … in ContainType()
47 DashList<DashRepresentationInfo *> representationList = adptSetInfo->representationList_; in GetMimeTypeFromRepresentation()
84 DashList<DashAdptSetInfo *> adptSets = this->periodInfo_->adptSetList_; in Init()
111 void DashPeriodManager::ParseAdptSetList(DashList<DashAdptSetInfo *> adptSetList) in ParseAdptSetList()
113 …for (DashList<DashAdptSetInfo *>::iterator it = adptSetList.begin(); it != adptSetList.end(); ++it… in ParseAdptSetList()
119 DashList<DashContentCompInfo *> contentCompList((*it)->contentCompList_); in ParseAdptSetList()
172 void DashPeriodManager::ParseAdptSetTypeByComp(DashList<DashContentCompInfo *> contentCompList, in ParseAdptSetTypeByComp()
H A Ddash_adpt_set_manager.cpp145 for (DashList<DashRepresentationInfo *>::iterator curRep = representationList_.begin(); in GetBandwidths()
175 DashList<DashRepresentationInfo *>::iterator it = this->representationList_.begin(); in GetRepresentationByBandwidth()
191 DashList<DashRepresentationInfo *>::iterator it = this->representationList_.end(); in GetHighRepresentation()
201 DashList<DashRepresentationInfo *>::iterator it = this->representationList_.begin(); in GetLowRepresentation()
207 DashList<DashRepresentationInfo *> representationList = adptSetInfo->representationList_; in GetMimeTypeFromRepresentation()
H A Ddash_mpd_manager.cpp41 const DashList<DashPeriodInfo *> &DashMpdManager::GetPeriods() const in GetPeriods()
61 DashList<DashPeriodInfo *> periods = this->mpdInfo_->periodInfoList_; in GetNextPeriod()
62 for (DashList<DashPeriodInfo *>::iterator it = periods.begin(); it != periods.end(); ++it) { in GetNextPeriod()
169 for (DashList<DashPeriodInfo *>::iterator it = this->mpdInfo_->periodInfoList_.begin(); in GetDuration()
H A Ddash_mpd_parser.cpp122 DashList<std::shared_ptr<XmlElement>> adptSetElementList; in GetPeriodElement()
288 DashList<std::shared_ptr<XmlElement>> representationElementList; in GetAdaptationSetElement()
383 DashList<DashSegUrl *> &segUrlList) in ParseSegmentUrl()
787 DashList<DashDescriptor *> &contentProtectionList) in ParseContentProtection()
863 DashList<DashDescriptor *> &propertyList) in ParseAudioChannelConfiguration()
885 DashList<DashSegTimeline *> &segTmlineList) in ParseSegmentTimeline()
1012 DashList<std::shared_ptr<XmlElement>> periodElementList; in GetMpdElement()
1172 void DashMpdParser::ClearAdaptationSet(DashList<DashAdptSetInfo *> &adptSetInfoList) in ClearAdaptationSet()
1193 void DashMpdParser::ClearContentComp(DashList<DashContentCompInfo *> &contentCompList) in ClearContentComp()
1261 static void ClearPropertyList(DashList<DashDescriptor *> &propertyList) in ClearPropertyList()
[all …]
H A Dsidx_box_parser.cpp59 DashList<std::shared_ptr<SubSegmentIndex>> &subSegIndexTable) in ParseSidxBox()
84DashList<std::shared_ptr<SubSegmentIndex>> &subSegIndexTable, in BuildSubSegmentIndexes()
H A Ddash_mpd_util.cpp49 void DashAppendBaseUrl(std::string &srcUrl, DashList<std::string> baseUrlList) in DashAppendBaseUrl()
238 bool DashStreamIsHdr(DashList<DashDescriptor*> essentialPropertyList) in DashStreamIsHdr()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/
H A Ddash_mpd_downloader.h200 int GetSegCountFromTimeline(DashList<DashSegTimeline *>::iterator &it,
201 const DashList<DashSegTimeline *>::iterator &end,
221 void GetDrmInfos(const std::string &drmId, const DashList<DashDescriptor *> &contentProtections,
H A Ddash_mpd_downloader.cpp175 for (DashList<DashRepresentationInfo *>::iterator it = adptSet->representationList_.begin(); in GetRepresentationFromAdptSet()
569 DashList<DashAdptSetInfo*> adptSetList = periodInfo->adptSetList_; in GetAdpDrmInfos()
579 DashList<DashRepresentationInfo*> representationList = adptSetInfo->representationList_; in GetAdpDrmInfos()
642 void DashMpdDownloader::GetDrmInfos(const std::string &drmId, const DashList<DashDescriptor *> &con… in GetDrmInfos()
1650 int DashMpdDownloader::GetSegCountFromTimeline(DashList<DashSegTimeline *>::iterator &it, in GetSegCountFromTimeline()
1651 const DashList<DashSegTimeline *>::iterator &end, in GetSegCountFromTimeline()
1775 DashList<unsigned int> &durationList) in GetSegDurationFromTimeline()
/ohos5.0/foundation/multimedia/av_codec/test/unittest/dash_test/
H A Ddash_mpd_parser_unit_test.cpp102 DashList<DashAdptSetInfo*> adptSetList = first->adptSetList_;
132 DashList<DashAdptSetInfo*> adptSetList = first->adptSetList_;