Home
last modified time | relevance | path

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

/external/opencore/codecs_v2/utilities/colorconvert/src/
Dcczoomrotation16.cpp948 int32 tempw, temph; in cc16ZoomIn() local
961 tempw = (3 * src_width) >> 2; in cc16ZoomIn()
964 if (dst_width == tempw && dst_height == temph && !(src_width&3)) in cc16ZoomIn()
982 tempw = (5 * src_width) / 4; in cc16ZoomIn()
986 if (dst_width == tempw && dst_height == temph && !(src_width&3)) in cc16ZoomIn()
992 tempw = (4 * src_width) / 3; in cc16ZoomIn()
994 if (dst_width == tempw && dst_height == temph && !(src_width&3)) in cc16ZoomIn()
1000 tempw = (15 * src_width) / 8; in cc16ZoomIn()
1003 if (dst_width == tempw && dst_height == temph && !(src_width&7)) in cc16ZoomIn()