Home
last modified time | relevance | path

Searched refs:src_width (Results 1 – 7 of 7) sorted by relevance

/external/opencore/codecs_v2/utilities/colorconvert/src/
Dcczoomrotation32.cpp116 _mDisp.src_width = _mSrc_width ; in SetMode()
148 _mDisp.src_width = _mSrc_width ; in SetMode()
218 disp_prop[2] = disp->src_width; in get_frame32()
244 int32 src_pitch, dst_pitch, dst_pitch4, src_width; in cc32() local
253 src_width = disp[2]; in cc32()
262 deltaY = -src_width - (src_pitch << 1); in cc32()
263 deltaCbCr = -((src_width + src_pitch) >> 1); in cc32()
268 deltaY = (src_pitch << 1) - src_width; in cc32()
269 deltaCbCr = (src_pitch - src_width) >> 1; in cc32()
276 deltaDst = ((dst_pitch << 1) - src_width) * 4; in cc32()
[all …]
Dcczoomrotation16.cpp170 _mDisp.src_width = _mSrc_width ; in SetMode()
202 _mDisp.src_width = _mSrc_width ; in SetMode()
273 disp_prop[2] = disp->src_width; in get_frame16()
296 int32 src_pitch, dst_pitch, src_width; in cc16() local
310 src_width = disp[2]; in cc16()
319 deltaY = -src_width - (src_pitch << 1); in cc16()
320 deltaCbCr = -((src_width + src_pitch) >> 1); in cc16()
325 deltaY = (src_pitch << 1) - src_width; in cc16()
326 deltaCbCr = (src_pitch - src_width) >> 1; in cc16()
333 deltaDst = (dst_pitch << 1) - src_width; in cc16()
[all …]
Dccrgb24torgb16.cpp76 _mDisp.src_width = _mSrc_width ; in SetMode()
114 _mDisp.src_width = _mSrc_width ; in SetMode()
181 disp_prop[2] = disp->src_width; in getframe()
206 int32 src_pitch, dst_pitch, src_width, src_height; in normal() local
214 src_width = disp[2]; in normal()
221 deltaSrc = -(src_width + src_pitch) * 3; in normal()
225 deltaSrc = (src_pitch - src_width) * 3; in normal()
229 deltaDst = (dst_pitch - src_width); in normal()
235 for (col = src_width - 1; col >= 0; col -= 2) in normal()
289 int32 src_pitch, dst_pitch, src_width, src_height; in reverse() local
[all …]
Dcczoomrotation12.cpp154 _mDisp.src_width = _mSrc_width ; in SetMode()
186 _mDisp.src_width = _mSrc_width ; in SetMode()
569 int32 src_width, dst_width, display_width; in get_frame12() local
579 src_width = disp->src_pitch; in get_frame12()
581 display_width = disp->src_width; in get_frame12()
583 deltaY = (src_width << 1) - display_width; in get_frame12()
584 deltaCbCr = (src_width - display_width) >> 1; in get_frame12()
588 src_width >>= 1; in get_frame12()
606 Y = pY[src_width]; in get_frame12()
1160 int32 src_width, dst_width, display_width; in cc12Rotate() local
[all …]
Dcczoomrotation24.cpp113 _mDisp.src_width = _mSrc_width ; in SetMode()
145 _mDisp.src_width = _mSrc_width ; in SetMode()
220 disp_prop[2] = disp->src_width; in get_frame24()
244 int32 src_pitch, dst_pitch, dst_pitch3, src_width; in cc24() local
252 src_width = disp[2]; in cc24()
261 deltaY = -src_width - (src_pitch << 1); in cc24()
262 deltaCbCr = -((src_width + src_pitch) >> 1); in cc24()
267 deltaY = (src_pitch << 1) - src_width; in cc24()
268 deltaCbCr = (src_pitch - src_width) >> 1; in cc24()
275 deltaDst = ((dst_pitch << 1) - src_width) * 3; in cc24()
[all …]
Dcczoomrotationbase.cpp93 _mDisp.src_width = _mSrc_width = Src_width; in Init()
/external/opencore/codecs_v2/utilities/colorconvert/include/
Dcczoomrotationbase.h172 int32 src_width; member