HomeSort by relevance Sort by last modified time
    Searched refs:frameHeight (Results 1 - 25 of 70) sorted by null

1 2 3

  /hardware/qcom/camera/QCamera2/HAL/tsMakeuplib/include/
ts_makeup_image.h 27 int frameHeight; //NV21 Frame height. MUST > 0.
38 int frameHeight; //NV21 Frame height. MUST > 0.
  /hardware/qcom/camera/msmcobalt/QCamera2/HAL/tsMakeuplib/include/
ts_makeup_image.h 27 int frameHeight; //NV21 Frame height. MUST > 0.
38 int frameHeight; //NV21 Frame height. MUST > 0.
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleButtonsLayout.java 69 final int frameHeight = mCircleView.getMeasuredHeight();
70 final int minBound = Math.min(frameWidth, frameHeight);
78 resetAddParams.bottomMargin += (frameHeight - frameWidth) / 2;
86 labelParams.topMargin += (frameHeight-frameWidth)/2;
142 int y = frameHeight / 2 - labelParams.topMargin;
  /external/opencv3/modules/videoio/src/
cap_pvapi.cpp 100 bool resizeCaptureFrame (int frameWidth, int frameHeight);
187 tPvUint32 frameWidth, frameHeight;
191 PvAttrUint32Get(Camera.Handle, "Height", &frameHeight);
203 resizeCaptureFrame(frameWidth, frameHeight);
519 bool CvCaptureCAM_PvAPI::resizeCaptureFrame (int frameWidth, int frameHeight)
548 if ((frameHeight < 0) || ((tPvUint32)frameHeight > sensorHeight))
550 frameHeight = sensorHeight;
554 if (PvAttrUint32Set(Camera.Handle, "Height", frameHeight) != ePvErrSuccess)
570 frame = cvCreateImage(cvSize((int)frameWidth, (int)frameHeight), IPL_DEPTH_8U, 1)
    [all...]
cap_dc1394_v2.cpp 226 int frameWidth, frameHeight;
289 frameHeight = 480;
367 frameHeight = (int)height;
371 if (userMode == -1 && (frameWidth > 0 || frameHeight > 0))
387 if ((int)width == frameWidth || (int)height == frameHeight)
664 return frameWidth ? frameWidth : frameHeight*4 / 3;
666 return frameHeight ? frameHeight : frameWidth*3 / 4;
713 frameHeight = 0;
719 frameHeight = cvRound(value)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
Vp8CodecTestBase.java 209 public int frameHeight;
242 int frameHeight,
267 params.frameHeight = Math.min(frameHeight * resolutionScales[i], 720);
291 int frameHeight,
304 frameHeight,
521 int frameHeight = ivf.getHeight();
524 int frameSliceHeight = frameHeight;
526 assertTrue(frameHeight > 0);
548 ". " + frameWidth + " x " + frameHeight);
    [all...]
Vp8EncoderTest.java 151 params.frameWidth, params.frameHeight);
175 params.frameWidth, params.frameHeight);
357 params.frameWidth, params.frameHeight);
444 params.frameWidth, params.frameHeight);
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateVPTests.cpp 156 const deInt32 frameHeight = referenceFrame.getHeight();
160 for (int y = 0; y < frameHeight; y++)
162 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
203 const deInt32 frameHeight = referenceFrame.getHeight();
207 for (int y = 0; y < frameHeight; y++)
209 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
348 const deInt32 frameHeight = referenceFrame.getHeight();
352 for (int y = 0; y < frameHeight; y++)
354 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDynamicStateGeneralTests.cpp 121 const deInt32 frameHeight = referenceFrame.getHeight();
125 for (int y = 0; y < frameHeight; y++)
127 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
231 const deInt32 frameHeight = referenceFrame.getHeight();
235 for (int y = 0; y < frameHeight; y++)
237 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
381 const deInt32 frameHeight = referenceFrame.getHeight();
385 for (int y = 0; y < frameHeight; y++)
387 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDynamicStateCBTests.cpp 130 const deInt32 frameHeight = referenceFrame.getHeight();
134 for (int y = 0; y < frameHeight; y++)
136 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDynamicStateRSTests.cpp 456 const deInt32 frameHeight = referenceFrame.getHeight();
460 for (int y = 0; y < frameHeight; y++)
462 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
562 const deInt32 frameHeight = referenceFrame.getHeight();
566 for (int y = 0; y < frameHeight; y++)
568 float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
668 const deInt32 frameHeight = referenceFrame.getHeight();
672 for (int y = 0; y < frameHeight; y++)
674 float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
679 float lineHalfWidth = (float)(deFloor(deviceProperties.limits.lineWidthRange[1]) / frameHeight);
    [all...]
