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:
authorSpec-Chum <spec-chum@users.sourceforge.net>2010-06-08 01:39:08 +0400
committerSpec-Chum <spec-chum@users.sourceforge.net>2010-06-08 01:39:08 +0400
commit5405d6ad0ca42f4d60d5cdde85f2e4f1d6aee3d5 (patch)
tree24b1b2e5b0480c7811d0cf9e915f576342a7f5c2 /src/filters/parser/AviSplitter/AviFile.cpp
parent14adf6b2d1c189aac0e4785a71b8f07fdd567ba4 (diff)
Fix: ICL now compiles with all 4 configs (x86 and x64 both debug and release)
Fix: About box didn't open with ICL (should fix same issue with VS2010 too) Fix: Crash when opening internal filter property page when compiled using ICL Added: ICL now added to MPC-HC Compiler section of about box if used to compile MPC-HC git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2015 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/parser/AviSplitter/AviFile.cpp')
-rw-r--r--src/filters/parser/AviSplitter/AviFile.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/filters/parser/AviSplitter/AviFile.cpp b/src/filters/parser/AviSplitter/AviFile.cpp
index 315a03741..8e98d906b 100644
--- a/src/filters/parser/AviSplitter/AviFile.cpp
+++ b/src/filters/parser/AviSplitter/AviFile.cpp
@@ -13,14 +13,6 @@ CAviFile::CAviFile(IAsyncReader* pAsyncReader, HRESULT& hr)
hr = Init();
}
-template<typename T>
-HRESULT CAviFile::Read(T& var, int offset)
-{
- memset(&var, 0, sizeof(var));
- HRESULT hr = ByteRead((BYTE*)&var + offset, sizeof(var) - offset);
- return hr;
-}
-
HRESULT CAviFile::Init()
{
Seek(0);