Searched defs:mHeight (Results 1 - 25 of 90) sorted by relevance

1234

/frameworks/av/include/media/stagefright/
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
H A DColorConverter.h58 size_t mWidth, mHeight; member in struct:android::ColorConverter::BitmapParams
H A DYUVImage.h71 int32_t height() const {return mHeight;}
121 int32_t mHeight; member in class:android::YUVImage
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewRenderer.h56 size_t mWidth, mHeight; member in class:android::PreviewRenderer
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.h52 int32_t mHeight; member in struct:android::SoftVPX
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureSource.java43 private int mHeight; field in class:GLTextureSource
81 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DConvolve3x3.java37 private int mHeight; field in class:Convolve3x3
46 mHeight = mInPixelsAllocation.getType().getY();
62 mScript.set_gHeight(mHeight);
H A DConvolve5x5.java37 private int mHeight; field in class:Convolve5x5
46 mHeight = mInPixelsAllocation.getType().getY();
76 mScript.set_gHeight(mHeight);
H A DGroupTest.java39 private int mHeight; field in class:GroupTest
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DConvolve3x3.java29 private int mHeight; field in class:Convolve3x3
38 mHeight = mInPixelsAllocation.getType().getY();
54 mScript.set_gHeight(mHeight);
H A DConvolve5x5.java29 private int mHeight; field in class:Convolve5x5
38 mHeight = mInPixelsAllocation.getType().getY();
68 mScript.set_gHeight(mHeight);
H A DGroupTest.java32 private int mHeight; field in class:GroupTest
42 mHeight = mInPixelsAllocation.getType().getY();
61 tb.setY(mHeight);
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h160 uint32_t mHeight; member in class:android::ScreenshotClient
/frameworks/av/include/private/media/
H A DVideoFrame.h91 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0) {}
95 mHeight = copy.mHeight;
118 uint32_t mHeight; member in class:android::VideoFrame
/frameworks/av/media/libstagefright/include/
H A DSoftwareRenderer.h48 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DShape.java30 private float mHeight; field in class:Shape
43 return mHeight;
71 if (mWidth != width || mHeight != height) {
73 mHeight = height;
/frameworks/base/libs/hwui/
H A DLayerCache.h110 mLayer(NULL), mWidth(0), mHeight(0) {
115 mHeight = uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
119 mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
124 return mHeight < rhs.mHeight;
130 return mWidth == rhs.mWidth && mHeight == rhs.mHeight;
135 uint32_t mHeight; member in struct:android::uirenderer::LayerCache::LayerEntry
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRotateFilter.java50 private int mHeight = 0; field in class:RotateFilter
100 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
102 mHeight = inputFormat.getHeight();
104 mOutputHeight = mHeight;
138 mOutputWidth = mHeight;
H A DStraightenFilter.java53 private int mHeight = 0; field in class:StraightenFilter
102 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
104 mHeight = inputFormat.getHeight();
128 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight,
129 -sinTheta * mWidth - cosTheta * mHeight);
131 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight,
132 sinTheta * mWidth - cosTheta * mHeight);
134 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight,
135 -sinTheta * mWidth + cosTheta * mHeight);
137 Point p3 = new Point(cosTheta * mWidth - sinTheta * mHeight,
[all...]
H A DCropRectFilter.java56 private int mHeight = 0; field in class:CropRectFilter
88 updateSourceRect(mWidth, mHeight);
110 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
126 mHeight = height;
129 Log.e("CropFilter", mWidth + ", " + mHeight + ", " +
131 (float) mYorigin / mHeight + ", " +
133 (float) mOutputHeight / mHeight);
137 (float) mYorigin / mHeight,
139 (float) mOutputHeight / mHeight);
H A DDocumentaryFilter.java43 private int mHeight = 0; field in class:DocumentaryFilter
126 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
128 mHeight = inputFormat.getHeight();
148 if (mWidth > mHeight) {
150 scale[1] = ((float) mHeight) / mWidth;
152 scale[0] = ((float) mWidth) / mHeight;
/frameworks/rs/driver/
H A DrsdFrameBufferObj.h40 mHeight = height;
49 uint32_t mHeight; member in class:RsdFrameBufferObj
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.h64 int32_t mWidth, mHeight; member in struct:android::SoftMPEG4
/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/media/java/android/media/videoeditor/
H A DTransitionAlpha.java58 private int mHeight; field in class:TransitionAlpha
105 mHeight = dbo.outHeight;
131 while (tmp < mHeight) {
164 return mHeight;

Completed in 1196 milliseconds

1234