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

  /external/libvpx/libvpx/vpx_dsp/arm/
deblock_neon.c 414 uint8x8_t s, above_context[8]; local
421 above_context[i] = s;
455 x = vreinterpretq_s16_u16(vsubl_u8(below_context, above_context[0]));
456 y = vreinterpretq_s16_u16(vaddl_u8(below_context, above_context[0]));
473 above_context[0] = above_context[1];
474 above_context[1] = above_context[2];
475 above_context[2] = above_context[3]
    [all...]
  /external/libvpx/libvpx/vp8/common/
alloccommon.c 40 vpx_free(oci->above_context);
47 oci->above_context = NULL;
99 oci->above_context =
102 if (!oci->above_context) goto allocation_fail;
onyxc_int.h 148 ENTROPY_CONTEXT_PLANES *above_context; /* row of context for each plane */ member in struct:VP8Common
blockd.h 228 ENTROPY_CONTEXT_PLANES *above_context; member in struct:macroblockd
  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 117 vpx_free(cm->above_context);
118 cm->above_context = NULL;
154 vpx_free(cm->above_context);
155 cm->above_context = (ENTROPY_CONTEXT *)vpx_calloc(
157 sizeof(*cm->above_context));
158 if (!cm->above_context) goto fail;
vp9_onyxc_int.h 282 ENTROPY_CONTEXT *above_context; member in struct:VP9Common
354 xd->above_context[i] =
355 cm->above_context +
356 i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
384 pd->above_context = &xd->above_context[i][above_idx >> pd->subsampling_x];
vp9_blockd.h 122 ENTROPY_CONTEXT *above_context; member in struct:macroblockd_plane
181 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; member in struct:macroblockd
250 memset(pd->above_context, 0,
vp9_blockd.c 90 ENTROPY_CONTEXT *const a = pd->above_context + aoff;
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 119 a = (ENTROPY_CONTEXT *)xd->above_context + 8;
207 a = (ENTROPY_CONTEXT *)xd->above_context + tmp1;
278 a = (ENTROPY_CONTEXT *)xd->above_context + tmp1;
506 ENTROPY_CONTEXT *A = (ENTROPY_CONTEXT *)xd->above_context;
532 memset(x->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES));
535 memset(x->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) - 1);
encodemb.c 399 memcpy(&t_above, x->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
436 if (!x->e_mbd.above_context) return;
440 memcpy(&t_above, x->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
469 if (!x->e_mbd.above_context) return;
473 memcpy(&t_above, x->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
encodeframe.c 366 xd->above_context = cm->above_context;
561 xd->above_context++;
619 memset(cm->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) * cm->mb_cols);
    [all...]
ethreading.c 95 xd->above_context = cm->above_context;
282 xd->above_context++;
rdopt.c 452 memcpy(&t_above, mb->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
598 memcpy(&t_above, mb->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
690 memcpy(&t_above, mb->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
968 memcpy(&t_above, x->e_mbd.above_context, sizeof(ENTROPY_CONTEXT_PLANES));
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
detokenize.c 18 ENTROPY_CONTEXT *a_ctx = ((ENTROPY_CONTEXT *)x->above_context);
149 ENTROPY_CONTEXT *a_ctx = ((ENTROPY_CONTEXT *)x->above_context);
decodeframe.c 498 xd->above_context = pc->above_context;
595 xd->above_context++;
    [all...]
threading.c 316 xd->above_context = pc->above_context;
528 xd->above_context++;
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 379 pt = get_entropy_context(tx_size, pd->above_context + col,
vp9_rd.c 453 const ENTROPY_CONTEXT *const above = pd->above_context;
vp9_encodeframe.c     [all...]
vp9_rdopt.c     [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_detokenize.c 241 ENTROPY_CONTEXT *a = pd->above_context + x;
vp9_decodeframe.c 718 memset(pd->above_context, 0, sizeof(ENTROPY_CONTEXT) * pd->n4_w);
    [all...]

Completed in 780 milliseconds