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

  /external/libvpx/vpx/
vpx_encoder.h 527 * (as governed by the #kf_min_dist and #kf_max_dist parameters)
535 * placing a keyframe nearer than kf_min_dist to the previous keyframe. At
536 * least kf_min_dist frames non-keyframes will be coded before the next
537 * keyframe. Set kf_min_dist equal to kf_max_dist for a fixed interval.
539 unsigned int kf_min_dist; member in struct:vpx_codec_enc_cfg
546 * A value of 0 implies all frames will be keyframes. Set kf_min_dist
  /external/libvpx/
ivfenc.c 504 static const arg_def_t kf_min_dist = ARG_DEF(NULL, "kf-min-dist", 1, variable
512 &kf_min_dist, &kf_max_dist, &kf_disabled, NULL
801 else if (arg_match(&arg, &kf_min_dist, argi))
802 cfg.kf_min_dist = arg_parse_uint(&arg);
962 SHOW(kf_min_dist);
    [all...]
  /external/libvpx/vp8/
vp8_cx_iface.c 160 if (cfg->kf_mode != VPX_KF_DISABLED && cfg->kf_min_dist != cfg->kf_max_dist
161 && cfg->kf_min_dist > 0)
162 ERROR("kf_min_dist not supported in auto mode, use 0 "
308 && cfg.kf_min_dist != cfg.kf_max_dist;
309 //oxcf->kf_min_dist = cfg.kf_min_dis;
679 && ctx->cfg.kf_min_dist == ctx->cfg.kf_max_dist)
681 if (++ctx->fixed_kf_cntr > ctx->cfg.kf_min_dist)
    [all...]

Completed in 40 milliseconds