diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 8622cb277e5c4f77498025e4d595e69241577ccb..d524ba8444f52aec2135b2d3a19366c694c7b1cd 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) {