Home
last modified time | relevance | path

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

/external/webrtc/api/video/
Di010_buffer.cc248 int offset_col, in PasteFrom() argument
250 RTC_CHECK_LE(picture.width() + offset_col, width()); in PasteFrom()
252 RTC_CHECK_GE(offset_col, 0); in PasteFrom()
256 RTC_CHECK(offset_col % 2 == 0); in PasteFrom()
259 picture.width() + offset_col == width()); in PasteFrom()
264 MutableDataY() + StrideY() * offset_row + offset_col, in PasteFrom()
269 MutableDataU() + StrideU() * offset_row / 2 + offset_col / 2, StrideU(), in PasteFrom()
274 MutableDataV() + StrideV() * offset_row / 2 + offset_col / 2, StrideV(), in PasteFrom()
Di420_buffer.cc231 int offset_col, in PasteFrom() argument
233 RTC_CHECK_LE(picture.width() + offset_col, width()); in PasteFrom()
235 RTC_CHECK_GE(offset_col, 0); in PasteFrom()
239 RTC_CHECK(offset_col % 2 == 0); in PasteFrom()
242 picture.width() + offset_col == width()); in PasteFrom()
247 MutableDataY() + StrideY() * offset_row + offset_col, in PasteFrom()
252 MutableDataU() + StrideU() * offset_row / 2 + offset_col / 2, StrideU(), in PasteFrom()
257 MutableDataV() + StrideV() * offset_row / 2 + offset_col / 2, StrideV(), in PasteFrom()
Di010_buffer.h72 int offset_col,
Di420_buffer.h104 int offset_col,
/external/webrtc/modules/video_processing/
Dvideo_denoiser.cc187 const uint32_t offset_col = mb_col << 4; in CopySrcOnMOB() local
188 const uint8_t* mb_src = mb_src_base + offset_col; in CopySrcOnMOB()
189 uint8_t* mb_dst = mb_dst_base + offset_col; in CopySrcOnMOB()
264 const uint32_t offset_col = mb_col << 4; in DenoiseFrame() local
265 const uint8_t* mb_src = mb_src_base + offset_col; in DenoiseFrame()
266 uint8_t* mb_dst = mb_dst_base + offset_col; in DenoiseFrame()
267 const uint8_t* mb_dst_prev = mb_dst_prev_base + offset_col; in DenoiseFrame()
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
Doffset_token.py110 offset_row, offset_col = t.offset
112 col += offset_col
115 col = offset_col
/external/webrtc/common_video/
Dvideo_frame_unittest.cc260 int offset_col, in PasteFromBuffer() argument
264 buf->PasteFrom(*picture.GetI420(), offset_col, offset_row); in PasteFromBuffer()
267 buf->PasteFrom(*picture.GetI010(), offset_col, offset_row); in PasteFromBuffer()