/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() 56 srcY += srcYStride; in convertYUV420Planar8ToYV12() 84 void convertYUV420Planar16ToY410(uint32_t *dst, const uint16_t *srcY, const uint16_t *srcU, in convertYUV420Planar16ToY410() argument 91 uint16_t *ySrcTop = (uint16_t *)srcY; in convertYUV420Planar16ToY410() 92 uint16_t *ySrcBot = (uint16_t *)(srcY + srcYStride); in convertYUV420Planar16ToY410() 141 srcY += srcYStride * 2; in convertYUV420Planar16ToY410() 250 uint32_t *dst, const uint16_t *srcY, const uint16_t *srcU, in convertYUV420Planar16ToRGBA1010102() argument 271 uint16_t *ySrcTop = (uint16_t *)srcY; in convertYUV420Planar16ToRGBA1010102() 272 uint16_t *ySrcBot = (uint16_t *)(srcY + srcYStride); in convertYUV420Planar16ToRGBA1010102() [all …]
|
/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, 47 uint32_t *dst, const uint16_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, 66 const uint16_t *srcY, const uint16_t *srcUV, 71 void convertP010ToP210(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY, const uint16_t *srcUV, 90 void convertPlanar16ToY410OrRGBA1010102(uint8_t* dst, const uint16_t* srcY, const uint16_t* srcU, 97 void convertP210ToRGBA1010102(uint32_t* dst, const uint16_t* srcY, const uint16_t* srcUV, 102 void convertPlanar16ToP010(uint16_t* dstY, uint16_t* dstUV, const uint16_t* srcY, 108 void convertPlanar16ToYV12(uint8_t* dstY, uint8_t* dstU, uint8_t* dstV, const uint16_t* srcY, [all …]
|
/frameworks/av/media/codec2/components/apv/ |
D | C2SoftApvDec.cpp | 718 const uint8_t* srcY, const uint8_t* srcU, in copyBufferFromYUV420ToYV12() argument 723 memcpy(dstY, srcY, width); in copyBufferFromYUV420ToYV12() 724 srcY += srcYStride; in copyBufferFromYUV420ToYV12() 738 static void copyBufferP210(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY, in copyBufferP210() argument 742 memcpy(dstY, srcY, width * sizeof(uint16_t)); in copyBufferP210() 743 srcY += srcYStride; in copyBufferP210() 755 const uint8_t* srcY, const uint8_t* srcU, in copyBufferFromYUV422ToYV12() argument 760 memcpy(dstY, srcY, width); in copyBufferFromYUV422ToYV12() 761 srcY += srcYStride; in copyBufferFromYUV422ToYV12() 775 static void copyBufferFromYUV42010bitToP010(uint16_t* dstY, uint16_t* dstUV, const uint16_t* srcY, in copyBufferFromYUV42010bitToP010() argument [all …]
|
D | C2SoftApvEnc.cpp | 1048 uint16_t *srcY = (uint16_t*)(input->data()[0]); in setEncodeArgs() local 1054 convertP010ToP210(dstY, dstUV, srcY, srcUV, in setEncodeArgs() 1065 uint16_t *srcY = (uint16_t*)(input->data()[0]); in setEncodeArgs() local 1075 std::memcpy(dstY, srcY, width * sizeof(uint16_t)); in setEncodeArgs() 1077 srcY += srcYStride; in setEncodeArgs() 1091 uint8_t *srcY = (uint8_t*)input->data()[0]; in setEncodeArgs() local 1097 convertSemiPlanar8ToP210(dstY, dstUV, srcY, srcUV, in setEncodeArgs() 1104 uint8_t *srcY = (uint8_t*)input->data()[0]; in setEncodeArgs() local 1111 convertPlanar8ToP210(dstY, dstUV, srcY, srcU, srcV, in setEncodeArgs()
|
/frameworks/av/media/codec2/components/dav1d/ |
D | C2SoftDav1dDump.cpp | 106 void C2SoftDav1dDump::dumpOutput(const T* srcY, const T* srcU, const T* srcV, size_t srcYStride, in dumpOutput() argument 115 fwrite((uint8_t*)srcY + i * srcYStride * typeSize, 1, width * typeSize, fp_out); in dumpOutput() 183 template void C2SoftDav1dDump::dumpOutput<uint8_t>(const uint8_t* srcY, const uint8_t* srcU, 187 template void C2SoftDav1dDump::dumpOutput<uint16_t>(const uint16_t* srcY, const uint16_t* srcU,
|
D | C2SoftDav1dDump.h | 35 void dumpOutput(const T* srcY, const T* srcU, const T* srcV, size_t srcYStride,
|
D | C2SoftDav1dDec.cpp | 1059 const uint16_t* srcY = (const uint16_t*)img.data[0]; in outputBuffer() local 1082 dstY, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer() 1100 convertPlanar16ToP010((uint16_t*)dstY, (uint16_t*)dstU, srcY, srcU, srcV, srcYStride, in outputBuffer() 1114 convertPlanar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer() 1126 mC2SoftDav1dDump.dumpOutput<uint16_t>(srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer() 1130 const uint8_t* srcY = (const uint8_t*)img.data[0]; in outputBuffer() local 1145 mC2SoftDav1dDump.dumpOutput<uint8_t>(srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer() 1148 convertPlanar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in outputBuffer()
|
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 944 const uint16_t *srcY = (const uint16_t *)buffer->plane[0]; in outputBuffer() local 959 libyuv::I012ToAB30Matrix(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() 963 libyuv::I012ToI420(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() 967 libyuv::I412ToI420(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() 971 libyuv::I212ToI420(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() 977 const uint16_t *srcY = (const uint16_t *)buffer->plane[0]; in outputBuffer() local 988 libyuv::I410ToAB30Matrix(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() 993 libyuv::I210ToAB30Matrix(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() 1009 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride, in outputBuffer() 1035 libyuv::I410ToI010(srcY, srcYStride, srcU, srcUStride, srcV, srcVStride, in outputBuffer() [all …]
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxDec.cpp | 816 const uint16_t *srcY = (const uint16_t *)img->planes[VPX_PLANE_Y]; in outputBuffer() local 826 [dstY, srcY, srcU, srcV, in outputBuffer() 831 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 837 srcY += srcYStride / 2 * kHeight; in outputBuffer() 849 convertYUV420Planar16ToP010((uint16_t *)dstY, (uint16_t *)dstU, srcY, srcU, srcV, in outputBuffer() 853 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 858 const uint8_t *srcY = (const uint8_t *)img->planes[VPX_PLANE_Y]; in outputBuffer() local 862 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomDec.cpp | 590 const uint16_t *srcY = (const uint16_t *)img->planes[AOM_PLANE_Y]; in outputBuffer() local 596 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, srcUStride / 2, in outputBuffer() 600 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 605 const uint8_t *srcY = (const uint8_t *)img->planes[AOM_PLANE_Y]; in outputBuffer() local 608 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/av/media/codec2/components/mpeg4_h263/ |
D | C2SoftMpeg4Dec.cpp | 621 const uint8_t *srcY = (const uint8_t *)mOutputBuffer[mNumSamplesOutput & 1]; in process() local 622 const uint8_t *srcU = (const uint8_t *)srcY + vStride * srcYStride; in process() 623 const uint8_t *srcV = (const uint8_t *)srcY + vStride * srcYStride * 5 / 4; in process() 625 convertYUV420Planar8ToYV12(outputBufferY, outputBufferU, outputBufferV, srcY, srcU, srcV, in process()
|
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/ |
D | SoftVideoDecoderOMXComponent.h | 133 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES31Ext.spec | 15 …EXT ( GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint…
|
D | GLES32.spec | 2 void glCopyImageSubData ( GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY,…
|
/frameworks/av/media/libstagefright/omx/ |
D | SoftVideoDecoderOMXComponent.cpp | 316 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV, in copyYV12FrameToOutputBuffer() argument 327 memcpy(dst, srcY, mWidth * bpp); in copyYV12FrameToOutputBuffer() 328 srcY += srcYStride; in copyYV12FrameToOutputBuffer()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES31Ext.java | 418 int srcY, in glCopyImageSubDataEXT() argument
|
D | GLES32.java | 254 int srcY, in glCopyImageSubData() argument
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES31Ext.cpp | 715 …(JNIEnv *_env, jobject _this, jint srcName, jint srcTarget, jint srcLevel, jint srcX, jint srcY, j… in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII() argument 721 (GLint)srcY, in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII()
|
D | android_opengl_GLES32.cpp | 432 …(JNIEnv *_env, jobject _this, jint srcName, jint srcTarget, jint srcLevel, jint srcX, jint srcY, j… in android_glCopyImageSubData__IIIIIIIIIIIIIII() argument 438 (GLint)srcY, in android_glCopyImageSubData__IIIIIIIIIIIIIII()
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2ext_api.in | 61 …aOES)(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 62 …CALL_GL_API(glCopyImageSubDataOES, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTar… 340 …aEXT)(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 341 …CALL_GL_API(glCopyImageSubDataEXT, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTar…
|
D | gl2_api.in | 946 …Data)(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 947 …CALL_GL_API(glCopyImageSubData, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget…
|
/frameworks/native/opengl/include/GLES2/ |
D | gl2ext.h | 288 …ROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 290 …aOES (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 1198 …ROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 1200 …aEXT (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint…
|
/frameworks/native/opengl/libs/ |
D | entries.in | 114 …Data, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 115 …aEXT, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 116 …aOES, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint…
|
/frameworks/native/opengl/include/GLES3/ |
D | gl32.h | 1734 …ROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint… 1779 …Data (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint…
|