vktDynamicStateDSTests.cpp 495 const deInt32 frameHeight = referenceFrame.getHeight();
499 for (int y = 0; y < frameHeight; y++)
501 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
647 const deInt32 frameHeight = referenceFrame.getHeight();
649 for (int y = 0; y < frameHeight; y++)
651 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
    [all...]
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceViewRenderer.java 100 private int frameHeight;
254 frameHeight = 0;
342 if (frameWidth == 0 || frameHeight == 0) {
537 if (frameWidth == 0 || frameHeight == 0) {
540 return (frameRotation % 180 == 0) ? (float) frameWidth / frameHeight
541 : (float) frameHeight / frameWidth;
548 if (frameWidth != frame.width || frameHeight != frame.height
556 frameHeight = frame.height;
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
VideoCapturerAndroidTestFixtures.java 66 public int frameHeight() {
107 private int frameHeight = 0;
128 frameHeight = height;
140 frameHeight = height;
176 int frameHeight() {
178 return frameHeight;
385 && observer.frameHeight() == format.height);
387 && observer.frameHeight() == format.width);
389 fail("Wrong resolution, got: " + observer.frameWidth() + "x" + observer.frameHeight()
587 final int startHeight = renderer.frameHeight();
    [all...]
  /external/opencv3/modules/cudacodec/src/
video_decoder.hpp 76 unsigned long frameHeight() const { return createInfo_.ulHeight; }
video_parser.cpp 107 format->coded_height != thiz->videoDecoder_->frameHeight() ||
  /external/opencv3/samples/winrt/OcvImageProcessing/OcvImageProcessing/
MainPage.xaml.h 49 unsigned int frameWidth, frameHeight;
MainPage.xaml.cpp 75 frameHeight = frame->PixelHeight;
83 Lena = cv::Mat(frameHeight, frameWidth, CV_8UC4);
84 memcpy(Lena.data, srcPixels->Data, 4*frameWidth*frameHeight);
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawIndexedTest.cpp 176 const deInt32 frameHeight = referenceFrame.getHeight();
182 for (int y = 0; y < frameHeight; y++)
184 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
299 const deInt32 frameHeight = referenceFrame.getHeight();
305 for (int y = 0; y < frameHeight; y++)
307 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDrawSimpleTest.cpp 170 const deInt32 frameHeight = referenceFrame.getHeight();
176 for (int y = 0; y < frameHeight; y++)
178 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
278 const deInt32 frameHeight = referenceFrame.getHeight();
284 for (int y = 0; y < frameHeight; y++)
286 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
vktDrawIndirectTest.cpp 294 const deInt32 frameHeight = referenceFrame.getHeight();
300 for (int y = 0; y < frameHeight; y++)
302 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
480 const deInt32 frameHeight = referenceFrame.getHeight();
486 for (int y = 0; y < frameHeight; y++)
488 const float yCoord = (float)(y / (0.5*frameHeight)) - 1.0f;
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DInterop.h 77 unsigned int frameWidth, frameHeight;
  /external/skia/src/codec/
SkGifCodec.cpp 369 int frameHeight = desc.Height;
375 height = SkTMax(height, frameHeight + frameTop);
380 if (frameLeft < 0 || frameTop < 0 || frameWidth < 0 || frameHeight < 0 || width <= 0 ||
385 frameRect->setXYWH(frameLeft, frameTop, frameWidth, frameHeight);
  /external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit_objc.mm 241 size_t frameHeight = CVPixelBufferGetHeight(videoFrame);
242 size_t frameSize = bytesPerRow * frameHeight;
  /frameworks/av/include/media/
MediaProfiles.h 184 VideoCodec(video_encoder codec, int bitRate, int frameWidth, int frameHeight, int frameRate)
188 mFrameHeight(frameHeight),

Completed in 1117 milliseconds

1 2 3