summaryrefslogtreecommitdiff
path: root/libavformat/rm.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2008-12-28 00:18:38 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2008-12-28 00:18:38 +0000
commitba61472911a637bbf395c345b051c0a15aae6b56 (patch)
tree61f7b9f3c37d5718c0754757f013a916f5a5bac1 /libavformat/rm.h
parent23ae2b68b06fea874af9e4f86ddd6941ba51aaa5 (diff)
Implement RMStream stream-specific private data object in the RM demuxer.
This allows multiple video or audio streams per .rm file. See mailinglist thread "[PATCH] rmdec.c: implement RMVideo/AudioStream". Originally committed as revision 16365 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.h')
-rw-r--r--libavformat/rm.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/rm.h b/libavformat/rm.h
index 5bb6c06e30..4bced2e33a 100644
--- a/libavformat/rm.h
+++ b/libavformat/rm.h
@@ -24,6 +24,11 @@
#include "avformat.h"
+typedef struct RMStream RMStream;
+
+RMStream *ff_rm_alloc_rmstream (void);
+void ff_rm_free_rmstream (RMStream *rms);
+
/*< input format for Realmedia-style RTSP streams */
extern AVInputFormat rdt_demuxer;