mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
Silenced compilation warnings - again.
This commit is contained in:
parent
38fbb2d47d
commit
8ba74bf5c4
@ -136,13 +136,13 @@ void cFemonReceiver::Action(void)
|
|||||||
m_Active = true;
|
m_Active = true;
|
||||||
|
|
||||||
while (Running() && m_Active) {
|
while (Running() && m_Active) {
|
||||||
uchar *Data;
|
uint8_t *Data;
|
||||||
double timeout;
|
double timeout;
|
||||||
int len, Length;
|
int len, Length;
|
||||||
bool processed = false;
|
bool processed = false;
|
||||||
|
|
||||||
// process available video data
|
// process available video data
|
||||||
while (Data = m_VideoBuffer.Get(Length)) {
|
while ((Data = m_VideoBuffer.Get(Length))) {
|
||||||
if (!m_Active || (Length < TS_SIZE))
|
if (!m_Active || (Length < TS_SIZE))
|
||||||
break;
|
break;
|
||||||
Length = TS_SIZE;
|
Length = TS_SIZE;
|
||||||
@ -179,7 +179,7 @@ void cFemonReceiver::Action(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// process available audio data
|
// process available audio data
|
||||||
while (Data = m_AudioBuffer.Get(Length)) {
|
while ((Data = m_AudioBuffer.Get(Length))) {
|
||||||
if (!m_Active || (Length < TS_SIZE))
|
if (!m_Active || (Length < TS_SIZE))
|
||||||
break;
|
break;
|
||||||
Length = TS_SIZE;
|
Length = TS_SIZE;
|
||||||
@ -204,7 +204,7 @@ void cFemonReceiver::Action(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// process available dolby data
|
// process available dolby data
|
||||||
while (Data = m_AC3Buffer.Get(Length)) {
|
while ((Data = m_AC3Buffer.Get(Length))) {
|
||||||
if (!m_Active || (Length < TS_SIZE))
|
if (!m_Active || (Length < TS_SIZE))
|
||||||
break;
|
break;
|
||||||
Length = TS_SIZE;
|
Length = TS_SIZE;
|
||||||
|
Loading…
Reference in New Issue
Block a user