diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-18 12:59:39 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-18 12:59:39 +0000 |
commit | 06f2301713235341fe3d43b1b959f414d2cfc340 (patch) | |
tree | 92eb189fca7bb6a53983f759e686e53643ce9d53 /include | |
parent | d96ed959351fb17f515e82405dec199e40dc581c (diff) | |
download | xine-lib-06f2301713235341fe3d43b1b959f414d2cfc340.tar.gz xine-lib-06f2301713235341fe3d43b1b959f414d2cfc340.tar.bz2 |
Daniel's patch for audio level reporting with alsa
CVS patchset: 5064
CVS date: 2003/06/18 12:59:39
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 2fec4c118..1c5ae1650 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.88 2003/06/02 06:36:30 f1rmb Exp $ + * $Id: xine.h.in,v 1.89 2003/06/18 12:59:39 mroi Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1250,7 +1250,7 @@ void xine_config_reset (xine_t *self); #define XINE_EVENT_UI_SET_TITLE 3 /* request title display change in ui */ #define XINE_EVENT_UI_MESSAGE 4 /* message (dialog) for the ui to display */ #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_AUDIO_LEVEL 6 /* report current audio level (l/r/mute) */ #define XINE_EVENT_QUIT 7 /* last event sent when stream is disposed */ #define XINE_EVENT_PROGRESS 8 /* index creation/network connections */ #define XINE_EVENT_MRL_REFERENCE 9 /* demuxer->frontend: MRL reference(s) for the real stream */ @@ -1375,7 +1375,8 @@ typedef struct { */ typedef struct { int left; - int right; /* 0..255 */ + int right; /* 0..100 % */ + int mute; } xine_audio_level_data_t; /* |