Home
last modified time | relevance | path

Searched refs:scaledHeight (Results 1 – 17 of 17) sorted by relevance

/external/skqp/src/codec/
DSkGifCodec.cpp324 const int scaledHeight = get_scaled_dimension(dstInfo.height(), fSwizzler->sampleY()); in decodeFrame() local
346 auto fillInfo = dstInfo.makeWH(fSwizzler->fillWidth(), scaledHeight); in decodeFrame()
359 fRowsDecoded = scaledHeight; in decodeFrame()
373 if (fatalError || !frameDecoded || fRowsDecoded != scaledHeight) { in decodeFrame()
444 const int scaledHeight = get_scaled_dimension(this->dstInfo().height(), sampleY); in haveDecodedRow() local
445 if (dstRow >= scaledHeight) { in haveDecodedRow()
455 if (dstRow + repeatCount > scaledHeight) { in haveDecodedRow()
456 repeatCount = scaledHeight - dstRow; in haveDecodedRow()
DSkWebpCodec.cpp438 int scaledHeight = subsetHeight; in onGetPixels() local
452 scaledHeight = scaleY * scaledHeight; in onGetPixels()
453 if (0 == scaledWidth || 0 == scaledHeight) { in onGetPixels()
458 scaledHeight = dstInfo.height(); in onGetPixels()
462 config.options.scaled_height = scaledHeight; in onGetPixels()
513 rowsDecoded = scaledHeight; in onGetPixels()
DSkWuffsCodec.cpp438 int scaledHeight = dstInfo().height(); in onIncrementalDecode() local
448 scaledHeight = get_scaled_dimension(dstInfo().height(), fSpySampler.sampleY()); in onIncrementalDecode()
461 auto fillInfo = dstInfo().makeWH(fSwizzler->fillWidth(), scaledHeight); in onIncrementalDecode()
484 *rowsDecoded = scaledHeight; in onIncrementalDecode()
531 if (dstY >= scaledHeight) { in onIncrementalDecode()
/external/skia/third_party/libgifcodec/
DSkLibGifCodec.cpp329 const int scaledHeight = get_scaled_dimension(dstInfo.height(), fSwizzler->sampleY()); in decodeFrame() local
351 auto fillInfo = dstInfo.makeWH(fSwizzler->fillWidth(), scaledHeight); in decodeFrame()
364 fRowsDecoded = scaledHeight; in decodeFrame()
378 if (fatalError || !frameDecoded || fRowsDecoded != scaledHeight) { in decodeFrame()
449 const int scaledHeight = get_scaled_dimension(this->dstInfo().height(), sampleY); in haveDecodedRow() local
450 if (dstRow >= scaledHeight) { in haveDecodedRow()
460 if (dstRow + repeatCount > scaledHeight) { in haveDecodedRow()
461 repeatCount = scaledHeight - dstRow; in haveDecodedRow()
/external/webrtc/sdk/android/api/org/webrtc/
DEglRenderer.java719 final int scaledHeight = (int) (listenerAndParams.scale * frame.getRotatedHeight()); in notifyCallbacks() local
721 if (scaledWidth == 0 || scaledHeight == 0) { in notifyCallbacks()
726 bitmapTextureFramebuffer.setSize(scaledWidth, scaledHeight); in notifyCallbacks()
735 0 /* viewportY */, scaledWidth, scaledHeight); in notifyCallbacks()
737 final ByteBuffer bitmapBuffer = ByteBuffer.allocateDirect(scaledWidth * scaledHeight * 4); in notifyCallbacks()
738 GLES20.glViewport(0, 0, scaledWidth, scaledHeight); in notifyCallbacks()
740 0, 0, scaledWidth, scaledHeight, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, bitmapBuffer); in notifyCallbacks()
745 final Bitmap bitmap = Bitmap.createBitmap(scaledWidth, scaledHeight, Bitmap.Config.ARGB_8888); in notifyCallbacks()
DTextureBufferImpl.java180 int unscaledHeight, int scaledWidth, int scaledHeight) { in applyTransformMatrix() argument
184 return new TextureBufferImpl(unscaledWidth, unscaledHeight, scaledWidth, scaledHeight, type, id, in applyTransformMatrix()
/external/pdfium/fxbarcode/
DBC_TwoDimWriter.cpp39 FX_SAFE_INT32 scaledHeight = tempHeight; in RenderResult() local
41 scaledHeight *= moduleHSize; in RenderResult()
43 m_outputHeight = scaledHeight.ValueOrDie(); in RenderResult()
/external/webrtc/sdk/objc/base/
DRTCVideoFrame.h64 scaledHeight:(int)scaledHeight
DRTCVideoFrame.mm55 scaledHeight:(int)scaledHeight
/external/skia/src/codec/
DSkWebpCodec.cpp418 int scaledHeight = subsetHeight; in onGetPixels() local
432 scaledHeight = scaleY * scaledHeight; in onGetPixels()
433 if (0 == scaledWidth || 0 == scaledHeight) { in onGetPixels()
438 scaledHeight = dstInfo.height(); in onGetPixels()
442 config.options.scaled_height = scaledHeight; in onGetPixels()
492 rowsDecoded = scaledHeight; in onGetPixels()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DLottieCompositionParser.java92 int scaledHeight = (int) (height * scale); in parse() local
93 Rect bounds = new Rect(0, 0, scaledWidth, scaledHeight); in parse()
DLottieCompositionMoshiParser.java107 int scaledHeight = (int) (height * scale); in parse() local
108 Rect bounds = new Rect(0, 0, scaledWidth, scaledHeight); in parse()
/external/libjpeg-turbo/
Dtjunittest.c440 int scaledHeight = TJSCALED(h, sf); in _decompTest() local
448 dstSize = scaledWidth * scaledHeight * tjPixelSize[pf]; in _decompTest()
454 unsigned long yuvSize = tjBufSizeYUV2(scaledWidth, pad, scaledHeight, in _decompTest()
469 pad, scaledHeight, flags)); in _decompTest()
470 if (checkBufYUV(yuvBuf, scaledWidth, scaledHeight, subsamp, sf)) in _decompTest()
478 scaledHeight, pf, flags)); in _decompTest()
487 scaledHeight, pf, flags)); in _decompTest()
490 if (checkBuf(dstBuf, scaledWidth, scaledHeight, pf, subsamp, sf, flags)) in _decompTest()
Dturbojpeg-jni.c786 int nc = 0, i, width, height, scaledWidth, scaledHeight, nsf = 0; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III() local
811 scaledHeight = TJSCALED(jpegHeight, sf[i]); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III()
812 if (scaledWidth <= width && scaledHeight <= height) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III()
829 int planeSize = tjPlaneSizeYUV(i, scaledWidth, dstStrides[i], scaledHeight, in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III()
/external/setupdesign/main/src/com/google/android/setupdesign/
DGlifPatternDrawable.java155 int scaledHeight = (int) (VIEWBOX_HEIGHT * scale); in createBitmapCache() local
158 Bitmap bitmap = Bitmap.createBitmap(scaledWidth, scaledHeight, Bitmap.Config.ALPHA_8); in createBitmapCache()
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DCameraVideoCapturerTestFixtures.java673 final int scaledHeight = startHeight / 2; in scaleCameraOutput() local
676 videoTrackWithRenderer.source.adaptOutputFormat(scaledWidth, scaledHeight, frameRate); in scaleCameraOutput()
686 && videoTrackWithRenderer.rendererCallbacks.frameHeight() == scaledHeight); in scaleCameraOutput()
/external/webp/
DREADME738 config.options.scaled_height = scaledHeight();