Searched defs:mHeight (Results 26 - 50 of 127) sorted by relevance

123456

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DStraightenFilter.java48 private int mHeight = 0; field in class:StraightenFilter
97 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
99 mHeight = inputFormat.getHeight();
123 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight,
124 -sinTheta * mWidth - cosTheta * mHeight);
126 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight,
127 sinTheta * mWidth - cosTheta * mHeight);
129 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight,
130 -sinTheta * mWidth + cosTheta * mHeight);
132 Point p3 = new Point(cosTheta * mWidth - sinTheta * mHeight,
[all...]
H A DCropRectFilter.java51 private int mHeight = 0; field in class:CropRectFilter
83 updateSourceRect(mWidth, mHeight);
105 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
121 mHeight = height;
124 Log.e("CropFilter", mWidth + ", " + mHeight + ", " +
126 (float) mYorigin / mHeight + ", " +
128 (float) mOutputHeight / mHeight);
132 (float) mYorigin / mHeight,
134 (float) mOutputHeight / mHeight);
H A DDocumentaryFilter.java40 private int mHeight = 0; field in class:DocumentaryFilter
123 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
125 mHeight = inputFormat.getHeight();
145 if (mWidth > mHeight) {
147 scale[1] = ((float) mHeight) / mWidth;
149 scale[0] = ((float) mWidth) / mHeight;
H A DFisheyeFilter.java49 private int mHeight = 0; field in class:FisheyeFilter
115 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
138 mHeight = height;
146 if (mWidth > mHeight) {
148 scale[1] = ((float) mHeight) / mWidth;
150 scale[0] = ((float) mWidth) / mHeight;
H A DLomoishFilter.java40 private int mHeight = 0; field in class:LomoishFilter
154 if (mWidth > mHeight) {
156 scale[1] = ((float) mHeight) / mWidth;
158 scale[0] = ((float) mWidth) / mHeight;
168 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
187 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
189 mHeight = inputFormat.getHeight();
H A DSharpenFilter.java39 private int mHeight = 0; field in class:SharpenFilter
113 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
129 mHeight = height;
133 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
H A DVignetteFilter.java39 private int mHeight = 0; field in class:VignetteFilter
95 if (mWidth > mHeight) {
97 scale[1] = ((float) mHeight) / mWidth;
99 scale[0] = ((float) mWidth) / mHeight;
137 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
139 mHeight = inputFormat.getHeight();
/frameworks/base/telecomm/java/android/telecom/
H A DCameraCapabilities.java46 private final int mHeight; field in class:CameraCapabilities
60 mHeight = height;
142 return mHeight;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DImageDescriptor.java25 int mHeight; field in class:ImageDescriptor
41 mHeight = 0;
60 d.mHeight = rawData[valueIndex++] & 0xff;
/frameworks/rs/driver/
H A DrsdFrameBufferObj.h40 mHeight = height;
49 uint32_t mHeight; member in class:RsdFrameBufferObj
/frameworks/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h92 uint32_t mWidth, mHeight; member in struct:android::SoftVideoDecoderOMXComponent
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h34 mHeight(height),
42 meta->setInt32(kKeyHeight, mHeight);
88 int mWidth, mHeight; member in class:android::VideoSource
/frameworks/base/core/java/android/hardware/camera2/params/
H A DHighSpeedVideoConfiguration.java57 mHeight = checkArgumentPositive(height, "height must be positive");
59 mSize = new Size(mWidth, mHeight);
78 return mHeight;
136 mHeight == other.mHeight &&
148 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
152 private final int mHeight; field in class:HighSpeedVideoConfiguration
H A DStreamConfiguration.java64 mHeight = checkArgumentPositive(height, "height must be positive");
96 return mHeight;
105 return new Size(mWidth, mHeight);
153 mHeight == other.mHeight &&
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);
169 private final int mHeight; field in class:StreamConfiguration
H A DStreamConfigurationDuration.java59 mHeight = checkArgumentPositive(height, "height must be positive");
91 return mHeight;
100 return new Size(mWidth, mHeight);
132 mHeight == other.mHeight &&
143 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight,
149 private final int mHeight; field in class:StreamConfigurationDuration
H A DMeteringRectangle.java77 private final int mHeight; field in class:MeteringRectangle
95 mHeight = checkArgumentNonnegative(height, "height must be nonnegative");
119 mHeight = checkArgumentNonnegative(dimensions.getHeight(), "height must be nonnegative");
140 mHeight = checkArgumentNonnegative(rect.height(), "rect.height must be nonnegative");
177 return mHeight;
206 return new Size(mWidth, mHeight);
217 return new Rect(mX, mY, mX + mWidth, mY + mHeight);
246 && mHeight == other.mHeight
255 return HashCodeHelpers.hashCode(mX, mY, mWidth, mHeight, mWeigh
[all...]
/frameworks/base/libs/hwui/
H A DLayerCache.h100 mLayer(NULL), mWidth(0), mHeight(0) {
105 mHeight = Layer::computeIdealHeight(layerHeight);
109 mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
132 uint32_t mHeight; member in struct:android::uirenderer::LayerCache::LayerEntry
H A DRenderBuffer.h36 mFormat(format), mWidth(width), mHeight(height), mAllocated(false) {
82 glRenderbufferStorage(GL_RENDERBUFFER, mFormat, mWidth, mHeight);
93 if (isAllocated() && (width != mWidth || height != mHeight)) {
98 mHeight = height;
112 return mHeight;
120 return (uint32_t) ((mWidth * mHeight * formatSize(mFormat)) / 8.0f + 0.5f);
184 uint32_t mHeight; member in struct:android::uirenderer::RenderBuffer
H A DRenderBufferCache.h81 mBuffer(NULL), mWidth(0), mHeight(0) {
85 mBuffer(NULL), mFormat(format), mWidth(width), mHeight(height) {
90 mWidth(buffer->getWidth()), mHeight(buffer->getHeight()) {
116 uint32_t mHeight; member in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
H A DStatefulBaseRenderer.h47 return prepareDirty(0.0f, 0.0f, mWidth, mHeight, opaque);
110 int getHeight() { return mHeight; }
153 int mWidth, mHeight; member in class:android::uirenderer::StatefulBaseRenderer
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java119 mHeight = height;
133 public int getHeight() { return mHeight; }
142 private int mHeight; field in class:ETC1Util.ETC1Texture
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DUsbHid.java36 private final int mHeight; field in class:UsbHid.Multitouch
42 mHeight = height;
64 byte maxYLsb = (byte)(mHeight - 1);
65 byte maxYMsb = (byte)((mHeight - 1) >> 8);
/frameworks/av/include/media/stagefright/
H A DSurfaceMediaSource.h164 int mHeight; member in class:android::SurfaceMediaSource
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h97 int mHeight; member in class:android::BootAnimation
/frameworks/base/graphics/java/android/graphics/
H A DYuvImage.java63 private int mHeight; field in class:YuvImage
105 mHeight = height;
124 Rect wholeImage = new Rect(0, 0, mWidth, mHeight);
179 return mHeight;
186 mHeight * mStrides[0] + top / 2 * mStrides[1]

Completed in 392 milliseconds

123456