From e7047005cbe5cbfba6ddc764437457b6a6d72c21 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 26 Apr 2007 23:40:36 +0000 Subject: [PATCH] properly compile code for REDIR_DEMUXER Originally committed as revision 8840 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtsp.c | 2 ++ libavformat/utils.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index c65ff47995..17fe297a9c 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1399,6 +1399,7 @@ AVInputFormat sdp_demuxer = { }; #endif +#ifdef CONFIG_REDIR_DEMUXER /* dummy redirector format (used directly in av_open_input_file now) */ static int redir_probe(AVProbeData *pd) { @@ -1461,3 +1462,4 @@ AVInputFormat redir_demuxer = { NULL, NULL, }; +#endif diff --git a/libavformat/utils.c b/libavformat/utils.c index ad1e50e3e9..a4a78ba975 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -452,7 +452,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, } /* XXX: suppress this hack for redirectors */ -#ifdef CONFIG_NETWORK +#ifdef CONFIG_REDIR_DEMUXER if (fmt == &redir_demuxer) { err = redir_open(ic_ptr, pb); url_fclose(pb);