Searched refs:uvLength (Results 1 – 2 of 2) sorted by relevance
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/video/ |
D | VideoDecoderOutputBuffer.java | 119 int uvLength = uvStride * uvHeight; in initForYuvFrame() local 120 int minimumYuvSize = yLength + (uvLength * 2); in initForYuvFrame() 121 if (!isSafeToMultiply(uvLength, 2) || minimumYuvSize < yLength) { in initForYuvFrame() 145 yuvPlanes[1].limit(uvLength); in initForYuvFrame() 146 data.position(yLength + uvLength); in initForYuvFrame() 148 yuvPlanes[2].limit(uvLength); in initForYuvFrame()
|
/external/exoplayer/tree/extensions/vp9/src/main/jni/ |
D | vpx_jni.cc | 84 const int32_t uvLength) { in convert_16_to_8_neon() argument 183 uint8_t* dstVBase = reinterpret_cast<uint8_t*>(data + yLength + uvLength); in convert_16_to_8_neon() 250 const int32_t uvLength) { in convert_16_to_8_standard() argument 276 data + yLength + uvLength + img->stride[VPX_PLANE_V] * y; in convert_16_to_8_standard() 579 const uint64_t uvLength = img->stride[VPX_PLANE_U] * uvHeight; in DECODER_FUNC() local 586 converted = convert_16_to_8_neon(img, data, uvHeight, yLength, uvLength); in DECODER_FUNC() 589 convert_16_to_8_standard(img, data, uvHeight, yLength, uvLength); in DECODER_FUNC() 596 memcpy(data + yLength, img->planes[VPX_PLANE_U], uvLength); in DECODER_FUNC() 597 memcpy(data + yLength + uvLength, img->planes[VPX_PLANE_V], uvLength); in DECODER_FUNC()
|