Home | History | Annotate | Download | only in libvpx

Lines Matching refs:arg_def_t

866 static const arg_def_t debugmode = ARG_DEF("D", "debug", 0,
868 static const arg_def_t outputfile = ARG_DEF("o", "output", 1,
870 static const arg_def_t use_yv12 = ARG_DEF(NULL, "yv12", 0,
872 static const arg_def_t use_i420 = ARG_DEF(NULL, "i420", 0,
874 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1,
876 static const arg_def_t passes = ARG_DEF("p", "passes", 1,
878 static const arg_def_t pass_arg = ARG_DEF(NULL, "pass", 1,
880 static const arg_def_t fpf_name = ARG_DEF(NULL, "fpf", 1,
882 static const arg_def_t limit = ARG_DEF(NULL, "limit", 1,
884 static const arg_def_t deadline = ARG_DEF("d", "deadline", 1,
886 static const arg_def_t best_dl = ARG_DEF(NULL, "best", 0,
888 static const arg_def_t good_dl = ARG_DEF(NULL, "good", 0,
890 static const arg_def_t rt_dl = ARG_DEF(NULL, "rt", 0,
892 static const arg_def_t verbosearg = ARG_DEF("v", "verbose", 0,
894 static const arg_def_t psnrarg = ARG_DEF(NULL, "psnr", 0,
896 static const arg_def_t framerate = ARG_DEF(NULL, "fps", 1,
898 static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0,
900 static const arg_def_t *main_args[] =
909 static const arg_def_t usage = ARG_DEF("u", "usage", 1,
911 static const arg_def_t threads = ARG_DEF("t", "threads", 1,
913 static const arg_def_t profile = ARG_DEF(NULL, "profile", 1,
915 static const arg_def_t width = ARG_DEF("w", "width", 1,
917 static const arg_def_t height = ARG_DEF("h", "height", 1,
919 static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1,
921 static const arg_def_t error_resilient = ARG_DEF(NULL, "error-resilient", 1,
923 static const arg_def_t lag_in_frames = ARG_DEF(NULL, "lag-in-frames", 1,
926 static const arg_def_t *global_args[] =
933 static const arg_def_t dropframe_thresh = ARG_DEF(NULL, "drop-frame", 1,
935 static const arg_def_t resize_allowed = ARG_DEF(NULL, "resize-allowed", 1,
937 static const arg_def_t resize_up_thresh = ARG_DEF(NULL, "resize-up", 1,
939 static const arg_def_t resize_down_thresh = ARG_DEF(NULL, "resize-down", 1,
947 static const arg_def_t end_usage = ARG_DEF_ENUM(NULL, "end-usage", 1,
949 static const arg_def_t target_bitrate = ARG_DEF(NULL, "target-bitrate", 1,
951 static const arg_def_t min_quantizer = ARG_DEF(NULL, "min-q", 1,
953 static const arg_def_t max_quantizer = ARG_DEF(NULL, "max-q", 1,
955 static const arg_def_t undershoot_pct = ARG_DEF(NULL, "undershoot-pct", 1,
957 static const arg_def_t overshoot_pct = ARG_DEF(NULL, "overshoot-pct", 1,
959 static const arg_def_t buf_sz = ARG_DEF(NULL, "buf-sz", 1,
961 static const arg_def_t buf_initial_sz = ARG_DEF(NULL, "buf-initial-sz", 1,
963 static const arg_def_t buf_optimal_sz = ARG_DEF(NULL, "buf-optimal-sz", 1,
965 static const arg_def_t *rc_args[] =
974 static const arg_def_t bias_pct = ARG_DEF(NULL, "bias-pct", 1,
976 static const arg_def_t minsection_pct = ARG_DEF(NULL, "minsection-pct", 1,
978 static const arg_def_t maxsection_pct = ARG_DEF(NULL, "maxsection-pct", 1,
980 static const arg_def_t *rc_twopass_args[] =
986 static const arg_def_t kf_min_dist = ARG_DEF(NULL, "kf-min-dist", 1,
988 static const arg_def_t kf_max_dist = ARG_DEF(NULL, "kf-max-dist", 1,
990 static const arg_def_t kf_disabled = ARG_DEF(NULL, "disable-kf", 0,
992 static const arg_def_t *kf_args[] =
999 static const arg_def_t noise_sens = ARG_DEF(NULL, "noise-sensitivity", 1,
1001 static const arg_def_t sharpness = ARG_DEF(NULL, "sharpness", 1,
1003 static const arg_def_t static_thresh = ARG_DEF(NULL, "static-thresh", 1,
1008 static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1,
1014 static const arg_def_t token_parts = ARG_DEF(NULL, "token-parts", 1,
1016 static const arg_def_t auto_altref = ARG_DEF(NULL, "auto-alt-ref", 1,
1018 static const arg_def_t arnr_maxframes = ARG_DEF(NULL, "arnr-maxframes", 1,
1020 static const arg_def_t arnr_strength = ARG_DEF(NULL, "arnr-strength", 1,
1022 static const arg_def_t arnr_type = ARG_DEF(NULL, "arnr-type", 1,
1029 static const arg_def_t tune_ssim = ARG_DEF_ENUM(NULL, "tune", 1,
1031 static const arg_def_t cq_level = ARG_DEF(NULL, "cq-level", 1,
1034 static const arg_def_t *vp8_args[] =
1050 static const arg_def_t *no_args[] = { NULL };
1107 static const arg_def_t **ctrl_args = no_args;