1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avformat/rtsp: use av_unreachable

This commit is contained in:
Marvin Scholz
2025-07-08 16:19:34 +02:00
parent c425951c05
commit c4e8ac3d0e

View File

@ -2004,7 +2004,7 @@ redirect:
if (CONFIG_RTSP_MUXER) if (CONFIG_RTSP_MUXER)
err = ff_rtsp_setup_output_streams(s, host); err = ff_rtsp_setup_output_streams(s, host);
else else
av_assert0(0); av_unreachable("Either muxer or demuxer must be enabled");
if (err) if (err)
goto fail; goto fail;