diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-28 00:21:11 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-28 00:21:11 +0000 |
commit | 886e89d0d05ad99064e9d739e9b26beb71d79f29 (patch) | |
tree | 587175b6ad5a05034a70959fd7a5e15717294a5d /libavformat/rm.h | |
parent | ba61472911a637bbf395c345b051c0a15aae6b56 (diff) | |
download | ffmpeg-886e89d0d05ad99064e9d739e9b26beb71d79f29.tar.gz |
Add RMStream object as function argument to public functions so that non-.rm
AVStreams can be used to call these public rmdec.c functions as well, as is
the case for RDT/RTSP streams. See mailinglist discussion in "[PATCH] rdt.c:
don't reuse the same AVStream in both RTSP and RM demuxer" thread.
Originally committed as revision 16366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.h')
-rw-r--r-- | libavformat/rm.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libavformat/rm.h b/libavformat/rm.h index 4bced2e33a..f9fdd76758 100644 --- a/libavformat/rm.h +++ b/libavformat/rm.h @@ -40,11 +40,13 @@ extern AVInputFormat rdt_demuxer; * @param pb context to read the data from * @param st the stream that the MDPR chunk belongs to and where to store the * parameters read from the chunk into + * @param rst real-specific stream information * @param codec_data_size size of the MDPR chunk * @return 0 on success, errno codes on error */ int ff_rm_read_mdpr_codecdata (AVFormatContext *s, ByteIOContext *pb, - AVStream *st, int codec_data_size); + AVStream *st, RMStream *rst, + int codec_data_size); /** * Parse one rm-stream packet from the input bytestream. @@ -52,6 +54,7 @@ int ff_rm_read_mdpr_codecdata (AVFormatContext *s, ByteIOContext *pb, * @param s context containing RMContext and ByteIOContext for stream reading * @param pb context to read the data from * @param st stream to which the packet to be read belongs + * @param rst Real-specific stream information * @param len packet length to read from the input * @param pkt packet location to store the parsed packet data * @param seq pointer to an integer containing the sequence number, may be @@ -64,7 +67,7 @@ int ff_rm_read_mdpr_codecdata (AVFormatContext *s, ByteIOContext *pb, * errno codes on error */ int ff_rm_parse_packet (AVFormatContext *s, ByteIOContext *pb, - AVStream *st, int len, + AVStream *st, RMStream *rst, int len, AVPacket *pkt, int *seq, int *flags, int64_t *ts); /** @@ -78,9 +81,10 @@ int ff_rm_parse_packet (AVFormatContext *s, ByteIOContext *pb, * @param s context containing RMContext and ByteIOContext for stream reading * @param pb context to read the data from * @param st stream that this packet belongs to + * @param rst Real-specific stream information * @param pkt location to store the packet data */ void ff_rm_retrieve_cache (AVFormatContext *s, ByteIOContext *pb, - AVStream *st, AVPacket *pkt); + AVStream *st, RMStream *rst, AVPacket *pkt); #endif /* AVFORMAT_RM_H */ |