You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
avformat/format: Check for av_guess_format() failure
Fixes null pointer dereference Fixes Ticket3812 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -145,7 +145,9 @@ enum AVCodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
|
|||||||
enum AVMediaType type)
|
enum AVMediaType type)
|
||||||
{
|
{
|
||||||
if (av_match_name("segment", fmt->name) || av_match_name("ssegment", fmt->name)) {
|
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) {
|
if (type == AVMEDIA_TYPE_VIDEO) {
|
||||||
|
Reference in New Issue
Block a user