From 7a81acfe6443f9ec4208ba27caa5b241bc7453d6 Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Wed, 11 Oct 2023 14:00:02 +0200 Subject: [PATCH] ffmpegdec: we have to reduce the priority because it fails to decode some images --- libheif/plugins/decoder_ffmpeg.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libheif/plugins/decoder_ffmpeg.cc b/libheif/plugins/decoder_ffmpeg.cc index 486555e4ce..aa5e847c37 100644 --- a/libheif/plugins/decoder_ffmpeg.cc +++ b/libheif/plugins/decoder_ffmpeg.cc @@ -69,7 +69,7 @@ struct ffmpeg_decoder static const char kEmptyString[] = ""; static const char kSuccess[] = "Success"; -static const int FFMPEG_DECODER_PLUGIN_PRIORITY = 200; +static const int FFMPEG_DECODER_PLUGIN_PRIORITY = 90; #define MAX_PLUGIN_NAME_LENGTH 80