Searched refs:nWidth (Results 1 – 4 of 4) sorted by relevance
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/video/ |
D | ImsMediaVideoUtil.cpp | 48 uint32_t ImsMediaVideoUtil::GetResolutionFromSize(uint32_t nWidth, uint32_t nHeight) in GetResolutionFromSize() argument 50 if (nWidth == 128 && nHeight == 96) in GetResolutionFromSize() 52 else if (nWidth == 96 && nHeight == 128) in GetResolutionFromSize() 54 else if (nWidth == 480 && nHeight == 640) in GetResolutionFromSize() 56 else if (nWidth == 640 && nHeight == 480) in GetResolutionFromSize() 58 else if (nWidth == 240 && nHeight == 320) in GetResolutionFromSize() 60 else if (nWidth == 320 && nHeight == 240) in GetResolutionFromSize() 62 else if (nWidth == 144 && nHeight == 176) in GetResolutionFromSize() 64 else if (nWidth == 176 && nHeight == 144) in GetResolutionFromSize() 66 else if (nWidth == 352 && nHeight == 288) in GetResolutionFromSize() [all …]
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/video/nodes/ |
D | IVideoRendererNode.cpp | 234 CheckResolution(codecConfig.nWidth, codecConfig.nHeight); in ProcessData() 241 CheckResolution(codecConfig.nWidth, codecConfig.nHeight); in ProcessData() 672 void IVideoRendererNode::CheckResolution(uint32_t nWidth, uint32_t nHeight) in CheckResolution() argument 674 if ((nWidth != 0 && nWidth != mWidth) || (nHeight != 0 && nHeight != mHeight)) in CheckResolution() 676 IMLOGD4("[CheckResolution] resolution change[%dx%d] to [%dx%d]", mWidth, mHeight, nWidth, in CheckResolution() 678 mWidth = nWidth; in CheckResolution()
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/video/ |
D | ImsMediaVideoUtil.h | 63 uint32_t nWidth; member 193 static uint32_t GetResolutionFromSize(uint32_t nWidth, uint32_t nHeight);
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/video/nodes/ |
D | IVideoRendererNode.h | 87 void CheckResolution(uint32_t nWidth, uint32_t nHeight);
|