Home
last modified time | relevance | path

Searched refs:contentCompList (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/mpd_parser/
H A Ddash_period_manager.cpp119 DashList<DashContentCompInfo *> contentCompList((*it)->contentCompList_); in ParseAdptSetList() local
131 } else if (!contentCompList.empty()) { in ParseAdptSetList()
134 ParseAdptSetTypeByComp(contentCompList, *it); in ParseAdptSetList()
172 void DashPeriodManager::ParseAdptSetTypeByComp(DashList<DashContentCompInfo *> contentCompList, in ParseAdptSetTypeByComp() argument
175 if (ContainType(contentCompList, VIDEO_MIME_TYPE)) { in ParseAdptSetTypeByComp()
177 } else if (ContainType(contentCompList, AUDIO_MIME_TYPE)) { in ParseAdptSetTypeByComp()
179 } else if (ContainType(contentCompList, SUBTITLE_MIME_APPLICATION) || in ParseAdptSetTypeByComp()
180 ContainType(contentCompList, SUBTITLE_MIME_TEXT)) { in ParseAdptSetTypeByComp()
183 …subtitleMimeType_ = ((ContainType(contentCompList, SUBTITLE_MIME_APPLICATION)) ? SUBTITLE_MIME_APP… in ParseAdptSetTypeByComp()
185 } else if (!ContainType(contentCompList, subtitleMimeType_)) { in ParseAdptSetTypeByComp()
H A Ddash_mpd_parser.cpp1193 void DashMpdParser::ClearContentComp(DashList<DashContentCompInfo *> &contentCompList) in ClearContentComp() argument
1195 while (contentCompList.size() > 0) { in ClearContentComp()
1196 DashContentCompInfo *contentCompInfo = contentCompList.front(); in ClearContentComp()
1203 contentCompList.pop_front(); in ClearContentComp()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/include/mpd_parser/
H A Ddash_period_manager.h47 …void ParseAdptSetTypeByComp(DashList<DashContentCompInfo *> contentCompList, DashAdptSetInfo *adpt…
H A Ddash_mpd_parser.h89 void ClearContentComp(DashList<DashContentCompInfo *> &contentCompList);