Home | History | Annotate | Download | only in java

Lines Matching refs:ow

85         int ow = mOWidth;
90 ow = w;
99 ow = Math.max(ow, oh);
100 oh = ow * h / w;
102 oh = Math.max(ow, oh);
103 ow = oh * w / h;
106 ow = (ow / 4) * 4; // ensure width is multiply of 4
107 return ImageFormat.create(ow, oh,
122 int ow = outputFormat.getWidth();
124 checkOutputDimensions(ow, oh);
125 mProgram.setHostValue("pix_stride", 1.0f / ow);
129 tempFrameFormat.setDimensions(ow / 4, oh);