options: allow selecting track ID 0 too

Blergh. Now needed for --ff-aid and friends.
This commit is contained in:
wm4 2014-10-21 13:21:57 +02:00
parent f0f83ff366
commit f8e254864c
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ extern const char m_option_path_separator;
OPT_GENERAL(struct m_geometry, __VA_ARGS__, .type = &m_option_type_size_box)
#define OPT_TRACKCHOICE(name, var) \
OPT_CHOICE_OR_INT(name, var, 0, 1, 8190, ({"no", -2}, {"auto", -1}))
OPT_CHOICE_OR_INT(name, var, 0, 0, 8190, ({"no", -2}, {"auto", -1}))
#define OPT_VID_STEREO_MODE(...) \
OPT_GENERAL(int, __VA_ARGS__, .type = &m_option_vid_stereo_mode)