Re: [FFmpeg-devel] [PATCH 4/6] avformat/rtsp: Fix build failure when RTP demuxers are disabled

2021-01-30 Thread Paul B Mahol
probably ok On Sat, Jan 30, 2021 at 5:45 AM Andreas Rheinhardt < andreas.rheinha...@gmail.com> wrote: > rtsp.c uses a check of the form "if (CONFIG_RTSP_DEMUXER && ...) {}" > with the intent to make the code compilable even though the part guarded > by this check contains calls to functions that

[FFmpeg-devel] [PATCH 4/6] avformat/rtsp: Fix build failure when RTP demuxers are disabled

2021-01-29 Thread Andreas Rheinhardt
rtsp.c uses a check of the form "if (CONFIG_RTSP_DEMUXER && ...) {}" with the intent to make the code compilable even though the part guarded by this check contains calls to functions that don't exist when the RTSP demuxer is disabled. Yet even then compilers still need a declaration of all the fun