OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8BORDERINPIXELS
(Results
1 - 13
of
13
) sorted by null
/external/libvpx/libvpx/vpx_scale/
vpx_scale_asm_offsets.c
30
DEFINE(VP8BORDERINPIXELS_VAL,
VP8BORDERINPIXELS
);
39
ct_assert(VP8BORDERINPIXELS_VAL,
VP8BORDERINPIXELS
== 32)
yv12config.h
20
#define
VP8BORDERINPIXELS
32
/external/libvpx/libvpx/vp8/common/
alloccommon.c
65
if (vp8_yv12_alloc_frame_buffer(&oci->yv12_fb[i], width, height,
VP8BORDERINPIXELS
) < 0)
79
if (vp8_yv12_alloc_frame_buffer(&oci->temp_scale_frame, width, 16,
VP8BORDERINPIXELS
) < 0)
102
if (vp8_yv12_alloc_frame_buffer(&oci->post_proc_buffer, width, height,
VP8BORDERINPIXELS
) < 0)
postproc.c
757
width, height,
VP8BORDERINPIXELS
))
[
all
...]
/external/libvpx/libvpx/vp8/decoder/
threading.c
588
int lasty = yv12_fb_lst->y_width +
VP8BORDERINPIXELS
;
589
int lastuv = (yv12_fb_lst->y_width>>1) + (
VP8BORDERINPIXELS
>>1);
802
CHECK_MEM_ERROR(pbi->mt_yabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (width + (
VP8BORDERINPIXELS
<<1))));
806
CHECK_MEM_ERROR(pbi->mt_uabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width +
VP8BORDERINPIXELS
)));
810
CHECK_MEM_ERROR(pbi->mt_vabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width +
VP8BORDERINPIXELS
)));
877
vpx_memset(pbi->mt_yabove_row[0] +
VP8BORDERINPIXELS
-1, 127, yv12_fb_new->y_width + 5);
878
vpx_memset(pbi->mt_uabove_row[0] + (
VP8BORDERINPIXELS
>>1)-1, 127, (yv12_fb_new->y_width>>1) +5);
879
vpx_memset(pbi->mt_vabove_row[0] + (
VP8BORDERINPIXELS
>>1)-1, 127, (yv12_fb_new->y_width>>1) +5);
883
vpx_memset(pbi->mt_yabove_row[j] +
VP8BORDERINPIXELS
-1, (unsigned char)129, 1);
884
vpx_memset(pbi->mt_uabove_row[j] + (
VP8BORDERINPIXELS
>>1)-1, (unsigned char)129, 1)
[
all
...]
/external/libvpx/libvpx/vp8/encoder/
denoising.c
148
height,
VP8BORDERINPIXELS
)
161
height,
VP8BORDERINPIXELS
) < 0)
ethreading.c
145
x->mv_col_min = -((mb_col * 16) + (
VP8BORDERINPIXELS
- 16));
146
x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (
VP8BORDERINPIXELS
- 16);
147
x->mv_row_min = -((mb_row * 16) + (
VP8BORDERINPIXELS
- 16));
148
x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) + (
VP8BORDERINPIXELS
- 16);
lookahead.c
93
width, height,
VP8BORDERINPIXELS
))
encodeframe.c
422
x->mv_row_min = -((mb_row * 16) + (
VP8BORDERINPIXELS
- 16));
424
+ (
VP8BORDERINPIXELS
- 16);
446
x->mv_col_min = -((mb_col * 16) + (
VP8BORDERINPIXELS
- 16));
448
+ (
VP8BORDERINPIXELS
- 16);
[
all
...]
firstpass.c
593
x->mv_row_min = -((mb_row * 16) + (
VP8BORDERINPIXELS
- 16));
594
x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) + (
VP8BORDERINPIXELS
- 16);
632
x->mv_col_min = -((mb_col * 16) + (
VP8BORDERINPIXELS
- 16));
633
x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (
VP8BORDERINPIXELS
- 16);
[
all
...]
onyx_if.c
[
all
...]
/external/libvpx/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_extendframeborders_neon.asm
21
; we depend on
VP8BORDERINPIXELS
being 32
/external/libvpx/libvpx/vp8/
vp8_dx_iface.c
293
img->h = (yv12->y_height + 2 *
VP8BORDERINPIXELS
+ 15) & ~15;
Completed in 3309 milliseconds