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-02-03 14:29:31 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-02-03 14:32:23 +0400
commit767cd0634248f3b49cbb0dc2bde3fa176bdb6d40 (patch)
treea790d4e9d615f5c9058ab111aa3c24d7ef4beaa2 /src/filters/parser/DSMSplitter/DSMSplitterFile.h
parent42ee81efa75241a9b1327238ebfb0128d4251a7e (diff)
Cosmetics: Define or use some constants when possible.
Diffstat (limited to 'src/filters/parser/DSMSplitter/DSMSplitterFile.h')
-rw-r--r--src/filters/parser/DSMSplitter/DSMSplitterFile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filters/parser/DSMSplitter/DSMSplitterFile.h b/src/filters/parser/DSMSplitter/DSMSplitterFile.h
index 6577460ed..28f3b1374 100644
--- a/src/filters/parser/DSMSplitter/DSMSplitterFile.h
+++ b/src/filters/parser/DSMSplitter/DSMSplitterFile.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -45,8 +45,8 @@ public:
CStreamInfoMap m_fim;
CAtlMap<BYTE, CStreamInfoMap> m_sim;
- bool Sync(dsmp_t& type, UINT64& len, __int64 limit = 65536);
- bool Sync(UINT64& syncpos, dsmp_t& type, UINT64& len, __int64 limit = 65536);
+ bool Sync(dsmp_t& type, UINT64& len, __int64 limit = MAX_PROBE_SIZE);
+ bool Sync(UINT64& syncpos, dsmp_t& type, UINT64& len, __int64 limit = MAX_PROBE_SIZE);
bool Read(__int64 len, BYTE& id, CMediaType& mt);
bool Read(__int64 len, Packet* p, bool fData = true);
bool Read(__int64 len, CAtlArray<SyncPoint>& sps);