Navigation Menu

Skip to content

Commit

Permalink
Bah. Fix tab -> spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Apr 5, 2012
1 parent 86f5fd8 commit 85969eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mythtv/libs/libmythtv/mythraopconnection.cpp
Expand Up @@ -223,7 +223,7 @@ void MythRAOPConnection::udpDataReady(QByteArray buf, QHostAddress peer,
int used = avcodec_decode_audio3(m_codeccontext, samples,
&decoded_data_size, &tmp_pkt);

if (used < 0)
if (used < 0)
{
LOG(VB_GENERAL, LOG_ERR, LOC + QString("Error decoding audio"));
break;
Expand All @@ -246,10 +246,10 @@ void MythRAOPConnection::udpDataReady(QByteArray buf, QHostAddress peer,
m_audioQueue.insert(this_timestamp, samples);

this_timestamp += (frames * 1000) / m_sampleRate;
}
}

tmp_pkt.data += used;
tmp_pkt.size -= used;
tmp_pkt.data += used;
tmp_pkt.size -= used;
}

// N.B. Unless playback is really messed up, this should only pass through
Expand Down

0 comments on commit 85969eb

Please sign in to comment.