diff --git a/gst-libs/gst/tag/tag.h b/gst-libs/gst/tag/tag.h index e9877ed853..219fe85aa5 100644 --- a/gst-libs/gst/tag/tag.h +++ b/gst-libs/gst/tag/tag.h @@ -517,7 +517,7 @@ GstBuffer * gst_tag_image_data_to_image_buffer (const guint8 * ima guint image_data_len, GstTagImageType image_type); -/* FIXME 0.11: replace with a more general gst_tag_library_init() */ +/* FIXME 0.11: get rid of this awkward register/init function, see tags.c */ void gst_tag_register_musicbrainz_tags (void); diff --git a/gst-libs/gst/tag/tags.c b/gst-libs/gst/tag/tags.c index a8e867c0e0..51f3bc7011 100644 --- a/gst-libs/gst/tag/tags.c +++ b/gst-libs/gst/tag/tags.c @@ -192,7 +192,11 @@ gst_tag_register_tags_internal (gpointer unused) return NULL; } -/* FIXME 0.11: rename this to gst_tag_init() or gst_tag_register_tags() */ +/* FIXME 0.11: rename this to gst_tag_init() or gst_tag_register_tags() or + * even better: make tags auto-register themselves, either by defining them + * to a wrapper func that does the initing, or by adding tag factories so + * that the core can load+register tags automatically when needed. */ + /** * gst_tag_register_musicbrainz_tags *