Mercurial > mplayer.hg
view libmpdemux/demux_rtp.h @ 19422:718624aec009
r19361: Reintroduce an ugly variant of the -gui/-nogui options.
r19348: Add matroska chapter seeking capability.
r19286: clarification on -mpegopts :vaspect
r19285: New sentences should start on a new line.
r19281: don't use vaspect on mpeg1 video streams
r19274: Move the section describing the per movie config files
up, so it doesn't get seperated from the rest of the
config file doc by the config file example
r19241: missed some escaping
r19240: use DOCS writing standards for default values (asked by diego)
r19233: english manpage for pvr:// input
r19231: updated en/fr manpages for ao_ivtv
r19228: removed default outfile for -ao mpegpes
r19206: Improve ao_mpegpes description.
r19191: description of the arnd scale video filter parameter
r19190: new -ao mpegpes options
r19181: - Add missing "00" in -af pan usage line.
- Change -af pan usage and description to use a capital 'L' to make the
letter easily distinguishable from a '1'.
r19161: cosmetics/punctuation/spelling
r19149: updated english man page with vo_ivtv description
author | kraymer |
---|---|
date | Thu, 17 Aug 2006 21:57:01 +0000 |
parents | 281d155fb37f |
children | 4d81dbdf46b9 |
line wrap: on
line source
#ifndef _DEMUX_RTP_H #define _DEMUX_RTP_H #include <stdlib.h> #include <stdio.h> #ifndef __STREAM_H #include "stream.h" #endif #ifndef __DEMUXER_H #include "demuxer.h" #endif // Open a RTP demuxer (which was initiated either from a SDP file, // or from a RTSP URL): demuxer_t* 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); // Close a RTP demuxer void demux_close_rtp(demuxer_t* demuxer); #endif