diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-28 00:18:38 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-28 00:18:38 +0000 |
commit | ba61472911a637bbf395c345b051c0a15aae6b56 (patch) | |
tree | 61f7b9f3c37d5718c0754757f013a916f5a5bac1 /libavformat/rm.h | |
parent | 23ae2b68b06fea874af9e4f86ddd6941ba51aaa5 (diff) | |
download | ffmpeg-ba61472911a637bbf395c345b051c0a15aae6b56.tar.gz |
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.h | 5 |
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; |