Rename MxDSSubscriber functions (#573)

This commit is contained in:
Christian Semmler
2024-02-17 10:35:10 -05:00
committed by GitHub
parent 332d8da695
commit 1d189b013d
17 changed files with 51 additions and 51 deletions

View File

@@ -178,12 +178,12 @@ void MxVideoPresenter::NextFrame()
MxStreamChunk* chunk = NextChunk();
if (chunk->GetFlags() & MxDSChunk::c_end) {
m_subscriber->DestroyChunk(chunk);
m_subscriber->FreeDataChunk(chunk);
ProgressTickleState(e_repeating);
}
else {
LoadFrame(chunk);
m_subscriber->DestroyChunk(chunk);
m_subscriber->FreeDataChunk(chunk);
}
}
@@ -408,7 +408,7 @@ void MxVideoPresenter::ReadyTickle()
if (chunk) {
LoadHeader(chunk);
m_subscriber->DestroyChunk(chunk);
m_subscriber->FreeDataChunk(chunk);
ParseExtra();
ProgressTickleState(e_starting);
}
@@ -453,7 +453,7 @@ void MxVideoPresenter::StreamingTickle()
}
LoadFrame(m_currentChunk);
m_subscriber->DestroyChunk(m_currentChunk);
m_subscriber->FreeDataChunk(m_currentChunk);
m_currentChunk = NULL;
SetBit0(TRUE);