diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-27 00:42:35 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-27 00:42:35 +0000 |
commit | 47bfe49c649b0ad8fc654de9acfc70971c43a911 (patch) | |
tree | d0240daf98ba094834eb990ca93a0446fad2070d /libavformat | |
parent | b7b5bccb8d1b5b91f2877383e48b6c0cb0c29233 (diff) | |
download | ffmpeg-47bfe49c649b0ad8fc654de9acfc70971c43a911.tar.gz |
rtsp: Add stub declarations of the setup_in/output_streams functions
This may be needed to avoid calls to implicitly defined functions
(that will be removed by dead code elimination later anyway).
Originally committed as revision 25585 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtsp.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index bc9864af1b..cd0ea31299 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1261,7 +1261,13 @@ static int rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply return 0; } -#endif /* CONFIG_RTSP_DEMUXER */ +#else /* !CONFIG_RTSP_DEMUXER */ +/* A declaration of this function is needed so that the function is + * defined when parsing the call to it, even if dead code elimination + * will remove the call later. + */ +static int rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply); +#endif /* !CONFIG_RTSP_DEMUXER */ #if CONFIG_RTSP_MUXER static int rtsp_setup_output_streams(AVFormatContext *s, const char *addr) @@ -1327,7 +1333,13 @@ static int rtsp_setup_output_streams(AVFormatContext *s, const char *addr) return 0; } -#endif /* CONFIG_RTSP_MUXER */ +#else /* !CONFIG_RTSP_MUXER */ +/* A declaration of this function is needed so that the function is + * defined when parsing the call to it, even if dead code elimination + * will remove the call later. + */ +static int rtsp_setup_output_streams(AVFormatContext *s, const char *addr); +#endif /* !CONFIG_RTSP_MUXER */ void ff_rtsp_close_connections(AVFormatContext *s) { |