Home
last modified time | relevance | path

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

/packages/services/Car/cpp/evs/support_library/
DFormatConvert.cpp71 unsigned strideLum = align<16>(width); in copyNV21toRGB32() local
72 unsigned sizeY = strideLum * height; in copyNV21toRGB32()
73 unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in copyNV21toRGB32()
81 uint8_t* rowY = srcY + r*strideLum; in copyNV21toRGB32()
103 unsigned strideLum = align<16>(width); in copyYV12toRGB32() local
104 unsigned sizeY = strideLum * height; in copyYV12toRGB32()
105 unsigned strideColor = align<16>(strideLum/2); in copyYV12toRGB32()
116 uint8_t* rowY = srcY + r*strideLum; in copyYV12toRGB32()
/packages/services/Car/cpp/evs/apps/default/
DFormatConvert.cpp68 unsigned strideLum = align<16>(width); in copyNV21toRGB32() local
69 unsigned sizeY = strideLum * height; in copyNV21toRGB32()
70 unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in copyNV21toRGB32()
78 uint8_t* rowY = srcY + r*strideLum; in copyNV21toRGB32()
100 unsigned strideLum = align<16>(width); in copyYV12toRGB32() local
101 unsigned sizeY = strideLum * height; in copyYV12toRGB32()
102 unsigned strideColor = align<16>(strideLum/2); in copyYV12toRGB32()
113 uint8_t* rowY = srcY + r*strideLum; in copyYV12toRGB32()
/packages/services/Car/cpp/evs/sampleDriver/
DbufferCopy.cpp49 const unsigned strideLum = align<16>(pDesc->width); in fillNV21FromNV21() local
50 const unsigned sizeY = strideLum * pDesc->height; in fillNV21FromNV21()
51 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromNV21()
80 const unsigned strideLum = align<16>(pDesc->width); in fillNV21FromYUYV() local
81 const unsigned sizeY = strideLum * pDesc->height; in fillNV21FromYUYV()
82 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromYUYV()
94 uint8_t* yTopRow = tgt + (cellRow*2) * strideLum; in fillNV21FromYUYV()
95 uint8_t* yBotRow = yTopRow + strideLum; in fillNV21FromYUYV()