diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-29 08:41:49 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-29 08:41:49 +0000 |
commit | c2688f3ac80e04799fc5e97cece83c45a70b9e56 (patch) | |
tree | b9cb7c4f896072e95e78058801d177064435ddf9 /libavformat/rtsp.h | |
parent | 63e856df0ac750dd4fefb6fc72ca4826ebdb5a0f (diff) | |
download | ffmpeg-c2688f3ac80e04799fc5e97cece83c45a70b9e56.tar.gz |
rtsp: Move rtsp_setup_output_streams into rtspenc.c
Originally committed as revision 25600 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 8746da7d5e..03edc4e5bc 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -468,4 +468,10 @@ void ff_rtsp_close_streams(AVFormatContext *s); */ void ff_rtsp_close_connections(AVFormatContext *rt); +/** + * Announce the stream to the server and set up the RTSPStream child + * objects for each media stream. + */ +int ff_rtsp_setup_output_streams(AVFormatContext *s, const char *addr); + #endif /* AVFORMAT_RTSP_H */ |