Home
last modified time | relevance | path

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

/external/libvpx/libvpx/examples/
Dvp9_lossless_encoder.c85 info.frame_height = strtol(argv[2], NULL, 0); in main()
90 info.frame_height <= 0 || in main()
92 (info.frame_height % 2) != 0) { in main()
93 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
97 info.frame_height, 1)) { in main()
108 cfg.g_h = info.frame_height; in main()
Dvp8cx_set_ref.c129 info.frame_height = strtol(argv[2], NULL, 0); in main()
134 info.frame_height <= 0 || in main()
136 (info.frame_height % 2) != 0) { in main()
137 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
141 info.frame_height, 1)) { in main()
152 cfg.g_h = info.frame_height; in main()
Dsimple_encoder.c191 info.frame_height = strtol(height_arg, NULL, 0); in main()
196 info.frame_height <= 0 || in main()
198 (info.frame_height % 2) != 0) { in main()
199 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
203 info.frame_height, 1)) { in main()
218 cfg.g_h = info.frame_height; in main()
Dset_maps.c186 info.frame_height = strtol(argv[3], NULL, 0); in main()
191 info.frame_height <= 0 || in main()
193 (info.frame_height % 2) != 0) { in main()
194 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main()
198 info.frame_height, 1)) { in main()
209 cfg.g_h = info.frame_height; 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.c660 info.frame_height = cfg.g_h; in main()
/external/libvpx/libvpx/vp9/common/
Dvp9_reconintra.c133 int frame_width, frame_height; in build_intra_predictors_high() local
147 frame_height = xd->cur_buf->y_height; in build_intra_predictors_high()
150 frame_height = xd->cur_buf->uv_height; in build_intra_predictors_high()
161 if (y0 + bs <= frame_height) { in build_intra_predictors_high()
165 const int extend_bottom = frame_height - y0; in build_intra_predictors_high()
256 int frame_width, frame_height; in build_intra_predictors() local
270 frame_height = xd->cur_buf->y_height; in build_intra_predictors()
273 frame_height = xd->cur_buf->uv_height; in build_intra_predictors()
285 if (y0 + bs <= frame_height) { in build_intra_predictors()
289 const int extend_bottom = frame_height - y0; in build_intra_predictors()
/external/libvpx/libvpx/
Dvideo_common.h19 int frame_height; member
Dvideo_reader.c52 reader->info.frame_height = mem_get_le16(header + 14); in vpx_video_reader_open()
Dvideo_writer.c27 cfg.g_h = info->frame_height; in write_header()
/external/drm_hwcomposer/
Dglworker.cpp572 GLint frame_height = framebuffer->getHeight(); in Composite() local
613 glViewport(0, 0, frame_width, frame_height); in Composite()
646 cmd.bounds[1] / (float)frame_height, in Composite()
648 (cmd.bounds[3] - cmd.bounds[1]) / (float)frame_height); 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
573 frame_height = ref_frame_buf->buf.y_crop_height; in dec_build_inter_predictors()
577 frame_height = ref_frame_buf->buf.uv_crop_height; in dec_build_inter_predictors()
638 (frame_width & 0x7) || (frame_height & 0x7)) { in dec_build_inter_predictors()
665 y0 < 0 || y0 > frame_height - 1 || y1 < 0 || y1 > frame_height - 1) { in dec_build_inter_predictors()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h143 int frame_height[FRAME_SCALE_STEPS]; member
Dvp9_firstpass.c1250 rc->frame_height[i] = (h * 16) / frame_scale_factor[i]; in vp9_init_subsampling()
1261 *scaled_frame_height = rc->frame_height[rc->frame_size_selector]; in calculate_coded_size()