Tweak error message.
authorCarl Hetherington <cth@carlh.net>
Tue, 9 May 2017 23:07:06 +0000 (00:07 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 9 May 2017 23:07:06 +0000 (00:07 +0100)
src/lib/ffmpeg_transcoder.cc

index b3d1e9926a1e51b9c575a7223b75bd57430e8108..cc4c7b81d7e731e45a302bf5029d8f03d7b8f871 100644 (file)
@@ -60,7 +60,7 @@ FFmpegTranscoder::go ()
 {
        AVCodec* codec = avcodec_find_encoder_by_name (_codec_name.c_str());
        if (!codec) {
-               throw runtime_error (String::compose ("could not find FFmpeg codec %1", _codec_name));
+               throw runtime_error (String::compose ("could not find FFmpeg encoder %1", _codec_name));
        }
 
        _codec_context = avcodec_alloc_context3 (codec);