Home
last modified time | relevance | path

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

/packages/services/Car/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/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/evs/sampleDriver/
DbufferCopy.cpp76 const unsigned strideLum = align<16>(pDesc->width); in fillNV21FromNV21() local
77 const unsigned sizeY = strideLum * pDesc->height; in fillNV21FromNV21()
78 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromNV21()
107 const unsigned strideLum = align<16>(pDesc->width); in fillNV21FromYUYV() local
108 const unsigned sizeY = strideLum * pDesc->height; in fillNV21FromYUYV()
109 const unsigned strideColor = strideLum; // 1/2 the samples, but two interleaved channels in fillNV21FromYUYV()
121 uint8_t* yTopRow = tgt + (cellRow*2) * strideLum; in fillNV21FromYUYV()
122 uint8_t* yBotRow = yTopRow + strideLum; in fillNV21FromYUYV()