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-28 14:11:51 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-05-28 20:25:52 +0400
commitb4c868c9e603d91b4c29bf1cb178eb59292e1129 (patch)
treef1730d17c480d5ca611c4453d31f626525a27253 /src/filters/parser
parentd81dd7870f0de4fff22fa3e078cb2fa3f7cfe7d0 (diff)
Run astyle.
Diffstat (limited to 'src/filters/parser')
-rw-r--r--src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp b/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp
index 411b2c9a5..99f7f3bfb 100644
--- a/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp
+++ b/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp
@@ -465,7 +465,7 @@ bool CBaseSplitterFileEx::Read(mpahdr& h, int len, bool fAllowV25, CMediaType* p
int syncbits = fAllowV25 ? 11 : 12;
- while(len >= 4) {
+ while (len >= 4) {
__int64 pos = GetPos();
if (BitRead(syncbits, true) != (1 << syncbits) - 1) {
@@ -496,7 +496,7 @@ bool CBaseSplitterFileEx::Read(mpahdr& h, int len, bool fAllowV25, CMediaType* p
if (h.version == 3 && h.layer == 2) {
if (h.channels != 3 && (h.bitrate == 1 || h.bitrate == 2 || h.bitrate == 3 || h.bitrate == 5) ||
- h.channels == 3 && h.bitrate >= 11) {
+ h.channels == 3 && h.bitrate >= 11) {
Seek(pos + 1);
len--;
continue;