X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fffmpeg_image_proxy.cc;fp=src%2Flib%2Fffmpeg_image_proxy.cc;h=5214847a99bd57ca30aa277e5063244a6118c474;hp=9c91d1d87d7d6c60eb883ee346acbb14876bf5ee;hb=873531444a857760023d84c8530b109518f5fbd2;hpb=1a49adcbe6af6e797194c9873a2d4e9b57d7de93 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));