summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-11-28 18:08:25 +0100
committerwm4 <wm4@nowhere>2019-11-29 12:14:43 +0100
commit0cd612530cf39639fe8be7b4b5ce6b0c771b1a1d (patch)
treed4ffcba420868a4a06fda6ea75fb0cd9d7640cb4
parentf95cdb2e97b0707a4a79d6278183f78096310788 (diff)
downloadmpv-0cd612530cf39639fe8be7b4b5ce6b0c771b1a1d.tar.bz2
mpv-0cd612530cf39639fe8be7b4b5ce6b0c771b1a1d.tar.xz
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).
-rw-r--r--options/m_option.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/options/m_option.h b/options/m_option.h
index c9538cf628..33cbe19986 100644
--- a/options/m_option.h
+++ b/options/m_option.h
@@ -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;