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

  /external/libvpx/libvpx/vp8/common/
setupintrarecon.c 14 void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf) {
18 memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
19 for (i = 0; i < ybf->y_height; ++i) {
20 ybf->y_buffer[ybf->y_stride * i - 1] = (unsigned char)129;
23 memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5)
    [all...]
setupintrarecon.h 20 extern void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf);
21 extern void vp8_setup_intra_recon_top_line(YV12_BUFFER_CONFIG *ybf);
extend.h 20 void vp8_extend_mb_row(YV12_BUFFER_CONFIG *ybf, unsigned char *YPtr,
extend.c 129 void vp8_extend_mb_row(YV12_BUFFER_CONFIG *ybf, unsigned char *YPtr,
133 YPtr += ybf->y_stride * 14;
134 UPtr += ybf->uv_stride * 6;
135 VPtr += ybf->uv_stride * 6;
143 YPtr += ybf->y_stride;
144 UPtr += ybf->uv_stride;
145 VPtr += ybf->uv_stride;
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 31 int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf) {
32 if (ybf) {
35 if (ybf->buffer_alloc_sz > 0) {
36 vpx_free(ybf->buffer_alloc);
42 memset(ybf, 0, sizeof(YV12_BUFFER_CONFIG));
50 int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width,
52 if (ybf) {
65 if (!ybf->buffer_alloc) {
66 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size);
72 memset(ybf->buffer_alloc, 0, frame_size)
    [all...]
yv12extend.c 105 void vp8_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) {
106 const int uv_border = ybf->border / 2;
108 assert(ybf->border % 2 == 0);
109 assert(ybf->y_height - ybf->y_crop_height < 16);
110 assert(ybf->y_width - ybf->y_crop_width < 16);
111 assert(ybf->y_height - ybf->y_crop_height >= 0);
112 assert(ybf->y_width - ybf->y_crop_width >= 0)
    [all...]
  /external/libaom/libaom/aom_scale/generic/
yv12config.c 31 int aom_free_frame_buffer(YV12_BUFFER_CONFIG *ybf) {
32 if (ybf) {
33 if (ybf->buffer_alloc_sz > 0) {
34 aom_free(ybf->buffer_alloc);
36 if (ybf->y_buffer_8bit) aom_free(ybf->y_buffer_8bit);
41 memset(ybf, 0, sizeof(YV12_BUFFER_CONFIG));
50 YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y,
57 if (ybf) {
65 // The size of ybf->buffer_alloc
    [all...]
yv12extend.c 103 void aom_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf,
105 assert(ybf->border % 2 == 0);
106 assert(ybf->y_height - ybf->y_crop_height < 16);
107 assert(ybf->y_width - ybf->y_crop_width < 16);
108 assert(ybf->y_height - ybf->y_crop_height >= 0);
109 assert(ybf->y_width - ybf->y_crop_width >= 0)
    [all...]
  /external/libaom/libaom/aom_scale/mips/dspr2/
yv12extend_dspr2.c 105 static void extend_frame(YV12_BUFFER_CONFIG *const ybf, int ext_size) {
106 const int c_w = ybf->uv_crop_width;
107 const int c_h = ybf->uv_crop_height;
108 const int ss_x = ybf->uv_width < ybf->y_width;
109 const int ss_y = ybf->uv_height < ybf->y_height;
112 const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height;
113 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width
    [all...]
  /external/libvpx/libvpx/vpx_scale/mips/dspr2/
yv12extend_dspr2.c 103 static void extend_frame(YV12_BUFFER_CONFIG *const ybf, int ext_size) {
104 const int c_w = ybf->uv_crop_width;
105 const int c_h = ybf->uv_crop_height;
106 const int ss_x = ybf->uv_width < ybf->y_width;
107 const int ss_y = ybf->uv_height < ybf->y_height;
110 const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height;
111 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width
    [all...]
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 69 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height,
71 int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width,
73 int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf);
75 int vpx_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height,
89 int vpx_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height,
97 int vpx_free_frame_buffer(YV12_BUFFER_CONFIG *ybf);
  /external/libaom/libaom/aom_scale/
yv12config.h 112 int aom_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height,
123 int aom_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height,
129 int aom_realloc_lookahead_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height,
136 int aom_free_frame_buffer(YV12_BUFFER_CONFIG *ybf);
  /external/libvpx/config/arm-neon/
vpx_scale_rtcd.h 41 void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf);
44 void vpx_extend_frame_borders_c(struct yv12_buffer_config *ybf);
47 void vpx_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf);
  /external/libvpx/config/arm64/
vpx_scale_rtcd.h 41 void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf);
44 void vpx_extend_frame_borders_c(struct yv12_buffer_config *ybf);
47 void vpx_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf);
  /external/libvpx/config/generic/
vpx_scale_rtcd.h 41 void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf);
44 void vpx_extend_frame_borders_c(struct yv12_buffer_config *ybf);
47 void vpx_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf);
  /external/libvpx/config/x86/
vpx_scale_rtcd.h 41 void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf);
44 void vpx_extend_frame_borders_c(struct yv12_buffer_config *ybf);
47 void vpx_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf);
  /external/libvpx/config/x86_64/
vpx_scale_rtcd.h 41 void vp8_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf);
44 void vpx_extend_frame_borders_c(struct yv12_buffer_config *ybf);
47 void vpx_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf);
  /external/libaom/config/arm/config/
