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

  /external/mesa3d/src/gallium/drivers/softpipe/
sp_compute.c 42 int g_w, int g_h, int g_d,
68 machine->SystemValue[i].xyzw[0].i[j] = g_w;
86 int g_w, int g_h, int g_d,
94 machine->SystemValue[i].xyzw[0].i[j] = g_w;
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
224 for (g_w = 0; g_w < grid_size[0]; g_w++)
    [all...]
  /external/libvpx/libvpx/
ivfenc.c 27 mem_put_le16(header + 12, cfg->g_w); // width
webmenc.cc 43 segment->AddVideoTrack(static_cast<int>(cfg->g_w),
59 ((cfg->g_w * par->numerator * 1.0) / par->denominator) + .5);
video_writer.c 26 cfg.g_w = info->frame_width;
vpxenc.c     [all...]
  /external/libvpx/libvpx/examples/
set_maps.c 70 roi.cols = (cfg->g_w + 15) / 16;
102 map.cols = (cfg->g_w + 15) / 16;
118 map.cols = (cfg->g_w + 15) / 16;
197 cfg.g_w = info.frame_width;
202 (unsigned int)(bits_per_pixel_per_frame * cfg.g_w * cfg.g_h * fps / 1000);
vp8_multi_resolution_encoder.c 136 mem_put_le16(header + 12, cfg->g_w); /* width */
411 cfg[0].g_w = width;
449 unsigned int iw = cfg[i - 1].g_w * dsf[i - 1].den + dsf[i - 1].num - 1;
451 cfg[i].g_w = iw / dsf[i - 1].num;
457 if ((cfg[i].g_w) % 2) cfg[i].g_w++;
469 if (!vpx_img_alloc(&raw[i], VPX_IMG_FMT_I420, cfg[i].g_w, cfg[i].g_h, 32))
470 die("Failed to allocate image", cfg[i].g_w, cfg[i].g_h);
559 length_frame = cfg[i].g_w * cfg[i].g_h * 3 / 2;
vp9_spatial_svc_encoder.c 200 enc_cfg->g_w = default_width;
221 enc_cfg->g_w = arg_parse_uint(&arg);
368 if (enc_cfg->g_w < 16 || enc_cfg->g_w % 2 || enc_cfg->g_h < 16 ||
370 die("Invalid resolution: %d x %d\n", enc_cfg->g_w, enc_cfg->g_h);
379 app_input->frames_to_skip, svc_ctx->spatial_layers, enc_cfg->g_w,
645 enc_cfg.g_w, enc_cfg.g_h, 32)) {
646 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h);
649 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32)) {
650 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h)
    [all...]
twopass_encoder.c 156 cfg->g_w,
232 cfg.g_w = w;
simple_encoder.c 207 cfg.g_w = info.frame_width;
vp8cx_set_ref.c 145 cfg.g_w = info.frame_width;
vp9_lossless_encoder.c 101 cfg.g_w = info.frame_width;
vpx_temporal_svc_encoder.c 603 cfg.g_w = width;
684 info.frame_width = cfg.g_w;
727 if (cfg.g_threads > 1 && ((cfg.g_w > 320 && cfg.g_h > 240) || speed < 7))
    [all...]
vp9cx_set_ref.c 362 cfg.g_w = info.frame_width;
  /external/libvpx/libvpx/test/
encode_test_driver.cc 28 cfg_.g_w = img->d_w;
77 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
78 cfg_.g_w = img->d_w;
resize_test.cc 50 mem_put_le16(header + 12, cfg->g_w); /* width */
423 cfg_.g_w = 352;
531 cfg_.g_w = 352;
538 unsigned int last_w = cfg_.g_w;
569 cfg_.g_w = 352;
580 unsigned int last_w = cfg_.g_w;
svc_test.cc 54 codec_enc_.g_w = kWidth;
115 test_file_name_, codec_enc_.g_w, codec_enc_.g_h,
183 test_file_name_, codec_enc_.g_w, codec_enc_.g_h,
753 codec_enc_.g_w = 704;
775 codec_enc_.g_w = 704;
  /external/libvpx/libvpx/vpx/
vpx_encoder.h 320 unsigned int g_w; member in struct:vpx_codec_enc_cfg
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 133 RANGE_CHECK(cfg, g_w, 1, 16383); /* 14 bits available */
268 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
281 oxcf->Width = cfg.g_w;
431 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) {
434 if ((ctx->cpi->initial_width && (int)cfg->g_w > ctx->cpi->initial_width) ||
584 int mb_rows = ((cfg->g_w + 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 155 RANGE_CHECK(cfg, g_w, 1, 65535); // 16 bits available
191 RANGE_CHECK(cfg, rc_scaled_width, 0, cfg->g_w);
377 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h)
450 oxcf->width = cfg->g_w;
632 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) {
635 if (!valid_ref_frame_size(ctx->cfg.g_w, ctx->cfg.g_h, cfg->g_w, cfg->g_h) ||
636 (ctx->cpi->initial_width && (int)cfg->g_w > ctx->cpi->initial_width) ||
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 537 configurations_[0].g_w = inst->width;
543 configurations_[0].g_w, configurations_[0].g_h, number_of_cores);
572 configurations_[i].g_w = inst->simulcastStream[stream_idx].width;
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 287 config_->g_w = codec_.width;
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 126 mCodecConfiguration->g_w = mWidth;
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 404 si->width = enc_cfg->g_w;

Completed in 377 milliseconds