summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-10-21 12:25:12 +0000
committerMartin Storsjö <martin@martin.st>2010-10-21 12:25:12 +0000
commiteced8fa02ea237abd9c6a6e9287bb7524addb8f4 (patch)
treee693ae2d28ffeed29274166149e53069f20bd0b3 /libavformat/rtsp.c
parenta66d44f0d2bad97fc1db0304a6bb5a6fa6824414 (diff)
rtsp: Move the rtsp_probe function to the demuxer code block
This function is only used by the RTSP demuxer. Originally committed as revision 25537 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 8622cb277e..d524ba8444 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -546,13 +546,6 @@ static int rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
}
#if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
-static int rtsp_probe(AVProbeData *p)
-{
- if (av_strstart(p->filename, "rtsp:", NULL))
- return AVPROBE_SCORE_MAX;
- return 0;
-}
-
static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
{
const char *p;
@@ -1788,6 +1781,13 @@ end:
#endif /* CONFIG_RTPDEC */
#if CONFIG_RTSP_DEMUXER
+static int rtsp_probe(AVProbeData *p)
+{
+ if (av_strstart(p->filename, "rtsp:", NULL))
+ return AVPROBE_SCORE_MAX;
+ return 0;
+}
+
static int rtsp_read_header(AVFormatContext *s,
AVFormatParameters *ap)
{