aom_scale_rtcd.h 17 void aom_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
20 void aom_extend_frame_borders_y_c(struct yv12_buffer_config *ybf);
23 void aom_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
59 void aom_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
80 int aom_yv12_realloc_with_new_border_c(struct yv12_buffer_config *ybf, int new_border, int byte_alignment, int num_planes);
  /external/libaom/config/arm64/config/
aom_scale_rtcd.h 17 void aom_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
20 void aom_extend_frame_borders_y_c(struct yv12_buffer_config *ybf);
23 void aom_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
59 void aom_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
80 int aom_yv12_realloc_with_new_border_c(struct yv12_buffer_config *ybf, int new_border, int byte_alignment, int num_planes);
  /external/libaom/config/x86/config/
aom_scale_rtcd.h 17 void aom_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
20 void aom_extend_frame_borders_y_c(struct yv12_buffer_config *ybf);
23 void aom_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
59 void aom_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
80 int aom_yv12_realloc_with_new_border_c(struct yv12_buffer_config *ybf, int new_border, int byte_alignment, int num_planes);
  /external/libaom/config/x86_64/config/
aom_scale_rtcd.h 17 void aom_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
20 void aom_extend_frame_borders_y_c(struct yv12_buffer_config *ybf);
23 void aom_extend_frame_inner_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
59 void aom_yv12_extend_frame_borders_c(struct yv12_buffer_config *ybf, const int num_planes);
80 int aom_yv12_realloc_with_new_border_c(struct yv12_buffer_config *ybf, int new_border, int byte_alignment, int num_planes);
  /external/libvpx/libvpx/vp8/decoder/
decodeframe.c 255 static void yv12_extend_frame_top_c(YV12_BUFFER_CONFIG *ybf) {
266 Border = ybf->border;
267 plane_stride = ybf->y_stride;
268 src_ptr1 = ybf->y_buffer - Border;
279 plane_stride = ybf->uv_stride;
281 src_ptr1 = ybf->u_buffer - Border;
293 src_ptr1 = ybf->v_buffer - Border;
302 static void yv12_extend_frame_bottom_c(YV12_BUFFER_CONFIG *ybf) {
314 Border = ybf->border;
315 plane_stride = ybf->y_stride
    [all...]
  /external/libvpx/libvpx/test/
vpx_scale_test.cc 33 typedef void (*ExtendFrameBorderFunc)(YV12_BUFFER_CONFIG *ybf);
  /external/libaom/libaom/av1/common/
onyxc_int.h 598 YV12_BUFFER_CONFIG *ybf = &frame_bufs[i].buf; local
599 ybf->y_buffer = ybf->store_buf_adr[0];
600 ybf->u_buffer = ybf->store_buf_adr[1];
601 ybf->v_buffer = ybf->store_buf_adr[2];
602 ybf->use_external_reference_buffers = 0;
    [all...]

Completed in 1101 milliseconds