/frameworks/av/media/codec2/components/base/include/ |
D | SimpleC2Component.h | 40 void convertYUV420Planar8ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint8_t *srcY, 53 void convertYUV420Planar16ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint16_t *srcY, 59 void convertYUV420Planar16ToP010(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY, 65 void convertP010ToYUV420Planar16(uint16_t *dstY, uint16_t *dstU, uint16_t *dstV, 71 void convertRGBA1010102ToYUV420Planar16(uint16_t* dstY, uint16_t* dstU, uint16_t* dstV, 82 void convertPlanar16ToP010(uint16_t* dstY, uint16_t* dstUV, const uint16_t* srcY, 88 void convertPlanar16ToYV12(uint8_t* dstY, uint8_t* dstU, uint8_t* dstV, const uint16_t* srcY, 94 void convertPlanar8ToYV12(uint8_t* dstY, uint8_t* dstU, uint8_t* dstV, const uint8_t* srcY,
|
/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 49 void convertYUV420Planar8ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint8_t *srcY, in convertYUV420Planar8ToYV12() argument 55 memcpy(dstY, srcY, width); in convertYUV420Planar8ToYV12() 57 dstY += dstYStride; in convertYUV420Planar8ToYV12() 357 void convertYUV420Planar16ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint16_t *srcY, in convertYUV420Planar16ToYV12() argument 364 dstY[x] = (uint8_t)(srcY[x] >> 2); in convertYUV420Planar16ToYV12() 367 dstY += dstYStride; in convertYUV420Planar16ToYV12() 393 void convertYUV420Planar16ToP010(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY, in convertYUV420Planar16ToP010() argument 400 dstY[x] = srcY[x] << 6; in convertYUV420Planar16ToP010() 403 dstY += dstYStride; in convertYUV420Planar16ToP010() 429 void convertP010ToYUV420Planar16(uint16_t *dstY, uint16_t *dstU, uint16_t *dstV, in convertP010ToYUV420Planar16() argument [all …]
|
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 928 uint8_t *dstY = const_cast<uint8_t *>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local 955 dstY, dstYStride, &libyuv::kYuvV2020Constants, in outputBuffer() 959 dstY, dstYStride, dstU, dstUStride, dstV, dstVStride, in outputBuffer() 963 dstY, dstYStride, dstU, dstUStride, dstV, dstVStride, in outputBuffer() 967 dstY, dstYStride, dstU, dstUStride, dstV, dstVStride, in outputBuffer() 984 dstY, dstYStride, &libyuv::kYuvV2020Constants, in outputBuffer() 989 dstY, dstYStride, &libyuv::kYuvV2020Constants, in outputBuffer() 1004 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride, in outputBuffer() 1039 (uint16_t*)dstY, dstYStride, (uint16_t*)dstU, dstUStride, in outputBuffer() 1042 convertYUV420Planar16ToP010((uint16_t *)dstY, (uint16_t *)dstU, srcY, srcU, srcV, in outputBuffer() [all …]
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxDec.cpp | 796 uint8_t *dstY = const_cast<uint8_t *>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local 819 [dstY, srcY, srcU, srcV, in outputBuffer() 824 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 833 dstY += dstYStride * kHeight; in outputBuffer() 842 convertYUV420Planar16ToP010((uint16_t *)dstY, (uint16_t *)dstU, srcY, srcU, srcV, in outputBuffer() 846 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 855 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/av/media/codec2/sfplugin/utils/ |
D | Codec2BufferUtils.h | 42 uint8_t *dstY, size_t dstStride, size_t dstVStride, size_t bufferSize,
|
D | Codec2BufferUtils.cpp | 593 uint8_t *dstY, size_t dstStride, size_t dstVStride, size_t bufferSize, in ConvertRGBToPlanarYUV() argument 595 CHECK(dstY != nullptr); in ConvertRGBToPlanarYUV() 602 uint8_t *dstU = dstY + dstStride * dstVStride; in ConvertRGBToPlanarYUV() 631 dstY[x] = CLIP3(zeroLvl, luma, maxLvlLuma); in ConvertRGBToPlanarYUV() 660 dstY += dstStride; in ConvertRGBToPlanarYUV()
|
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/ |
D | SoftVideoEncoderOMXComponent.h | 62 uint8_t *dstY, size_t dstStride, size_t dstVStride,
|
/frameworks/av/media/libstagefright/omx/ |
D | SoftVideoEncoderOMXComponent.cpp | 462 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()
|
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomEnc.cpp | 962 uint16_t *dstY, *dstU, *dstV; in process() local 963 dstY = (uint16_t*)mConversionBuffer.data(); in process() 964 dstU = dstY + stride * vstride; in process() 966 convertP010ToYUV420Planar16(dstY, dstU, dstV, (uint16_t*)(rView->data()[0]), in process() 991 uint16_t *dstY, *dstU, *dstV; in process() local 992 dstY = (uint16_t*)mConversionBuffer.data(); in process() 993 dstU = dstY + stride * vstride; in process() 995 convertRGBA1010102ToYUV420Planar16(dstY, dstU, dstV, (uint32_t*)(rView->data()[0]), in process()
|
D | C2SoftAomDec.cpp | 573 uint8_t* dstY = const_cast<uint8_t*>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local 591 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, srcUStride / 2, in outputBuffer() 595 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 603 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/base/media/java/android/media/ |
D | ThumbnailUtils.java | 499 int dstY = (targetHeight - src.height()) / 2; in transform() local 502 dstY, in transform() 504 targetHeight - dstY); in transform()
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES31Ext.spec | 15 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
|
D | GLES32.spec | 2 …srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsize…
|
/frameworks/av/media/codec2/components/dav1d/ |
D | C2SoftDav1dDec.cpp | 1029 uint8_t* dstY = const_cast<uint8_t*>(wView.data()[C2PlanarLayout::PLANE_Y]); in outputBuffer() local 1077 dstY, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer() 1095 convertPlanar16ToP010((uint16_t*)dstY, (uint16_t*)dstU, srcY, srcU, srcV, srcYStride, in outputBuffer() 1109 convertPlanar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer() 1143 convertPlanar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES31Ext.java | 424 int dstY, in glCopyImageSubDataEXT() argument
|
D | GLES32.java | 260 int dstY, in glCopyImageSubData() argument
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES31Ext.cpp | 715 …, jint srcZ, jint dstName, jint dstTarget, jint dstLevel, jint dstX, jint dstY, jint dstZ, jint sr… in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII() argument 727 (GLint)dstY, in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII()
|
D | android_opengl_GLES32.cpp | 432 …, jint srcZ, jint dstName, jint dstTarget, jint dstLevel, jint dstX, jint dstY, jint dstZ, jint sr… in android_glCopyImageSubData__IIIIIIIIIIIIIII() argument 444 (GLint)dstY, in android_glCopyImageSubData__IIIIIIIIIIIIIII()
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2ext_api.in | 61 …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…
|
D | gl2_api.in | 946 …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…
|
/frameworks/native/opengl/include/GLES2/ |
D | gl2ext.h | 288 …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…
|
/frameworks/native/opengl/libs/ |
D | entries.in | 114 …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…
|
/frameworks/native/opengl/include/GLES3/ |
D | gl32.h | 1734 …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…
|