Lines Matching refs:hnd
38 private_handle_t* hnd = (private_handle_t*)src->handle;
40 if(hnd == NULL || yv12_handle == NULL){
60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size);
61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size);
181 int convert_yuv_c2d_to_yuv_android(private_handle_t *hnd,
185 if (!hnd || !rhs) {
186 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs);
215 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info);
227 int convert_yuv_android_to_yuv_c2d(private_handle_t *hnd,
230 if (!hnd || !rhs) {
231 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs);
241 info.src_stride = ALIGN(hnd->width, 16);
260 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info);