From: Jean-Baptiste Mardelle Date: Mon, 23 Jul 2012 08:57:31 +0000 (+0200) Subject: abstractmonitor.h: initialize analyseAudio to false [Coverity 6/14] by Mikko Rapeli X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=bc8bc0fa42e3c4535b7dfef75a1fb99b35c295aa;p=kdenlive abstractmonitor.h: initialize analyseAudio to false [Coverity 6/14] by Mikko Rapeli --- diff --git a/src/abstractmonitor.h b/src/abstractmonitor.h index 5eea2273..0a821288 100644 --- a/src/abstractmonitor.h +++ b/src/abstractmonitor.h @@ -43,7 +43,7 @@ Q_OBJECT public: * @param name A unique identifier for this renderer * @param winid The parent widget identifier (required for SDL display). Set to 0 for OpenGL rendering * @param profile The MLT profile used for the renderer (default one will be used if empty). */ - explicit AbstractRender(Kdenlive::MONITORID name, QWidget *parent = 0):QObject(parent), sendFrameForAnalysis(false), m_name(name) {}; + explicit AbstractRender(Kdenlive::MONITORID name, QWidget *parent = 0):QObject(parent), sendFrameForAnalysis(false), analyseAudio(false), m_name(name) {}; /** @brief Destroy the MLT Renderer. */ virtual ~AbstractRender() {};