Skip to content

Commit

Permalink
Sat>IP client -- Remove unused variables
Browse files Browse the repository at this point in the history
Removed two unused variables and other cosmetic cleanup.

Refs #13121
  • Loading branch information
kmdewaal committed Aug 25, 2020
1 parent dbf9af9 commit d9589fd
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions mythtv/libs/libmythtv/recorders/satipstreamhandler.h
Expand Up @@ -32,9 +32,9 @@ class SatIPStreamHandler : public StreamHandler
static void Return(SatIPStreamHandler * & ref, int inputid);

void AddListener(MPEGStreamData *data,
bool /*allow_section_reader*/ = false,
bool /*needs_drb*/ = false,
QString output_file = QString()) override
bool /*allow_section_reader*/ = false,
bool /*needs_drb*/ = false,
QString output_file = QString()) override // StreamHandler
{
StreamHandler::AddListener(data, false, false, output_file);
} // StreamHandler
Expand All @@ -43,7 +43,7 @@ class SatIPStreamHandler : public StreamHandler
void Tune(const DTVMultiplex &tuning);

private:
SatIPStreamHandler(const QString & /*device*/, int inputid);
explicit SatIPStreamHandler(const QString & device, int inputid);

bool Open(void);
void Close(void);
Expand All @@ -55,9 +55,6 @@ class SatIPStreamHandler : public StreamHandler
static QMap<QString, uint> s_handlersRefCnt;
static QMutex s_handlersLock;

static QMutex s_cseq_lock;
static uint s_cseq;

protected:
SatIPRTSP *m_rtsp {nullptr};

Expand Down

0 comments on commit d9589fd

Please sign in to comment.