diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-26 22:50:52 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-26 22:50:52 +0000 |
commit | 799a8c755b1ec87a799f1a18e9ccfea04ef1897c (patch) | |
tree | 54945f533388ebc09ed37e54770cb9fb974e77b0 /include | |
parent | 549e07167100fc654422dbaa0b9056162ceac606 (diff) | |
download | xine-lib-799a8c755b1ec87a799f1a18e9ccfea04ef1897c.tar.gz xine-lib-799a8c755b1ec87a799f1a18e9ccfea04ef1897c.tar.bz2 |
timeouts for mms, send progress report events, introduce verbosity engine parameter (not implemented yet), document new plugin loader in changelog
CVS patchset: 3029
CVS date: 2002/10/26 22:50:52
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index d52a73008..1d23efd3e 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.28 2002/10/26 14:31:36 mroi Exp $ + * $Id: xine.h.in,v 1.29 2002/10/26 22:50:52 guenter Exp $ * * public xine-lib (libxine) interface and documentation * @@ -302,6 +302,7 @@ void xine_register_log_cb (xine_t *self, xine_log_cb_t cb, #define XINE_PARAM_AUDIO_COMPR_LEVEL 8 /* <100=>off, % compress otherw*/ #define XINE_PARAM_AUDIO_AMP_LEVEL 9 /* 0..200, 100=>100% (default) */ #define XINE_PARAM_AUDIO_REPORT_LEVEL 10 /* 1=>send events, 0=> don't */ +#define XINE_PARAM_VERBOSITY 11 /* control console output */ /* stream format detection strategies */ @@ -792,7 +793,7 @@ void xine_config_reset (xine_t *self); #define XINE_EVENT_FRAME_FORMAT_CHANGE 5 /* e.g. aspect ratio change during dvd playback */ #define XINE_EVENT_AUDIO_LEVEL 6 /* report current audio level (l/r) */ #define XINE_EVENT_QUIT 7 /* last event sent when stream is disposed */ -#define XINE_EVENT_BUILDING_INDEX 8 /* event sent through index generation */ +#define XINE_EVENT_PROGRESS 8 /* index creation/network connections */ /* input events coming from frontend */ @@ -881,8 +882,9 @@ typedef struct { * index generation / buffering */ typedef struct { + const char *description; /* e.g. "connecting..." */ int percent; -} xine_idx_progress_data_t; +} xine_progress_data_t; /* opaque xine_event_queue_t */ |