From 54902b05a59a0fb4ca538ae0e106218decd4350f Mon Sep 17 00:00:00 2001 From: Scott Theisen Date: Mon, 22 Aug 2022 16:08:07 -0400 Subject: [PATCH] avformatdecoder.cpp: AVCodec no longer has a member called decode This is just for logging, so remove it. --- mythtv/libs/libmythtv/decoders/avformatdecoder.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/mythtv/libs/libmythtv/decoders/avformatdecoder.cpp b/mythtv/libs/libmythtv/decoders/avformatdecoder.cpp index e462e8f2c2a..b3953b6ebeb 100644 --- a/mythtv/libs/libmythtv/decoders/avformatdecoder.cpp +++ b/mythtv/libs/libmythtv/decoders/avformatdecoder.cpp @@ -2187,9 +2187,6 @@ int AvFormatDecoder::ScanStreams(bool novideo) else msg = QString("Codec %1, null name,").arg(strm); - if (p->decode == nullptr) - msg += "decoder is null"; - LOG(VB_LIBAV, LOG_INFO, LOC + msg); if (p->id == par->codec_id)