Added support for checking whether a RTP demuxer contains a combined audio_video stream.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10476 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rsf 2003-07-27 10:11:42 +00:00
parent 8010e313c4
commit fb9ccf4b03
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,10 @@ void demux_open_rtp(demuxer_t* demuxer);
// Test whether a RTP demuxer is for a MPEG stream:
int demux_is_mpeg_rtp_stream(demuxer_t* demuxer);
// Test whether a RTP demuxer contains combined (multiplexed)
// audio+video (and so needs to be demuxed by higher-level code):
int demux_is_multiplexed_rtp_stream(demuxer_t* demuxer);
// Read from a RTP demuxer:
int demux_rtp_fill_buffer(demuxer_t *demux, demux_stream_t* ds);