HomeSort by relevance Sort by last modified time
    Searched refs:g_h (Results 1 - 25 of 27) sorted by null

1 2

  /external/mesa3d/src/gallium/drivers/softpipe/
sp_compute.c 42 int g_w, int g_h, int g_d,
69 machine->SystemValue[i].xyzw[1].i[j] = g_h;
86 int g_w, int g_h, int g_d,
95 machine->SystemValue[i].xyzw[1].i[j] = g_h;
111 int g_w, int g_h, int g_d, int num_threads,
120 grp_hit_barrier |= cs_run(cs, g_w, g_h, g_d, machines[i], restart_threads);
177 int g_w, g_h, g_d; local
223 for (g_h = 0; g_h < grid_size[1]; g_h++)
    [all...]
  /external/libvpx/libvpx/
ivfenc.c 28 mem_put_le16(header + 14, cfg->g_h); // height
webmenc.cc 44 static_cast<int>(cfg->g_h), kVideoTrackNumber);
61 video_track->set_display_height(cfg->g_h);
video_writer.c 27 cfg.g_h = info->frame_height;
vpxenc.c     [all...]
  /external/libvpx/libvpx/examples/
set_maps.c 69 roi.rows = (cfg->g_h + 15) / 16;
101 map.rows = (cfg->g_h + 15) / 16;
117 map.rows = (cfg->g_h + 15) / 16;
198 cfg.g_h = info.frame_height;
202 (unsigned int)(bits_per_pixel_per_frame * cfg.g_w * cfg.g_h * fps / 1000);
vp8_multi_resolution_encoder.c 137 mem_put_le16(header + 14, cfg->g_h); /* height */
413 cfg[0].g_h = height;
451 unsigned int ih = cfg[i - 1].g_h * dsf[i - 1].den + dsf[i - 1].num - 1;
453 cfg[i].g_h = ih / dsf[i - 1].num;
459 if ((cfg[i].g_h) % 2) cfg[i].g_h++;
470 if (!vpx_img_alloc(&raw[i], VPX_IMG_FMT_I420, cfg[i].g_w, cfg[i].g_h, 32))
471 die("Failed to allocate image", cfg[i].g_w, cfg[i].g_h);
560 length_frame = cfg[i].g_w * cfg[i].g_h * 3 / 2;
vp9_spatial_svc_encoder.c 201 enc_cfg->g_h = default_height;
223 enc_cfg->g_h = arg_parse_uint(&arg);
368 if (enc_cfg->g_w < 16 || enc_cfg->g_w % 2 || enc_cfg->g_h < 16 ||
369 enc_cfg->g_h % 2)
370 die("Invalid resolution: %d x %d\n", enc_cfg->g_w, enc_cfg->g_h);
380 enc_cfg->g_h, enc_cfg->g_timebase.num, enc_cfg->g_timebase.den,
646 enc_cfg.g_w, enc_cfg.g_h, 32)) {
647 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h);
650 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32)) {
651 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h);
    [all...]
twopass_encoder.c 157 cfg->g_h,
233 cfg.g_h = h;
simple_encoder.c 208 cfg.g_h = info.frame_height;
vp8cx_set_ref.c 146 cfg.g_h = info.frame_height;
vp9_lossless_encoder.c 102 cfg.g_h = info.frame_height;
vpx_temporal_svc_encoder.c 174 roi->rows = (cfg->g_h + 15) / 16;
660 cfg.g_h = height;
741 info.frame_height = cfg.g_h;
789 if (cfg.g_threads > 1 && ((cfg.g_w > 320 && cfg.g_h > 240) || speed < 7))
799 svc_params.scaling_factor_num[0] = cfg.g_h;
800 svc_params.scaling_factor_den[0] = cfg.g_h;
    [all...]
vp9cx_set_ref.c 363 cfg.g_h = info.frame_height;
  /external/libvpx/libvpx/test/
encode_api_test.cc 95 cfg.g_h = height;
143 cfg[0].g_h = height;
168 cfg[1].g_h = height_down;
encode_test_driver.cc 29 cfg_.g_h = img->d_h;
77 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
79 cfg_.g_h = img->d_h;
resize_test.cc 51 mem_put_le16(header + 14, cfg->g_h); /* height */
424 cfg_.g_h = 288;
532 cfg_.g_h = 288;
539 unsigned int last_h = cfg_.g_h;
570 cfg_.g_h = 288;
581 unsigned int last_h = cfg_.g_h;
svc_test.cc 55 codec_enc_.g_h = kHeight;
115 test_file_name_, codec_enc_.g_w, codec_enc_.g_h,
183 test_file_name_, codec_enc_.g_w, codec_enc_.g_h,
754 codec_enc_.g_h = 144;
776 codec_enc_.g_h = 144;
  /external/libvpx/libvpx/vpx/
vpx_encoder.h 327 unsigned int g_h; member in struct:vpx_codec_enc_cfg
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 134 RANGE_CHECK(cfg, g_h, 1, 16383); /* 14 bits available */
268 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
282 oxcf->Height = cfg.g_h;
431 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) {
435 (ctx->cpi->initial_height && (int)cfg->g_h > ctx->cpi->initial_height))
585 int mb_cols = ((cfg->g_h + 15) >> 4);
637 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 156 RANGE_CHECK(cfg, g_h, 1, 65535); // 16 bits available
204 RANGE_CHECK(cfg, rc_scaled_height, 0, cfg->g_h);
391 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h)
475 oxcf->height = cfg->g_h;
658 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) {
661 if (!valid_ref_frame_size(ctx->cfg.g_w, ctx->cfg.g_h, cfg->g_w, cfg->g_h) ||
663 (ctx->cpi->initial_height && (int)cfg->g_h > ctx->cpi->initial_height))
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 538 configurations_[0].g_h = inst->height;
543 configurations_[0].g_w, configurations_[0].g_h, number_of_cores);
573 configurations_[i].g_h = inst->simulcastStream[stream_idx].height;
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 288 config_->g_h = codec_.height;
323 NumberOfThreads(config_->g_w, config_->g_h, number_of_cores);
325 cpu_speed_ = GetCpuSpeed(config_->g_w, config_->g_h);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/enc/
SoftVPXEncoder.cpp 127 mCodecConfiguration->g_h = mHeight;
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxEnc.cpp 138 mCodecConfiguration->g_h = mIntf->getHeight();

Completed in 333 milliseconds

1 2