diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-13 18:25:22 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-13 18:25:22 +0000 |
commit | b5a4b5b7c50ef17e948c21077e6b693b5581b244 (patch) | |
tree | e7b0ca700136dc62cc53d30ba1a6be2923010041 /src/xine-engine/xine_internal.h | |
parent | 2e4d006f2c2418351da08843ed560ec271b69693 (diff) | |
download | xine-lib-b5a4b5b7c50ef17e948c21077e6b693b5581b244.tar.gz xine-lib-b5a4b5b7c50ef17e948c21077e6b693b5581b244.tar.bz2 |
introducing meta information and some audio controls - but nothing is really implemented yet, so please move on, nothing to see here...
CVS patchset: 2660
CVS date: 2002/09/13 18:25:22
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 189a04191..cfa9d684a 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.h @@ -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_internal.h,v 1.98 2002/09/11 17:41:08 guenter Exp $ + * $Id: xine_internal.h,v 1.99 2002/09/13 18:25:23 guenter Exp $ * */ @@ -136,6 +136,8 @@ struct audio_decoder_s { #define XINE_LOG_PLUGIN 2 #define XINE_LOG_NUM 3 /* # of log buffers defined */ +#define XINE_STREAM_INFO_MAX 99 + /* * the big xine struct, holding everything together */ @@ -240,6 +242,10 @@ struct xine_s { int playing_logo; int curtime_needed_for_osd; pthread_mutex_t osd_lock; + + /* stream meta information */ + int stream_info[XINE_STREAM_INFO_MAX]; + char *meta_info [XINE_STREAM_INFO_MAX]; }; /* |