From 24d54ea7fe1ba128cf8d3521d6738fc73a7c623e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 22 May 2014 16:53:38 +0100 Subject: Basics of noting subtitle times in FFmpegSubtitleStreams. --- src/lib/ffmpeg.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/lib/ffmpeg.cc') diff --git a/src/lib/ffmpeg.cc b/src/lib/ffmpeg.cc index ec7ec452e..8505626df 100644 --- a/src/lib/ffmpeg.cc +++ b/src/lib/ffmpeg.cc @@ -148,13 +148,13 @@ FFmpeg::setup_decoders () AVCodecContext* context = _format_context->streams[i]->codec; AVCodec* codec = avcodec_find_decoder (context->codec_id); - if (codec == 0) { - throw DecodeError (N_("could not find decoder")); - } - - if (avcodec_open2 (context, codec, 0) < 0) { - throw DecodeError (N_("could not open decoder")); + if (codec) { + if (avcodec_open2 (context, codec, 0) < 0) { + throw DecodeError (N_("could not open decoder")); + } } + + /* We are silently ignoring any failures to find suitable decoders here */ } } -- cgit v1.2.3