diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-18 00:51:33 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-18 00:51:33 +0000 |
commit | db4a9292eb386fe91bbb4059c1b172e45bd32ce7 (patch) | |
tree | 85a58e93c69fa06b6304bb936c77131b957d3c5f /src/xine-engine/xine_internal.h | |
parent | 1ad10f5795d76ee8d66c642cc4165593ce6a9e39 (diff) | |
download | xine-lib-db4a9292eb386fe91bbb4059c1b172e45bd32ce7.tar.gz xine-lib-db4a9292eb386fe91bbb4059c1b172e45bd32ce7.tar.bz2 |
first steps towards implementing stream/meta info
CVS patchset: 2680
CVS date: 2002/09/18 00:51:33
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index cfa9d684a..1e8fed0bf 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.99 2002/09/13 18:25:23 guenter Exp $ + * $Id: xine_internal.h,v 1.100 2002/09/18 00:51:34 guenter Exp $ * */ @@ -131,10 +131,9 @@ struct audio_decoder_s { * log constants */ -#define XINE_LOG_FORMAT 0 /* stream format, decoders, video size... */ -#define XINE_LOG_MSG 1 /* warnings, errors, ... */ -#define XINE_LOG_PLUGIN 2 -#define XINE_LOG_NUM 3 /* # of log buffers defined */ +#define XINE_LOG_MSG 0 /* warnings, errors, ... */ +#define XINE_LOG_PLUGIN 1 +#define XINE_LOG_NUM 2 /* # of log buffers defined */ #define XINE_STREAM_INFO_MAX 99 @@ -246,6 +245,8 @@ struct xine_s { /* stream meta information */ int stream_info[XINE_STREAM_INFO_MAX]; char *meta_info [XINE_STREAM_INFO_MAX]; + + int header_sent_counter; /* wait for headers sent */ }; /* @@ -275,6 +276,8 @@ void xine_demux_flush_engine (xine_t *this); void xine_demux_control_newpts (xine_t *this, int64_t pts, uint32_t flags ); +void xine_demux_control_headers_done (xine_t *this ); + void xine_demux_control_start (xine_t *this ); void xine_demux_control_end (xine_t *this, uint32_t flags ); |