[vlc-devel] commit: Document a bit option flags. (Laurent Aimar )
git version control
git at videolan.org
Wed Jan 28 21:10:07 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Jan 28 21:09:11 2009 +0100| [3f8d4e6150ccd774ed1d0300f3281568ddc91080] | committer: Laurent Aimar
Document a bit option flags.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3f8d4e6150ccd774ed1d0300f3281568ddc91080
---
include/vlc_input_item.h | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/include/vlc_input_item.h b/include/vlc_input_item.h
index fa97b06..fa90d21 100644
--- a/include/vlc_input_item.h
+++ b/include/vlc_input_item.h
@@ -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,
};
More information about the vlc-devel
mailing list