Searched refs:videoSar (Results 1 – 1 of 1) sorted by relevance
1852 double videoSar; in GetSarVideoWidth() local1853 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() local1865 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() local2424 height = (videoSar > 1) ? static_cast<int32_t>(height / videoSar) : height; in HandleResolutionChangeEvent()[all …]