Home
last modified time | relevance | path

Searched refs:frame_width (Results 1 – 16 of 16) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_reconintra.c133 int frame_width, frame_height; in build_intra_predictors_high() local
146 frame_width = xd->cur_buf->y_width; in build_intra_predictors_high()
149 frame_width = xd->cur_buf->uv_width; in build_intra_predictors_high()
187 if (x0 + 2 * bs <= frame_width) { in build_intra_predictors_high()
194 } else if (x0 + bs <= frame_width) { in build_intra_predictors_high()
195 const int r = frame_width - x0; in build_intra_predictors_high()
199 x0 + 2 * bs - frame_width); in build_intra_predictors_high()
204 } else if (x0 <= frame_width) { in build_intra_predictors_high()
205 const int r = frame_width - x0; in build_intra_predictors_high()
208 x0 + 2 * bs - frame_width); in build_intra_predictors_high()
[all …]
/external/libvpx/libvpx/examples/
Dvp9_lossless_encoder.c84 info.frame_width = strtol(argv[1], NULL, 0); in main()
89 if (info.frame_width <= 0 || in main()
91 (info.frame_width % 2) != 0 || in main()
93 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
96 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
107 cfg.g_w = info.frame_width; in main()
Dvp8cx_set_ref.c128 info.frame_width = strtol(argv[1], NULL, 0); in main()
133 if (info.frame_width <= 0 || in main()
135 (info.frame_width % 2) != 0 || in main()
137 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
140 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
151 cfg.g_w = info.frame_width; in main()
Dsimple_encoder.c190 info.frame_width = strtol(width_arg, NULL, 0); in main()
195 if (info.frame_width <= 0 || in main()
197 (info.frame_width % 2) != 0 || in main()
199 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
202 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
217 cfg.g_w = info.frame_width; in main()
Dset_maps.c185 info.frame_width = strtol(argv[2], NULL, 0); in main()
190 if (info.frame_width <= 0 || in main()
192 (info.frame_width % 2) != 0 || in main()
194 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
197 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width, in main()
208 cfg.g_w = info.frame_width; in main()
Dsimple_decoder.c147 info->frame_width, info->frame_height, argv[2]); in main()
Dpostproc.c132 info->frame_width, info->frame_height, argv[2]); in main()
Ddecode_with_drops.c146 info->frame_width, info->frame_height, argv[2]); in main()
Dvpx_temporal_svc_encoder.c659 info.frame_width = cfg.g_w; in main()
/external/libvpx/libvpx/
Dvideo_common.h18 int frame_width; member
Dvideo_reader.c51 reader->info.frame_width = mem_get_le16(header + 12); in vpx_video_reader_open()
Dvideo_writer.c26 cfg.g_w = info->frame_width; in write_header()
/external/drm_hwcomposer/
Dglworker.cpp571 GLint frame_width = framebuffer->getWidth(); in Composite() local
613 glViewport(0, 0, frame_width, frame_height); in Composite()
645 glUniform4f(gl_viewport_loc, cmd.bounds[0] / (float)frame_width, in Composite()
647 (cmd.bounds[2] - cmd.bounds[0]) / (float)frame_width, in Composite()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c503 int frame_width, int frame_height, in extend_and_predict() argument
516 x0, y0, b_w, b_h, frame_width, frame_height); in extend_and_predict()
520 x0, y0, b_w, b_h, frame_width, frame_height); in extend_and_predict()
535 int frame_width, int frame_height, in extend_and_predict() argument
546 x0, y0, b_w, b_h, frame_width, frame_height); in extend_and_predict()
566 int xs, ys, x0, y0, x0_16, y0_16, frame_width, frame_height, in dec_build_inter_predictors() local
572 frame_width = ref_frame_buf->buf.y_crop_width; in dec_build_inter_predictors()
576 frame_width = ref_frame_buf->buf.uv_crop_width; in dec_build_inter_predictors()
638 (frame_width & 0x7) || (frame_height & 0x7)) { in dec_build_inter_predictors()
664 if (x0 < 0 || x0 > frame_width - 1 || x1 < 0 || x1 > frame_width - 1 || in dec_build_inter_predictors()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h142 int frame_width[FRAME_SCALE_STEPS]; member
Dvp9_firstpass.c1249 rc->frame_width[i] = (w * 16) / frame_scale_factor[i]; in vp9_init_subsampling()
1260 *scaled_frame_width = rc->frame_width[rc->frame_size_selector]; in calculate_coded_size()