Home
last modified time | relevance | path

Searched refs:dstY (Results 1 – 21 of 21) sorted by relevance

/aosp12/frameworks/av/media/codec2/components/vpx/
H A DC2SoftVpxDec.cpp634 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in copyOutputBufferToYuvPlanarFrame() argument
641 memcpy(dstY, srcY, width); in copyOutputBufferToYuvPlanarFrame()
643 dstY += dstYStride; in copyOutputBufferToYuvPlanarFrame()
724 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in convertYUV420Planar16ToYUV420Planar() argument
732 dstY[x] = (uint8_t)(srcY[x] >> 2); in convertYUV420Planar16ToYUV420Planar()
736 dstY += dstYStride; in convertYUV420Planar16ToYUV420Planar()
821 uint8_t *dstY = const_cast<uint8_t *>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local
843 [dstY, srcY, srcU, srcV, in outputBuffer()
854 dstY += dstYStride * kHeight; in outputBuffer()
863 convertYUV420Planar16ToYUV420Planar(dstY, dstU, dstV, in outputBuffer()
[all …]
/aosp12/frameworks/av/media/codec2/components/aom/
H A DC2SoftAomDec.cpp509 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in copyOutputBufferToYuvPlanarFrame() argument
516 memcpy(dstY, srcY, width); in copyOutputBufferToYuvPlanarFrame()
518 dstY += dstYStride; in copyOutputBufferToYuvPlanarFrame()
598 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in convertYUV420Planar16ToYUV420Planar() argument
606 dstY[x] = (uint8_t)(srcY[x] >> 2); in convertYUV420Planar16ToYUV420Planar()
610 dstY += dstYStride; in convertYUV420Planar16ToYUV420Planar()
693 uint8_t* dstY = const_cast<uint8_t*>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local
709 convertYUV420Planar16ToY410((uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, in outputBuffer()
714 convertYUV420Planar16ToYUV420Planar(dstY, dstU, dstV, in outputBuffer()
725 dstY, dstU, dstV, srcY, srcU, srcV, in outputBuffer()
/aosp12/frameworks/av/media/codec2/components/gav1/
H A DC2SoftGav1Dec.cpp468 static void copyOutputBufferToYV12Frame(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in copyOutputBufferToYV12Frame() argument
476 memcpy(dstY, srcY, width); in copyOutputBufferToYV12Frame()
478 dstY += dstYStride; in copyOutputBufferToYV12Frame()
573 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in convertYUV420Planar16ToYUV420Planar() argument
581 dstY[x] = (uint8_t)(srcY[x] >> 2); in convertYUV420Planar16ToYUV420Planar()
585 dstY += dstYStride; in convertYUV420Planar16ToYUV420Planar()
707 uint8_t *dstY = const_cast<uint8_t *>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local
725 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, srcUStride / 2, in outputBuffer()
729 dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, srcUStride / 2, in outputBuffer()
738 dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer()
/aosp12/packages/apps/Gallery/src/com/android/camera/
H A DUtil.java177 int dstY = (targetHeight - src.height()) / 2; in transform() local
180 dstY, in transform()
182 targetHeight - dstY); in transform()
/aosp12/frameworks/av/media/libstagefright/omx/
H A DSoftVideoEncoderOMXComponent.cpp462 uint8_t *dstY, size_t dstStride, size_t dstVStride, in ConvertRGB32ToPlanar() argument
468 uint8_t *dstU = dstY + dstStride * dstVStride; in ConvertRGB32ToPlanar()
496 dstY[x] = luma; in ConvertRGB32ToPlanar()
517 dstY += dstStride; in ConvertRGB32ToPlanar()
/aosp12/frameworks/av/media/codec2/sfplugin/utils/
H A DCodec2BufferUtils.cpp523 uint8_t *dstY, size_t dstStride, size_t dstVStride, size_t bufferSize, in ConvertRGBToPlanarYUV() argument
525 CHECK(dstY != nullptr); in ConvertRGBToPlanarYUV()
534 uint8_t *dstU = dstY + dstStride * dstVStride; in ConvertRGBToPlanarYUV()
563 dstY[x] = CLIP3(zeroLvl, luma, maxLvlLuma); in ConvertRGBToPlanarYUV()
592 dstY += dstStride; in ConvertRGBToPlanarYUV()
H A DCodec2BufferUtils.h42 uint8_t *dstY, size_t dstStride, size_t dstVStride, size_t bufferSize,
/aosp12/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java499 int dstY = (targetHeight - src.height()) / 2; in transform() local
502 dstY, in transform()
504 targetHeight - dstY); in transform()
/aosp12/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
H A DSoftVideoEncoderOMXComponent.h62 uint8_t *dstY, size_t dstStride, size_t dstVStride,
/aosp12/frameworks/av/media/codec2/components/mpeg4_h263/
H A DC2SoftMpeg4Dec.cpp450 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, uint8_t *src, in copyOutputBufferToYuvPlanarFrame() argument
459 memcpy(dstY, src, width); in copyOutputBufferToYuvPlanarFrame()
461 dstY += dstYStride; in copyOutputBufferToYuvPlanarFrame()
/aosp12/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31Ext.spec15 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
H A DGLES32.spec2 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
/aosp12/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java424 int dstY, in glCopyImageSubDataEXT() argument
H A DGLES32.java260 int dstY, in glCopyImageSubData() argument
/aosp12/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31Ext.cpp714 …, jint srcZ, jint dstName, jint dstTarget, jint dstLevel, jint dstX, jint dstY, jint dstZ, jint sr… in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII() argument
726 (GLint)dstY, in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII()
H A Dandroid_opengl_GLES32.cpp431 …, jint srcZ, jint dstName, jint dstTarget, jint dstLevel, jint dstX, jint dstY, jint dstZ, jint sr… in android_glCopyImageSubData__IIIIIIIIIIIIIII() argument
443 (GLint)dstY, in android_glCopyImageSubData__IIIIIIIIIIIIIII()
/aosp12/frameworks/native/opengl/libs/GLES2/
H A Dgl2ext_api.in61 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
62 …rcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, sr…
340 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
341 …rcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, sr…
H A Dgl2_api.in946 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
947 …rcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, sr…
/aosp12/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h288 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
290 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
1198 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
1200 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
/aosp12/frameworks/native/opengl/libs/
H A Dentries.in114 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
115 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
116 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
/aosp12/frameworks/native/opengl/include/GLES3/
H A Dgl32.h1734 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
1779 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…