Home
last modified time | relevance | path

Searched refs:segListInfo (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_mpd_parser.cpp494 DashSegListInfo **segListInfo) in ParseSegmentList() argument
496 if (segListInfo == nullptr) { in ParseSegmentList()
525 *segListInfo = segList; in ParseSegmentList()
1145 void DashMpdParser::FreeSegmentList(DashSegListInfo *segListInfo) in FreeSegmentList() argument
1147 if (segListInfo != nullptr) { in FreeSegmentList()
1148 ClearMultSegBase(&segListInfo->multSegBaseInfo_); in FreeSegmentList()
1150 while (segListInfo->segmentUrl_.size() > 0) { in FreeSegmentList()
1151 DashSegUrl *segUrl = segListInfo->segmentUrl_.front(); in FreeSegmentList()
1156 segListInfo->segmentUrl_.pop_front(); in FreeSegmentList()
1159 delete segListInfo; in FreeSegmentList()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/include/mpd_parser/
H A Ddash_mpd_parser.h60 DashSegListInfo **segListInfo);
86 void FreeSegmentList(DashSegListInfo *segListInfo);
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/
H A Ddash_mpd_downloader.cpp1703 DashSegmentInitValue DashMpdDownloader::GetSegmentsWithSegList(const DashSegListInfo *segListInfo, in GetSegmentsWithSegList() argument
1712 if (segListInfo->multSegBaseInfo_.segBaseInfo_.timeScale_ != 0) { in GetSegmentsWithSegList()
1713 timescale = segListInfo->multSegBaseInfo_.segBaseInfo_.timeScale_; in GetSegmentsWithSegList()
1716 …unsigned int segDuration = (static_cast<uint64_t>(segListInfo->multSegBaseInfo_.duration_) * S_2_M… in GetSegmentsWithSegList()
1717 …GetSegDurationFromTimeline(streamDesc->duration_, timescale, &segListInfo->multSegBaseInfo_, durat… in GetSegmentsWithSegList()
1719 std::list<DashSegUrl*> segUrlList = segListInfo->segmentUrl_; in GetSegmentsWithSegList()
H A Ddash_mpd_downloader.h196 …DashSegmentInitValue GetSegmentsWithSegList(const DashSegListInfo *segListInfo, const std::string …