Skip to content

Commit

Permalink
m_option: don't overlap UPDATE and M_OPT constant values
Browse files Browse the repository at this point in the history
UPDATE_CLIPBOARD currently has the same value as M_OPT_DEFAULT_NAN, so
increment all constants after UPDATE_OPT_LAST. But make them start from
the end (63) so we can add more UPDATE flags without either forgetting
to increase them like in e1d30c4, or having to increase them each
time like in a5937ac.

Also increment M_OPT_NOCFG to not overlap with M_OPT_TYPE_USES_RANGE.
  • Loading branch information
guidocella committed Dec 8, 2024
1 parent 8d20b72 commit 3f76607
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions options/m_option.h
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ struct m_option {
const m_option_type_t *type;

// See \ref OptionFlags.
unsigned int flags;
uint64_t flags;

// Always force an option update even if the written value does not change.
bool force_update;
Expand Down Expand Up @@ -424,63 +424,63 @@ struct m_option {
char *format_file_size(int64_t size);

// The option is forbidden in config files.
#define M_OPT_NOCFG (1 << 2)
#define M_OPT_NOCFG (UINT64_C(1) << 3)

// The option should be set during command line pre-parsing
#define M_OPT_PRE_PARSE (1 << 4)
#define M_OPT_PRE_PARSE (UINT64_C(1) << 4)

// The option expects a file name (or a list of file names)
#define M_OPT_FILE (1 << 5)
#define M_OPT_FILE (UINT64_C(1) << 5)

// Do not add as property.
#define M_OPT_NOPROP (1 << 6)
#define M_OPT_NOPROP (UINT64_C(1) << 6)

// Enable special semantics for some options when parsing the string "help".
#define M_OPT_HAVE_HELP (1 << 7)
#define M_OPT_HAVE_HELP (UINT64_C(1) << 7)

// The following are also part of the M_OPT_* flags, and are used to update
// certain groups of options.
#define UPDATE_OPT_FIRST (1 << 8)
#define UPDATE_TERM (1 << 8) // terminal options
#define UPDATE_SUB_FILT (1 << 9) // subtitle filter options
#define UPDATE_OSD (1 << 10) // related to OSD rendering
#define UPDATE_BUILTIN_SCRIPTS (1 << 11) // osc/ytdl/stats
#define UPDATE_IMGPAR (1 << 12) // video image params overrides
#define UPDATE_INPUT (1 << 13) // mostly --input-* options
#define UPDATE_AUDIO (1 << 14) // --audio-channels etc.
#define UPDATE_PRIORITY (1 << 15) // --priority (Windows-only)
#define UPDATE_SCREENSAVER (1 << 16) // --stop-screensaver
#define UPDATE_VOL (1 << 17) // softvol related options
#define UPDATE_LAVFI_COMPLEX (1 << 18) // --lavfi-complex
#define UPDATE_HWDEC (1 << 20) // --hwdec
#define UPDATE_DVB_PROG (1 << 21) // some --dvbin-...
#define UPDATE_SUB_HARD (1 << 22) // subtitle opts. that need full reinit
#define UPDATE_SUB_EXTS (1 << 23) // update internal list of sub exts
#define UPDATE_VIDEO (1 << 24) // force redraw if needed
#define UPDATE_VO (1 << 25) // reinit the VO
#define UPDATE_CLIPBOARD (1 << 26) // reinit the clipboard
#define UPDATE_OPT_LAST (1 << 26)
#define UPDATE_OPT_FIRST (UINT64_C(1) << 8)
#define UPDATE_TERM (UINT64_C(1) << 8) // terminal options
#define UPDATE_SUB_FILT (UINT64_C(1) << 9) // subtitle filter options
#define UPDATE_OSD (UINT64_C(1) << 10) // related to OSD rendering
#define UPDATE_BUILTIN_SCRIPTS (UINT64_C(1) << 11) // osc/ytdl/stats
#define UPDATE_IMGPAR (UINT64_C(1) << 12) // video image params overrides
#define UPDATE_INPUT (UINT64_C(1) << 13) // mostly --input-* options
#define UPDATE_AUDIO (UINT64_C(1) << 14) // --audio-channels etc.
#define UPDATE_PRIORITY (UINT64_C(1) << 15) // --priority (Windows-only)
#define UPDATE_SCREENSAVER (UINT64_C(1) << 16) // --stop-screensaver
#define UPDATE_VOL (UINT64_C(1) << 17) // softvol related options
#define UPDATE_LAVFI_COMPLEX (UINT64_C(1) << 18) // --lavfi-complex
#define UPDATE_HWDEC (UINT64_C(1) << 20) // --hwdec
#define UPDATE_DVB_PROG (UINT64_C(1) << 21) // some --dvbin-...
#define UPDATE_SUB_HARD (UINT64_C(1) << 22) // subtitle opts. that need full reinit
#define UPDATE_SUB_EXTS (UINT64_C(1) << 23) // update internal list of sub exts
#define UPDATE_VIDEO (UINT64_C(1) << 24) // force redraw if needed
#define UPDATE_VO (UINT64_C(1) << 25) // reinit the VO
#define UPDATE_CLIPBOARD (UINT64_C(1) << 26) // reinit the clipboard
#define UPDATE_OPT_LAST (UINT64_C(1) << 26)

// All bits between _FIRST and _LAST (inclusive)
#define UPDATE_OPTS_MASK \
(((UPDATE_OPT_LAST << 1) - 1) & ~(unsigned)(UPDATE_OPT_FIRST - 1))
(((UPDATE_OPT_LAST << 1) - 1) & ~(UPDATE_OPT_FIRST - 1))

// type_float/type_double: string "default" is parsed as NaN (and reverse)
#define M_OPT_DEFAULT_NAN (1 << 26)
#define M_OPT_DEFAULT_NAN (UINT64_C(1) << 59)

// type time: string "no" maps to MP_NOPTS_VALUE (if unset, NOPTS is rejected)
// and
// parsing: "--no-opt" is parsed as "--opt=no"
#define M_OPT_ALLOW_NO (1 << 27)
#define M_OPT_ALLOW_NO (UINT64_C(1) << 60)

// type channels: disallow "auto" (still accept ""), limit list to at most 1 item.
#define M_OPT_CHANNELS_LIMITED (1 << 28)
#define M_OPT_CHANNELS_LIMITED (UINT64_C(1) << 61)

// type_float/type_double: controls if pretty print should trim trailing zeros
#define M_OPT_FIXED_LEN_PRINT (1 << 29)
#define M_OPT_FIXED_LEN_PRINT (UINT64_C(1) << 62)

// Like M_OPT_TYPE_OPTIONAL_PARAM.
#define M_OPT_OPTIONAL_PARAM (1 << 30)
#define M_OPT_OPTIONAL_PARAM (UINT64_C(1) << 63)

// These are kept for compatibility with older code.
#define CONF_NOCFG M_OPT_NOCFG
Expand All @@ -492,15 +492,15 @@ char *format_file_size(int64_t size);
// ambiguous syntax is used ("--opt value"), the command line parser will
// assume that the argument takes no parameter. In config files, these
// options can be used without "=" and value.
#define M_OPT_TYPE_OPTIONAL_PARAM (1 << 0)
#define M_OPT_TYPE_OPTIONAL_PARAM (UINT64_C(1) << 0)

// Behaves fundamentally like a choice or a superset of it (all allowed string
// values are from a fixed set, although other types of values like numbers
// might be allowed too). E.g. m_option_type_choice and m_option_type_flag.
#define M_OPT_TYPE_CHOICE (1 << 1)
#define M_OPT_TYPE_CHOICE (UINT64_C(1) << 1)

// When m_option.min/max are set, they denote a value range.
#define M_OPT_TYPE_USES_RANGE (1 << 2)
#define M_OPT_TYPE_USES_RANGE (UINT64_C(1) << 2)

///////////////////////////// Parser flags /////////////////////////////////

Expand Down

0 comments on commit 3f76607

Please sign in to comment.