Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2013-05-15 21:34:01 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-05-17 00:07:16 +0400
commitb4c5355498cca2d90aa4fdbd760bfbca1993b35f (patch)
treec364da7aaf5605189886accb9a9d912372eff141 /src/filters/parser
parent32213cf91daf512f8e3db7eac92c522a0c1cf382 (diff)
Use ASSERT everywhere for consistency.
Diffstat (limited to 'src/filters/parser')
-rw-r--r--src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp b/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp
index 05ff405eb..ff757bf0a 100644
--- a/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp
+++ b/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp
@@ -1462,7 +1462,7 @@ HRESULT CMatroskaSplitterOutputPin::DeliverPacket(CAutoPtr<Packet> p)
m_packets.AddTail(p2);
POSITION pos = m_rob.GetTailPosition();
- _ASSERTE(m_nMinCache > 0);
+ ASSERT(m_nMinCache > 0);
for (int i = m_nMinCache - 1; i > 0 && pos && mp->bg->ReferencePriority < m_rob.GetAt(pos)->bg->ReferencePriority; --i) {
m_rob.GetPrev(pos);
}