Home
last modified time | relevance | path

Searched refs:strideColor (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/evs/support_library/
DFormatConvert.cpp73 unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in copyNV21toRGB32() local
82 uint8_t* rowUV = srcUV + (r/2 * strideColor); in copyNV21toRGB32()
105 unsigned strideColor = align<16>(strideLum/2); in copyYV12toRGB32() local
106 unsigned sizeColor = strideColor * height/2; in copyYV12toRGB32()
117 uint8_t* rowU = srcU + (r/2 * strideColor); in copyYV12toRGB32()
118 uint8_t* rowV = srcV + (r/2 * strideColor); in copyYV12toRGB32()
/packages/services/Car/evs/apps/default/
DFormatConvert.cpp70 unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in copyNV21toRGB32() local
79 uint8_t* rowUV = srcUV + (r/2 * strideColor); in copyNV21toRGB32()
102 unsigned strideColor = align<16>(strideLum/2); in copyYV12toRGB32() local
103 unsigned sizeColor = strideColor * height/2; in copyYV12toRGB32()
114 uint8_t* rowU = srcU + (r/2 * strideColor); in copyYV12toRGB32()
115 uint8_t* rowV = srcV + (r/2 * strideColor); in copyYV12toRGB32()
/packages/services/Car/evs/sampleDriver/
DbufferCopy.cpp78 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromNV21() local
79 const unsigned sizeColor = strideColor * pDesc->height/2; in fillNV21FromNV21()
109 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromYUYV() local
123 uint8_t* uvRow = (tgt + sizeY) + cellRow * strideColor; in fillNV21FromYUYV()