Skip to content

Commit

Permalink
Remove 'm_' from a couple of local variable names.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Mar 12, 2019
1 parent 5b3f308 commit 2147d6c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions mythtv/libs/libmythtv/frequencytables.cpp
Expand Up @@ -152,12 +152,12 @@ TransportScanItem::TransportScanItem(uint _sourceid,
*/
uint TransportScanItem::GetMultiplexIdFromDB(void) const
{
int m_mplexid = 0;
int mplexid = 0;

for (uint i = 0; (i < offset_cnt()) && (m_mplexid <= 0); i++)
m_mplexid = ChannelUtil::GetMplexID(m_sourceID, freq_offset(i));
for (uint i = 0; (i < offset_cnt()) && (mplexid <= 0); i++)
mplexid = ChannelUtil::GetMplexID(m_sourceID, freq_offset(i));

return m_mplexid < 0 ? 0 : m_mplexid;
return mplexid < 0 ? 0 : mplexid;
}

uint64_t TransportScanItem::freq_offset(uint i) const
Expand Down
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/recorders/rtp/rtcpdatapacket.h
Expand Up @@ -45,11 +45,11 @@ class RTCPDataPacket : public UDPPacket

RTCPDataPacket(uint32_t timestamp, uint32_t last_timestamp,
uint32_t sequence, uint32_t last_sequence,
uint32_t m_lost, uint32_t lost_interval,
uint32_t lost, uint32_t lost_interval,
uint32_t ssrc)
: m_timestamp(timestamp), m_last_timestamp(last_timestamp),
m_sequence(sequence), m_last_sequence(last_sequence),
m_lost(m_lost), m_lost_interval(lost_interval),
m_lost(lost), m_lost_interval(lost_interval),
m_ssrc(ssrc) { }

QByteArray GetData(void) const
Expand Down

0 comments on commit 2147d6c

Please sign in to comment.