diff --git a/libavformat/format.c b/libavformat/format.c index 238a13acd4..1c25d6b933 100644 --- a/libavformat/format.c +++ b/libavformat/format.c @@ -145,7 +145,9 @@ enum AVCodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name, enum AVMediaType type) { if (av_match_name("segment", fmt->name) || av_match_name("ssegment", fmt->name)) { - fmt = av_guess_format(NULL, filename, NULL); + AVOutputFormat *fmt2 = av_guess_format(NULL, filename, NULL); + if (fmt2) + fmt = fmt2; } if (type == AVMEDIA_TYPE_VIDEO) {