diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-06-07 02:40:46 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-06-07 02:40:46 +0000 |
commit | eb4a0ced215a63478a1a941f0eecc61413eef44e (patch) | |
tree | 43490b4fc242eef9589aabc8248af5aa5854fde9 /src/xine-engine/xine_internal.h | |
parent | 387d398d4c96bfe17ee38452795aeccd67e5d048 (diff) | |
download | xine-lib-eb4a0ced215a63478a1a941f0eecc61413eef44e.tar.gz xine-lib-eb4a0ced215a63478a1a941f0eecc61413eef44e.tar.bz2 |
- demuxer cleanup (helper functions)
- endianness fixes/cleanups (fix asf demuxer/audio for bigendian)
- xine_waveformatex
- increased demuxer plugin version
CVS patchset: 2028
CVS date: 2002/06/07 02:40:46
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index d19841cc9..f5def8794 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.85 2002/05/25 19:19:19 siggi Exp $ + * $Id: xine_internal.h,v 1.86 2002/06/07 02:40:47 miguelfreitas Exp $ * */ @@ -428,7 +428,6 @@ char **xine_get_autoplay_mrls (xine_t *this, char *plugin_id, int *num_mrls); */ void xine_notify_stream_finished (xine_t *this); -void xine_flush_engine (xine_t *this); /* * video decoder stuff @@ -632,6 +631,19 @@ int xine_get_log_section_count (xine_t *this); int xine_get_error (xine_t *this); + +/* + * demuxer helper functions from demux.c + */ + +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_start( xine_t *this ); + +void xine_demux_control_end( xine_t *this, uint32_t flags ); + #ifdef __cplusplus } #endif |