/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 38 void convertYUV420Planar8ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint8_t *srcY, in convertYUV420Planar8ToYV12() argument 44 memcpy(dstY, srcY, width); in convertYUV420Planar8ToYV12() 45 srcY += srcYStride; in convertYUV420Planar8ToYV12() 73 void convertYUV420Planar16ToY410(uint32_t *dst, const uint16_t *srcY, const uint16_t *srcU, in convertYUV420Planar16ToY410() argument 80 uint16_t *ySrcTop = (uint16_t *)srcY; in convertYUV420Planar16ToY410() 81 uint16_t *ySrcBot = (uint16_t *)(srcY + srcYStride); in convertYUV420Planar16ToY410() 130 srcY += srcYStride * 2; in convertYUV420Planar16ToY410() 239 uint32_t *dst, const uint16_t *srcY, const uint16_t *srcU, in convertYUV420Planar16ToRGBA1010102() argument 260 uint16_t *ySrcTop = (uint16_t *)srcY; in convertYUV420Planar16ToRGBA1010102() 261 uint16_t *ySrcBot = (uint16_t *)(srcY + srcYStride); in convertYUV420Planar16ToRGBA1010102() [all …]
|
/frameworks/av/media/codec2/components/base/include/ |
D | SimpleC2Component.h | 33 void convertYUV420Planar8ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint8_t *srcY, 40 uint32_t *dst, const uint16_t *srcY, 46 void convertYUV420Planar16ToYV12(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, const uint16_t *srcY, 52 void convertYUV420Planar16ToP010(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY,
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxDec.cpp | 767 const uint16_t *srcY = (const uint16_t *)img->planes[VPX_PLANE_Y]; in outputBuffer() local 777 [dstY, srcY, srcU, srcV, in outputBuffer() 782 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 788 srcY += srcYStride / 2 * kHeight; in outputBuffer() 800 convertYUV420Planar16ToP010((uint16_t *)dstY, (uint16_t *)dstU, srcY, srcU, srcV, in outputBuffer() 804 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 809 const uint8_t *srcY = (const uint8_t *)img->planes[VPX_PLANE_Y]; in outputBuffer() local 813 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomDec.cpp | 584 const uint16_t *srcY = (const uint16_t *)img->planes[AOM_PLANE_Y]; in outputBuffer() local 590 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, srcUStride / 2, in outputBuffer() 594 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 599 const uint8_t *srcY = (const uint8_t *)img->planes[AOM_PLANE_Y]; in outputBuffer() local 602 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 725 const uint16_t *srcY = (const uint16_t *)buffer->plane[0]; in outputBuffer() local 731 (uint32_t *)dstY, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 736 convertYUV420Planar16ToP010((uint16_t *)dstY, (uint16_t *)dstU, srcY, srcU, srcV, in outputBuffer() 740 convertYUV420Planar16ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride / 2, in outputBuffer() 745 const uint8_t *srcY = (const uint8_t *)buffer->plane[0]; in outputBuffer() local 748 convertYUV420Planar8ToYV12(dstY, dstU, dstV, srcY, srcU, srcV, srcYStride, srcUStride, in outputBuffer()
|
/frameworks/av/media/libstagefright/codecs/on2/dec/ |
D | SoftVPX.cpp | 183 const uint8_t *srcY = (const uint8_t *)mImg->planes[VPX_PLANE_Y]; in outputBuffers() local 189 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride); in outputBuffers()
|
/frameworks/av/media/codec2/components/mpeg4_h263/ |
D | C2SoftMpeg4Dec.cpp | 609 const uint8_t *srcY = (const uint8_t *)mOutputBuffer[mNumSamplesOutput & 1]; in process() local 610 const uint8_t *srcU = (const uint8_t *)srcY + vStride * srcYStride; in process() 611 const uint8_t *srcV = (const uint8_t *)srcY + vStride * srcYStride * 5 / 4; in process() 613 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/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/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/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 | 714 …(JNIEnv *_env, jobject _this, jint srcName, jint srcTarget, jint srcLevel, jint srcX, jint srcY, j… in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII() argument 720 (GLint)srcY, in android_glCopyImageSubDataEXT__IIIIIIIIIIIIIII()
|
D | android_opengl_GLES32.cpp | 431 …(JNIEnv *_env, jobject _this, jint srcName, jint srcTarget, jint srcLevel, jint srcX, jint srcY, j… in android_glCopyImageSubData__IIIIIIIIIIIIIII() argument 437 (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…
|