Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/player/
H A Dhiplayer_impl.cpp1852 double videoSar; in GetSarVideoWidth() local
1853 bool ret = trackInfo->GetData(Tag::VIDEO_SAR, videoSar); in GetSarVideoWidth()
1854 if (ret && videoSar < 1) { in GetSarVideoWidth()
1855 width = static_cast<int32_t>(width * videoSar); in GetSarVideoWidth()
1864 double videoSar; in GetSarVideoHeight() local
1865 bool ret = trackInfo->GetData(Tag::VIDEO_SAR, videoSar); in GetSarVideoHeight()
1866 if (ret && videoSar > 1) { in GetSarVideoHeight()
1867 height = static_cast<int32_t>(height / videoSar); in GetSarVideoHeight()
2421 double videoSar; in HandleResolutionChangeEvent() local
2424 height = (videoSar > 1) ? static_cast<int32_t>(height / videoSar) : height; in HandleResolutionChangeEvent()
[all …]