| 28 | #include <shellscalingapi.h> |
| 29 | |
| 30 | void CVideoProcessor::GetVideoSize(long& width, long& height) |
| 31 | { |
| 32 | if (m_iRotation == 90 || m_iRotation == 270) { |
| 33 | width = m_srcRectHeight; |
| 34 | height = m_srcRectWidth; |
| 35 | } else { |
| 36 | width = m_srcRectWidth; |
| 37 | height = m_srcRectHeight; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | void CVideoProcessor::GetAspectRatio(long& aspectX, long& aspectY) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected