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:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-05-24 12:59:00 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-05-24 21:03:44 +0400
commit87aed77e9777210db0bc0044c0729dc99c35cf04 (patch)
treefffd2eb5829386295c762d86adbcc2fc66387295 /src/filters/parser
parentf890700b910eeecb1f7740c8d70ac7ffc29dbcc8 (diff)
cosmetics: change cast type to the one the var we compare to is declared.
Diffstat (limited to 'src/filters/parser')
-rw-r--r--src/filters/parser/MP4Splitter/Ap4AsyncReaderStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filters/parser/MP4Splitter/Ap4AsyncReaderStream.cpp b/src/filters/parser/MP4Splitter/Ap4AsyncReaderStream.cpp
index de0b1334b..afbb51d29 100644
--- a/src/filters/parser/MP4Splitter/Ap4AsyncReaderStream.cpp
+++ b/src/filters/parser/MP4Splitter/Ap4AsyncReaderStream.cpp
@@ -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.
*
@@ -52,7 +52,7 @@ AP4_Result AP4_AsyncReaderStream::Read(void* buffer, AP4_Size bytesToRead, AP4_S
{
__int64 bytesAvail = m_pFile->GetRemaining();
- if (bytesAvail < (LONGLONG)bytesToRead) {
+ if (bytesAvail < (__int64)bytesToRead) {
if (bytesRead) {
*bytesRead = bytesAvail;
}