HomeSort by relevance Sort by last modified time
    Searched refs:img_lib (Results 1 - 2 of 2) sorted by null

  /device/google/marlin/camera/QCamera2/stack/mm-lib2d-interface/test/
mm_lib2d_test.c 353 img_lib_buffert img_lib; local
354 img_lib.ptr = dlopen("libmmcamera_imglib.so", RTLD_NOW);
355 if (!img_lib.ptr) {
362 *(void **)&img_lib.img_buffer_get =
363 dlsym(img_lib.ptr, "img_buffer_get");
364 *(void **)&img_lib.img_buffer_release =
365 dlsym(img_lib.ptr, "img_buffer_release");
366 *(void **)&img_lib.img_buffer_cacheops =
367 dlsym(img_lib.ptr, "img_buffer_cacheops");
370 if ((img_lib.img_buffer_get == NULL) |
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-lib2d-interface/src/
mm_lib2d.c 81 * @img_lib: imglib library, function ptrs handle
90 img_lib_t img_lib; member in struct:mm_lib2d_obj_t
306 lib2d_obj->img_lib.ptr = dlopen("libmmcamera_imglib.so", RTLD_NOW);
307 if (!lib2d_obj->img_lib.ptr) {
314 *(void **)&lib2d_obj->img_lib.img_core_get_comp =
315 dlsym(lib2d_obj->img_lib.ptr, "img_core_get_comp");
316 *(void **)&lib2d_obj->img_lib.img_wait_for_completion =
317 dlsym(lib2d_obj->img_lib.ptr, "img_wait_for_completion");
320 if ((lib2d_obj->img_lib.img_core_get_comp == NULL) ||
321 (lib2d_obj->img_lib.img_wait_for_completion == NULL))
    [all...]

Completed in 406 milliseconds