diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-23 21:52:16 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-23 21:52:16 +0000 |
commit | bc9771c8ad45f7ca38bbc6e877ad90132bff8dc9 (patch) | |
tree | fed10ec78bc698028725d2adacf8dca7f4c4ca8f /src | |
parent | 09204883aba6282c64fe674d12d30a58c6a6b2fe (diff) | |
download | xine-lib-bc9771c8ad45f7ca38bbc6e877ad90132bff8dc9.tar.gz xine-lib-bc9771c8ad45f7ca38bbc6e877ad90132bff8dc9.tar.bz2 |
looks like codec reporting function was absent from the header files - sorry, i screwed up (once again) on this one
CVS patchset: 2978
CVS date: 2002/10/23 21:52:16
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/xine_internal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index a7d468915..bf5ffe6d3 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.105 2002/10/18 04:04:10 miguelfreitas Exp $ + * $Id: xine_internal.h,v 1.106 2002/10/23 21:52:16 guenter Exp $ * */ @@ -224,6 +224,11 @@ void video_decoder_shutdown (xine_stream_t *stream); void audio_decoder_init (xine_stream_t *stream); void audio_decoder_shutdown (xine_stream_t *stream); +/* this will just set stream->stream_info accordingly so frontends + can find out wheter audio/video is handled or not */ +void xine_report_codec (xine_stream_t *stream, int codec_type, + uint32_t fourcc, uint32_t buf_type, int handled) ; + /* demuxer helper functions from demux.c */ void xine_demux_flush_engine (xine_stream_t *stream); |