Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/cpp/evs/support_library/
H A 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()
/aosp12/packages/services/Car/cpp/evs/apps/default/
H A 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()
/aosp12/hardware/interfaces/automotive/evs/common/utils/default/
H A DFormatConvert.cpp87 unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in copyNV21toRGB32() local
96 uint8_t* rowUV = srcUV + (r/2 * strideColor); in copyNV21toRGB32()
120 unsigned strideColor = align<16>(strideLum/2); in copyYV12toRGB32() local
121 unsigned sizeColor = strideColor * height/2; in copyYV12toRGB32()
132 uint8_t* rowU = srcU + (r/2 * strideColor); in copyYV12toRGB32()
133 uint8_t* rowV = srcV + (r/2 * strideColor); in copyYV12toRGB32()
/aosp12/packages/services/Car/cpp/evs/sampleDriver/
H A DbufferCopy.cpp60 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromNV21() local
61 const unsigned sizeColor = strideColor * pDesc->height/2; in fillNV21FromNV21()
92 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromYUYV() local
106 uint8_t* uvRow = (tgt + sizeY) + cellRow * strideColor; in fillNV21FromYUYV()