]> git.sesse.net Git - vlc/commitdiff
Document a bit option flags.
authorLaurent Aimar <fenrir@videolan.org>
Wed, 28 Jan 2009 20:09:11 +0000 (21:09 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 28 Jan 2009 20:09:52 +0000 (21:09 +0100)
include/vlc_input_item.h

index fa97b061cedac33b91f95ecf78936b9a31ec73ea..fa90d21fba97796b5030cb564a91e31e0676161d 100644 (file)
@@ -118,7 +118,12 @@ VLC_EXPORT( void, input_item_AddSubItem, ( input_item_t *p_parent, input_item_t
  */
 enum input_item_option_e
 {
+    /* Allow VLC to trust the given option.
+     * By default options are untrusted */
     VLC_INPUT_OPTION_TRUSTED = 0x2,
+
+    /* Change the value associated to an option if already present, otherwise
+     * add the option */
     VLC_INPUT_OPTION_UNIQUE  = 0x100,
 };