summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_image_proxy.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-28 10:50:08 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-01 01:31:57 +0200
commite5ae44fe8287c6a5f91c8f9dfced7cb661f0d79b (patch)
tree3afa2bdf2c7c6e9b471d016e4b99ae0274d92ccc /src/lib/ffmpeg_image_proxy.cc
parentc93d0271dad86dccdbe518dbbe6e2175adce6804 (diff)
Tidy up some error handling a little.
Diffstat (limited to 'src/lib/ffmpeg_image_proxy.cc')
-rw-r--r--src/lib/ffmpeg_image_proxy.cc20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/lib/ffmpeg_image_proxy.cc b/src/lib/ffmpeg_image_proxy.cc
index d082a8ef7..5e3b725cf 100644
--- a/src/lib/ffmpeg_image_proxy.cc
+++ b/src/lib/ffmpeg_image_proxy.cc
@@ -124,6 +124,8 @@ DCPOMATIC_DISABLE_WARNINGS
ImageProxy::Result
FFmpegImageProxy::image (optional<dcp::Size>) const
{
+ auto constexpr name_for_errors = "FFmpegImageProxy::image";
+
boost::mutex::scoped_lock lm (_mutex);
if (_image) {
@@ -162,34 +164,36 @@ FFmpegImageProxy::image (optional<dcp::Size>) const
}
}
- if (avformat_find_stream_info(format_context, 0) < 0) {
- throw DecodeError (_("could not find stream information"));
+ int r = avformat_find_stream_info(format_context, 0);
+ if (r < 0) {
+ throw DecodeError (N_("avcodec_find_stream_info"), name_for_errors, r);
}
DCPOMATIC_ASSERT (format_context->nb_streams == 1);
AVFrame* frame = av_frame_alloc ();
if (!frame) {
- throw DecodeError (N_("could not allocate frame"));
+ std::bad_alloc ();
}
AVCodecContext* codec_context = format_context->streams[0]->codec;
AVCodec* codec = avcodec_find_decoder (codec_context->codec_id);
DCPOMATIC_ASSERT (codec);
- if (avcodec_open2 (codec_context, codec, 0) < 0) {
- throw DecodeError (N_("could not open decoder"));
+ r = avcodec_open2 (codec_context, codec, 0);
+ if (r < 0) {
+ throw DecodeError (N_("avcodec_open2"), name_for_errors, r);
}
AVPacket packet;
- int r = av_read_frame (format_context, &packet);
+ r = av_read_frame (format_context, &packet);
if (r < 0) {
- throw DecodeError (N_("could not read frame"));
+ throw DecodeError (N_("av_read_frame"), name_for_errors, r);
}
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 (N_("avcodec_decode_video2"), name_for_errors, r);
}
AVPixelFormat const pix_fmt = static_cast<AVPixelFormat>(frame->format);