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>2012-04-01 14:32:20 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-04-01 14:32:20 +0400
commit6ed2d7664f088c0cd95daf045389d899dc9d6c3e (patch)
tree0404f2d2382532615b5fb3e0b893a1b8acfabbd4 /src/filters/parser/MP4Splitter/MP4Splitter.cpp
parentd5eda1da3c3f03680e8235c970504ce4fed74378 (diff)
update changelog, apply astyle
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4233 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/parser/MP4Splitter/MP4Splitter.cpp')
-rw-r--r--src/filters/parser/MP4Splitter/MP4Splitter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filters/parser/MP4Splitter/MP4Splitter.cpp b/src/filters/parser/MP4Splitter/MP4Splitter.cpp
index c11a15c99..c0008653c 100644
--- a/src/filters/parser/MP4Splitter/MP4Splitter.cpp
+++ b/src/filters/parser/MP4Splitter/MP4Splitter.cpp
@@ -1031,19 +1031,19 @@ HRESULT CMP4SplitterFilter::CreateOutputs(IAsyncReader* pAsyncReader)
}
if (type != AP4_ATOM_TYPE_MP4A && type != AP4_ATOM_TYPE_ALAW && type != AP4_ATOM_TYPE_ULAW) {
- if(type == AP4_ATOM_TYPE_ALAC) {
+ if (type == AP4_ATOM_TYPE_ALAC) {
const AP4_Byte* data = db.GetData();
AP4_Size size = db.GetDataSize();
while (size >= 36) {
- if((*(DWORD*)(data) == 0x24000000) && (*(DWORD*)(data+4) == 0x63616c61)) {
+ if ((*(DWORD*)(data) == 0x24000000) && (*(DWORD*)(data+4) == 0x63616c61)) {
break;
}
size--;
data++;
}
- if(size >= 36) {
+ if (size >= 36) {
wfe->cbSize = 36;
memcpy(wfe+1, data, 36);
}