Home
last modified time | relevance | path

Searched refs:ARG_DEF (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/
Dvpxenc.c835 static const arg_def_t debugmode = ARG_DEF("D", "debug", 0,
837 static const arg_def_t outputfile = ARG_DEF("o", "output", 1,
839 static const arg_def_t use_yv12 = ARG_DEF(NULL, "yv12", 0,
841 static const arg_def_t use_i420 = ARG_DEF(NULL, "i420", 0,
843 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1,
845 static const arg_def_t passes = ARG_DEF("p", "passes", 1,
847 static const arg_def_t pass_arg = ARG_DEF(NULL, "pass", 1,
849 static const arg_def_t fpf_name = ARG_DEF(NULL, "fpf", 1,
851 static const arg_def_t limit = ARG_DEF(NULL, "limit", 1,
853 static const arg_def_t deadline = ARG_DEF("d", "deadline", 1,
[all …]
Dvpxdec.c62 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1,
64 static const arg_def_t use_yv12 = ARG_DEF(NULL, "yv12", 0,
66 static const arg_def_t use_i420 = ARG_DEF(NULL, "i420", 0,
68 static const arg_def_t flipuvarg = ARG_DEF(NULL, "flipuv", 0,
70 static const arg_def_t noblitarg = ARG_DEF(NULL, "noblit", 0,
72 static const arg_def_t progressarg = ARG_DEF(NULL, "progress", 0,
74 static const arg_def_t limitarg = ARG_DEF(NULL, "limit", 1,
76 static const arg_def_t postprocarg = ARG_DEF(NULL, "postproc", 0,
78 static const arg_def_t summaryarg = ARG_DEF(NULL, "summary", 0,
80 static const arg_def_t outputfile = ARG_DEF("o", "output", 1,
[all …]
Dargs.h32 #define ARG_DEF(s,l,v,d) {s,l,v,d} macro