Searched refs:mHeight (Results 26 - 50 of 109) sorted by relevance

12345

/frameworks/av/include/media/stagefright/
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
H A DYUVImage.h71 int32_t height() const {return mHeight;}
121 int32_t mHeight; member in class:android::YUVImage
H A DColorConverter.h58 size_t mWidth, mHeight; member in struct:android::ColorConverter::BitmapParams
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewRenderer.h56 size_t mWidth, mHeight; member in class:android::PreviewRenderer
H A DNativeWindowRenderer.cpp323 input->mWidth, input->mHeight);
333 input->mWidth, input->mHeight);
587 CHECK(meta->findInt32(kKeyHeight, &mHeight));
592 mHeight = bottom - top + 1;
596 // (mWidth and mHeight are the _rotated_ source rectangle).
604 mWidth = mHeight;
605 mHeight = tmp;
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.h52 int32_t mHeight; member in struct:android::SoftVPX
H A DSoftVPX.cpp49 mHeight(240),
79 def.format.video.nFrameHeight = mHeight;
104 def.format.video.nFrameHeight = mHeight;
272 if (width != mWidth || height != mHeight) {
274 mHeight = height;
360 def->format.video.nFrameHeight = mHeight;
366 def->format.video.nFrameHeight = mHeight;
/frameworks/av/media/libstagefright/include/
H A DSoftwareRenderer.h48 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
/frameworks/base/libs/hwui/
H A DShapeCache.h152 mHeight = *(uint32_t*) &height;
159 mHeight = 0;
167 LTE_INT(mHeight) {
180 uint32_t mHeight; member in struct:android::uirenderer::RoundRectShapeCacheEntry
211 mHeight = *(uint32_t*) &height;
215 mWidth = mHeight = 0;
221 LTE_INT(mHeight) {
230 uint32_t mHeight; member in struct:android::uirenderer::OvalShapeCacheEntry
237 mHeight = *(uint32_t*) &height;
241 mWidth = mHeight
256 uint32_t mHeight; member in struct:android::uirenderer::RectShapeCacheEntry
296 uint32_t mHeight; member in struct:android::uirenderer::ArcShapeCacheEntry
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java50 private int mHeight = 0; field in class:GrainFilter
140 mHeight = height;
144 mGrainProgram.setHostValue("stepY", 0.5f / mHeight);
180 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
H A DRedEyeFilter.java61 private int mHeight = 0; field in class:RedEyeFilter
132 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
134 mHeight = inputFormat.getHeight();
162 int bitmapHeight = mHeight / 2;
H A DAutoFixFilter.java155 private int mHeight = 0; field in class:AutoFixFilter
252 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
254 mHeight = inputFormat.getHeight();
255 createHistogramFrame(context, mWidth, mHeight, input.getInts());
/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp46 CHECK(meta->findInt32(kKeyHeight, &mHeight));
53 mCropBottom = mHeight - 1;
162 mWidth, mHeight,
169 const uint8_t *src_u = (const uint8_t *)data + mWidth * mHeight;
170 const uint8_t *src_v = src_u + (mWidth / 2 * mHeight / 2);
202 (const uint8_t *)data + mWidth * (mHeight - mCropTop / 2);
/frameworks/av/services/camera/libcameraservice/
H A DFakeCamera.cpp326 mHeight = height;
356 mTmpRgb16Buffer = new uint16_t[mWidth * mHeight];
359 convert_rgb16_to_yuv420((uint8_t*)mTmpRgb16Buffer, buffer, mWidth, mHeight);
367 square_ystop = min(mHeight, y+size);
369 shadow_ystop = min(mHeight, y+size+(size/4));
402 for(int y=0;y<mHeight;y++) {
427 snprintf(buffer, 255, " width x height (%d x %d), counter (%d), check x-y coordinate(%d, %d)\n", mWidth, mHeight, mCounter, mCheckX, mCheckY);
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DRgbPlayerActivity.java74 private int mHeight = 0; field in class:RgbPlayerActivity.RgbView
122 mHeight = Integer.parseInt(prop.getProperty("height"));
130 mBytesPerImage = mHeight * mBytesPerLine;
132 mBitmap = Bitmap.createBitmap(mWidth, mHeight,
194 for (int i = mHeight - 1; i >= 0; i--) {
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java91 private int mHeight; field in class:SurfaceTextureSource
159 mOutputFormat = ImageFormat.create(mWidth, mHeight,
254 mOutputFormat.setDimensions(mWidth, mHeight);
H A DCameraSource.java63 private int mHeight = 240; field in class:CameraSource
127 mOutputFormat = ImageFormat.create(mWidth, mHeight,
261 int closestSize[] = findClosestSize(mWidth, mHeight, mCameraParameters);
263 mHeight = closestSize[1];
264 mCameraParameters.setPreviewSize(mWidth, mHeight);
276 params.setPreviewSize(mWidth, mHeight);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java119 private int mHeight = 0; field in class:MediaEncoderFilter
250 if (mWidth > 0 && mHeight > 0) {
251 mMediaRecorder.setVideoSize(mWidth, mHeight);
256 mMediaRecorder.setVideoSize(mWidth, mHeight);
306 boolean widthHeightSpecified = mWidth > 0 && mHeight > 0;
314 height = mHeight;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DDisplayHardware.h108 return Rect(mWidth, mHeight);
127 int mHeight; member in class:android::DisplayHardware
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp32 mHeight = 0;
148 RSD_CALL_GL(glViewport, 0, 0, mWidth, mHeight);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp70 mHeight(288),
74 mCropBottom(mHeight - 1),
121 def.format.video.nFrameHeight = mHeight;
149 def.format.video.nFrameHeight = mHeight;
371 mHandle, vol_data, &vol_size, 1, mWidth, mHeight, mode);
460 outHeader->nFilledLen = (mWidth * mHeight * 3) / 2;
506 if (buf_width != mWidth || buf_height != mHeight) {
508 mHeight = buf_height;
520 mHandle, vol_data, &vol_size, 1, mWidth, mHeight,
573 def->format.video.nFrameHeight = mHeight;
[all...]
H A DSoftMPEG4.h64 int32_t mWidth, mHeight; member in struct:android::SoftMPEG4
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.cpp68 mHeight(240),
69 mPictureSize(mWidth * mHeight * 3 / 2),
73 mCropHeight(mHeight),
121 def.format.video.nFrameHeight = mHeight;
146 def.format.video.nFrameHeight = mHeight;
412 if (mWidth != info->picWidth || mHeight != info->picHeight) {
414 mHeight = info->picHeight;
415 mPictureSize = mWidth * mHeight * 3 / 2;
417 mCropHeight = mHeight;
540 def->format.video.nFrameHeight = mHeight;
[all...]
H A DSoftAVC.h68 uint32_t mWidth, mHeight, mPictureSize; member in struct:android::SoftAVC
/frameworks/av/media/libstagefright/yuv/
H A DYUVImage.cpp29 mHeight = height;
42 mHeight = height;
63 int32_t numberOfPixels = mWidth * mHeight;
160 y >= 0 && y < mHeight);
392 fprintf(fp, "%d %d\n", mWidth, mHeight);
394 for (int32_t y = 0; y < mHeight; ++y) {

Completed in 315 milliseconds

12345