HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 901 - 925 of 9458) sorted by null

<<31323334353637383940>>

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_sps_parser_unittest.cc 37 // Generates a fake SPS with basically everything empty but the width/height.
42 void GenerateFakeSps(uint16_t width, uint16_t height, uint8_t buffer[]) {
66 // Next are width/height. First, calculate the mbs/map_units versions.
69 // For the height, we're going to define frame_mbs_only_flag, so we need to
71 uint16_t height_in_map_units_minus1 = ((height + 15) / 16 - 1) / 2;
90 writer.WriteExponentialGolomb(((16 - (height % 16)) % 16) / 2);
128 EXPECT_EQ(720u, parser.height());
140 EXPECT_EQ(360u, parser.height());
152 EXPECT_EQ(400u, parser.height());
161 EXPECT_EQ(180u, parser.height());
    [all...]
  /external/webrtc/webrtc/modules/video_coding/utility/
quality_scaler.h 24 int height; member in struct:webrtc::QualityScaler::Resolution
35 void Reset(int framerate, int bitrate, int width, int height);
  /external/webrtc/webrtc/modules/video_processing/
frame_preprocessor.h 45 uint32_t height,
54 int32_t updateIncomingFrameSize(uint32_t width, uint32_t height);
  /external/webrtc/webrtc/test/
frame_generator_capturer.h 34 size_t height,
41 size_t height,
  /frameworks/av/include/ndk/
NdkImageReader.h 66 * @param height The default height in pixels of the Images that this reader will produce.
80 * height, format, maxImages arguments is not supported.</li>
86 int32_t width, int32_t height, int32_t format, int32_t maxImages,
132 * Query the default height of the {@link AImage} generated by this reader, in pixels.
134 * <p>The height may be overridden by the producer sending buffers to this reader's
135 * {@link ANativeWindow}. If so, the actual height of the images can be found using
139 * @param height the default height of the reader will be filled here if the method call succeeeds.
143 * <li>{@link AMEDIA_ERROR_INVALID_PARAMETER} if reader or height is NULL.</li></ul
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_LimitMVToRect.c 67 * - the width or height of the bounding rectangle is less than
85 armRetArgErrIf((pRectVOPRef->height < (2* size)), OMX_Sts_BadArgErr);
90 (2*pRectVOPRef->y + pRectVOPRef->height - Ycoord - size));
  /frameworks/base/core/java/android/hardware/camera2/legacy/
SizeAreaComparator.java 48 long area = width * size.height;
49 long area2 = width2 * size2.height;
  /frameworks/base/core/java/android/hardware/camera2/params/
InputConfiguration.java 35 * Create an input configration with the width, height, and user-defined format.
42 * @param height Height of the input buffers.
49 public InputConfiguration(int width, int height, int format) {
51 mHeight = height;
65 * Get the height of this input configration.
67 * @return height of this input configuration.
120 * the width, height, and format, respectively.</p>
  /frameworks/base/core/java/android/hardware/display/
VirtualDisplay.java 89 public void resize(int width, int height, int densityDpi) {
90 mGlobal.resizeVirtualDisplay(mToken, width, height, densityDpi);
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperEngine.aidl 27 void setDesiredSize(int width, int height);
  /frameworks/base/core/java/android/view/
DisplayListCanvas.java 49 static DisplayListCanvas obtain(@NonNull RenderNode node, int width, int height) {
53 canvas = new DisplayListCanvas(width, height);
55 nResetDisplayListCanvas(canvas.mNativeCanvasWrapper, width, height);
59 canvas.mHeight = height;
92 private DisplayListCanvas(int width, int height) {
93 super(nCreateDisplayListCanvas(width, height));
97 private static native long nCreateDisplayListCanvas(int width, int height);
98 private static native void nResetDisplayListCanvas(long canvas, int width, int height);
GraphicBuffer.java 73 * @param height The height in pixels of the buffer
79 public static GraphicBuffer create(int width, int height, int format, int usage) {
80 long nativeObject = nCreateGraphicBuffer(width, height, format, usage);
82 return new GraphicBuffer(width, height, format, usage, nativeObject);
90 private GraphicBuffer(int width, int height, int format, int usage, long nativeObject) {
92 mHeight = height;
106 * Returns the height of this buffer in pixels.
271 int height = in.readInt();
276 return new GraphicBuffer(width, height, format, usage, nativeObject)
    [all...]
SurfaceHolder.java 90 * @param height The new height of the surface.
93 int height);
162 * @param height The surface's height.
164 public void setFixedSize(int width, int height);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 44 * @param stdHeight the standard height for the shape. Any changes to the
45 * height with resize() will result in a height scaled based
46 * on the new height divided by this height.
63 protected void onResize(float width, float height) {
65 mScaleY = height / mStdHeight;
RectShape.java 48 protected void onResize(float width, float height) {
49 mRect.set(0, 0, width, height);
  /frameworks/base/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 41 public void apply(int inputTexId, int width, int height, int outputTexId) {
44 Frame inputFrame = frameFromTexture(inputTexId, width, height);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 61 int height = 0; local
97 getPaddingTop() + getPaddingBottom() + height, childParams.height);
111 height += rowHeight;
117 height += getPaddingTop() + getPaddingBottom();
118 height = Math.max(height, getMinimumHeight());
121 resolveSizeAndState(height, heightMeasureSpec,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QuickTileLayout.java 23 // Make everything square at the height of this view.
24 params = new LayoutParams(params.height, params.height);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
RawTexture.java 29 public RawTexture(int width, int height, boolean opaque) {
31 setSize(width, height);
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IVideoCallback.aidl 39 void changePeerDimensions(int width, int height);
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsVideoCallCallback.aidl 41 void changePeerDimensions(int width, int height);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer) {
35 const int numPixels = width * height;
contrast.cpp 29 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer) {
35 const int numPixels = width * height;
pixelutils.cpp 24 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset,
29 for (int y = 0; y < height; ++y) {
  /frameworks/native/include/android/
native_window.h 65 int32_t height; member in struct:ANativeWindow_Buffer
99 * Return the current height in pixels of the window surface. Returns a
113 * The width and height control the number of pixels in the buffers, not the
121 * width and height must be either both zero or both non-zero.
125 int32_t width, int32_t height, int32_t format);

Completed in 1417 milliseconds

<<31323334353637383940>>