]> git.sesse.net Git - vlc/blobdiff - include/vlc_demux.h
* input: added a INPUT_UPDATE_META (for meta data in access like ICY)
[vlc] / include / vlc_demux.h
index 8f92cd79901efd679a8f4d7e8e29430b015c7343..9ab59a73ce2d91f56e5fc58f83e2f4c1f10d64d3 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_demux.h
  *****************************************************************************
  * Copyright (C) 1999-2004 VideoLAN
- * $Id: ninput.h 7930 2004-06-07 18:23:15Z fenrir $
+ * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -83,6 +83,12 @@ enum demux_query_e
     DEMUX_SET_TITLE,            /* arg1= int            can fail */
     DEMUX_SET_SEEKPOINT,        /* arg1= int            can fail */
 
+    /* DEMUX_SET_GROUP only a hit for demuxer (mainly DVB) to allow not
+     * reading everything (you should not use this to call es_out_Control)
+     * if you don't know what to do with it, just IGNORE it, it is safe(r)
+     * -1 means all group, 0 default group (first es added) */
+    DEMUX_SET_GROUP,            /* arg1= int            can fail */
+
     /* Ask the demux to demux until the given date at the next pf_demux call
      * but not more (and not less, at the precision avaiable of course).
      * XXX: not mandatory (except for subtitle demux) but I will help a lot