m_option: remove an outdated ancient comment

The exact type name (m_obj_list_t) was removed in 2013. I don't think
this stub comment helps much with understanding this complicated thing
anyway (this code is for the --vf/--af options, and makes up almost half
of m_option.c).
This commit is contained in:
wm4 2019-11-28 18:08:25 +01:00
parent f95cdb2e97
commit 0cd612530c
1 changed files with 1 additions and 7 deletions

View File

@ -63,6 +63,7 @@ extern const m_option_type_t m_option_type_geometry;
extern const m_option_type_t m_option_type_size_box;
extern const m_option_type_t m_option_type_channels;
extern const m_option_type_t m_option_type_aspect;
extern const m_option_type_t m_option_type_obj_settings_list;
extern const m_option_type_t m_option_type_node;
// Used internally by m_config.c
@ -180,13 +181,6 @@ typedef struct m_obj_settings {
char **attribs;
} m_obj_settings_t;
// A parser to set up a list of objects.
/** It creates a NULL terminated array \ref m_obj_settings. The option priv
* field (\ref m_option::priv) must point to a \ref m_obj_list_t describing
* the available object types.
*/
extern const m_option_type_t m_option_type_obj_settings_list;
struct m_opt_choice_alternatives {
char *name;
int value;