Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/
H A Dpts_and_index_conversion.h48 class TimeAndIndexConversion {
50 TimeAndIndexConversion();
51 ~TimeAndIndexConversion() ;
103 std::map<std::string, void(TimeAndIndexConversion::*)(uint32_t)> boxParsers = {
104 {BOX_TYPE_STTS, &TimeAndIndexConversion::ParseStts},
105 {BOX_TYPE_CTTS, &TimeAndIndexConversion::ParseCtts},
106 {BOX_TYPE_HDLR, &TimeAndIndexConversion::ParseHdlr},
107 {BOX_TYPE_MDHD, &TimeAndIndexConversion::ParseMdhd},
108 {BOX_TYPE_STBL, &TimeAndIndexConversion::ParseBox},
109 {BOX_TYPE_MINF, &TimeAndIndexConversion::ParseBox},
[all …]
H A Dpts_and_index_conversion.cpp35 TimeAndIndexConversion::TimeAndIndexConversion() in TimeAndIndexConversion() function in OHOS::Media::TimeAndIndexConversion
40 TimeAndIndexConversion::~TimeAndIndexConversion() in ~TimeAndIndexConversion()
92 void TimeAndIndexConversion::StartParse() in StartParse()
159 bool TimeAndIndexConversion::IsMP4orMOV() in IsMP4orMOV()
174 void TimeAndIndexConversion::ParseMoov(uint32_t boxSize) in ParseMoov()
206 void TimeAndIndexConversion::ParseTrak(uint32_t boxSize) in ParseTrak()
217 void TimeAndIndexConversion::ParseBox(uint32_t boxSize) in ParseBox()
250 void TimeAndIndexConversion::ParseCtts(uint32_t boxSize) in ParseCtts()
287 void TimeAndIndexConversion::ParseStts(uint32_t boxSize) in ParseStts()
323 void TimeAndIndexConversion::ParseHdlr(uint32_t boxSize) in ParseHdlr()
[all …]
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Davmetadatahelper_impl.h33 class TimeAndIndexConversion; variable
63 std::shared_ptr<OHOS::Media::TimeAndIndexConversion> conversion_ { nullptr };
H A Davmetadatahelper_impl.cpp105 conversion_ = std::make_shared<TimeAndIndexConversion>(); in SetSourceForFrameConvert()