From 873531444a857760023d84c8530b109518f5fbd2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 23 Jun 2021 16:45:32 +0200 Subject: [PATCH] Improve error messages when failing to decode video. --- src/lib/ffmpeg_image_proxy.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ffmpeg_image_proxy.cc b/src/lib/ffmpeg_image_proxy.cc index 9c91d1d87..5214847a9 100644 --- a/src/lib/ffmpeg_image_proxy.cc +++ b/src/lib/ffmpeg_image_proxy.cc @@ -175,12 +175,12 @@ FFmpegImageProxy::image (optional) const AVPacket packet; int r = av_read_frame (format_context, &packet); if (r < 0) { - throw DecodeError (N_("could not read frame")); + throw DecodeError (String::compose(N_("could not read frame in file %1"), _path->string())); } int frame_finished; if (avcodec_decode_video2(codec_context, frame, &frame_finished, &packet) < 0 || !frame_finished) { - throw DecodeError (N_("could not decode video")); + throw DecodeError (String::compose(N_("could not decode video in file %1"), _path->string())); } _image.reset (new Image (frame)); -- 2.30.2