diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-27 18:56:54 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-27 18:56:54 +0000 |
commit | 69b02732999c6708986554ba5cdf66e0fb65e5b1 (patch) | |
tree | 3ce036bc9ea13da6f35f7068c6950aaaa35643af /include | |
parent | d27b3249eab1ff62a64029f6d94e5a3ccb87b151 (diff) | |
download | xine-lib-69b02732999c6708986554ba5cdf66e0fb65e5b1.tar.gz xine-lib-69b02732999c6708986554ba5cdf66e0fb65e5b1.tar.bz2 |
- demux_avi: do not set input_pos/time on audio buffers. otherwise non-interlaved or
bad interleaved files show slider problems
- make metronom prebuffer configurable. see metronom.h for comments.
CVS patchset: 4501
CVS date: 2003/03/27 18:56:54
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index bf2abeda8..9f0a49ab6 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.69 2003/03/21 17:54:54 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.70 2003/03/27 18:56:54 miguelfreitas Exp $ * * public xine-lib (libxine) interface and documentation * @@ -287,10 +287,11 @@ int xine_get_param (xine_stream_t *stream, int param); #define XINE_PARAM_AUDIO_REPORT_LEVEL 10 /* 1=>send events, 0=> don't */ #define XINE_PARAM_VERBOSITY 11 /* control console output */ #define XINE_PARAM_SPU_OFFSET 12 /* unit: 1/90000 sec */ -#define XINE_PARAM_IGNORE_VIDEO 13 -#define XINE_PARAM_IGNORE_AUDIO 14 -#define XINE_PARAM_IGNORE_SPU 15 -#define XINE_PARAM_ENABLE_BROADCAST 16 /* 0(default) => don't */ +#define XINE_PARAM_IGNORE_VIDEO 13 /* disable video decoding */ +#define XINE_PARAM_IGNORE_AUDIO 14 /* disable audio decoding */ +#define XINE_PARAM_IGNORE_SPU 15 /* disable spu decoding */ +#define XINE_PARAM_ENABLE_BROADCAST 16 /* (not implemented yet) */ +#define XINE_PARAM_METRONOM_PREBUFFER 17 /* unit: 1/90000 sec */ /* speed values */ |