Searched defs:depth (Results 1 - 14 of 14) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dlookahead.c65 unsigned int depth)
70 /* Clamp the lookahead queue depth */
71 if(depth < 1)
72 depth = 1;
73 else if(depth > MAX_LAG_BUFFERS)
74 depth = MAX_LAG_BUFFERS;
76 /* Keep last frame in lookahead buffer by increasing depth by 1.*/
77 depth += 1;
87 ctx->max_sz = depth;
88 ctx->buf = calloc(depth, sizeo
63 vp8_lookahead_init(unsigned int width, unsigned int height, unsigned int depth) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_lookahead.c62 unsigned int depth) {
65 // Clamp the lookahead queue depth
66 depth = clamp(depth, 1, MAX_LAG_BUFFERS);
69 depth += MAX_PRE_FRAMES;
75 ctx->max_sz = depth;
76 ctx->buf = calloc(depth, sizeof(*ctx->buf));
79 for (i = 0; i < depth; i++)
58 vp9_lookahead_init(unsigned int width, unsigned int height, unsigned int subsampling_x, unsigned int subsampling_y, unsigned int depth) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/include/nestegg/
H A Dnestegg.h142 unsigned int depth; /**< Bits per sample. */ member in struct:__anon502
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_if.h147 ** node depth. The definition depends on whether the maximum depth is more
153 /* Maximum depth may be more than number of bits in a long. */
160 /* Maximum depth is definitely less than number of bits in a long. */
177 /* Zero-based depth of path into tree. */
178 unsigned depth; member in struct:__anon667
H A Dcavl_impl.h106 /* The maximum depth may be greater than the number of bits in a long,
108 ** depth. */
325 /* Zero-based depth in tree. */
326 unsigned depth = 0, unbal_depth = 0; variable
342 unbal_depth = depth;
355 L_BIT_ARR_1(branch, depth)
358 L_BIT_ARR_0(branch, depth)
362 depth++;
371 depth = unbal_depth;
376 cmp = L_BIT_ARR_VAL(branch, depth)
516 unsigned depth = 0, rm_depth; variable
780 unsigned depth = 0; variable
[all...]
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drmMode.c191 int drmModeAddFB(int fd, uint32_t width, uint32_t height, uint8_t depth, argument
202 f.depth = depth;
238 r->depth = info.depth;
H A Dxf86drmMode.h192 uint32_t depth; member in struct:_drmModeFB
297 extern int drmModeAddFB(int fd, uint32_t width, uint32_t height, uint8_t depth,
/hardware/intel/img/psb_video/src/x11/
H A Dpsb_x11.c124 int depth; local
164 depth = DefaultDepth((Display *)ctx->native_dpy, ctx->x11_screen);
189 ximg = XCreateImage((Display *)ctx->native_dpy, visual, depth, ZPixmap, 0, NULL, width, height, 32, 0);
H A Dpsb_coverlay.c405 int depth, i; local
470 depth = DefaultDepth(ctx->native_dpy, 0);
472 ximg = XCreateImage(ctx->native_dpy, visual, depth, ZPixmap, 0, NULL, image_width, image_height, 32, 0);
/hardware/ti/omap4-aah/
H A Dheaptracker.c99 void print_backtrace(const intptr_t *bt, int depth) argument
106 depth = heaptracker_stacktrace(self_bt, MAX_BACKTRACE_DEPTH);
111 for (cnt = 0; cnt < depth && cnt < MAX_BACKTRACE_DEPTH; cnt++) {
371 int depth; local
372 depth = heaptracker_stacktrace(bt, MAX_BACKTRACE_DEPTH);
385 print_backtrace(bt, depth);
390 print_backtrace(bt, depth);
419 int depth; local
420 depth = heaptracker_stacktrace(bt, MAX_BACKTRACE_DEPTH);
433 print_backtrace(bt, depth);
[all...]
/hardware/ti/omap4xxx/
H A Dheaptracker.c99 void print_backtrace(const intptr_t *bt, int depth) argument
106 depth = heaptracker_stacktrace(self_bt, MAX_BACKTRACE_DEPTH);
111 for (cnt = 0; cnt < depth && cnt < MAX_BACKTRACE_DEPTH; cnt++) {
371 int depth; local
372 depth = heaptracker_stacktrace(bt, MAX_BACKTRACE_DEPTH);
385 print_backtrace(bt, depth);
390 print_backtrace(bt, depth);
419 int depth; local
420 depth = heaptracker_stacktrace(bt, MAX_BACKTRACE_DEPTH);
433 print_backtrace(bt, depth);
[all...]
/hardware/intel/img/libdrm/shared-core/
H A Ddrm_mode.h233 __u32 depth; member in struct:drm_mode_fb_cmd
/hardware/samsung_slsi/exynos5/libcamera2/
H A DExynosCameraHWInterface2.cpp74 int depth = 0; local
78 depth = 8;
87 depth = 12;
101 depth = 16;
105 depth = 32;
108 ALOGE("Get depth failed(format : %d)", fmt);
112 return depth;
/hardware/intel/common/libva/va/
H A Dva.h2790 unsigned int depth; /* significant bits per pixel */ member in struct:_VAImageFormat

Completed in 288 milliseconds