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:
-rw-r--r--contrib/astyle.ini12
-rw-r--r--src/filters/reader/CDDAReader/CDDAReader.cpp12
2 files changed, 12 insertions, 12 deletions
diff --git a/contrib/astyle.ini b/contrib/astyle.ini
index 95e19ae95..5d95a5cf9 100644
--- a/contrib/astyle.ini
+++ b/contrib/astyle.ini
@@ -35,17 +35,17 @@
# directories
--exclude=bin
+--exclude=cov-int
--exclude=thirdparty
# common files
--exclude=resource.h
# include dir
---exclude=atl --exclude=avisynth --exclude=dx --exclude=lglcd
---exclude=qt --exclude=realmedia --exclude=vd2 --exclude=winddk
---exclude=inttypes.h --exclude=libdivide.h --exclude=MediaInfoDLL.h
---exclude=mvrInterfaces.h --exclude=SubRenderIntf.h --exclude=unrar.h
---exclude=Utf8.h --exclude=version_rev.h
+--exclude=avisynth --exclude=dx --exclude=lglcd --exclude=qt
+--exclude=realmedia --exclude=vd2 --exclude=winddk --exclude=libdivide.h
+--exclude=MediaInfoDLL.h --exclude=mvrInterfaces.h --exclude=SubRenderIntf.h
+--exclude=unrar.h --exclude=Utf8.h --exclude=version_rev.h
# src/DeCSS
--exclude=CSSauth.cpp --exclude=CSSauth.h --exclude=CSSscramble.cpp --exclude=CSSscramble.h
@@ -55,7 +55,7 @@
--exclude=deinterlace.cpp --exclude=vd_asm.cpp --exclude=vd_asm.h --exclude=vd.cpp --exclude=vd.h
# src/mpc-hc
---exclude=LineNumberEdit.cpp --exclude=LineNumberEdit.h --exclude=Struct.h
+--exclude=Struct.h
# src/MPCTestAPI
--exclude=HScrollListBox.cpp --exclude=HScrollListBox.h
diff --git a/src/filters/reader/CDDAReader/CDDAReader.cpp b/src/filters/reader/CDDAReader/CDDAReader.cpp
index bf7182e85..0916ea1a7 100644
--- a/src/filters/reader/CDDAReader/CDDAReader.cpp
+++ b/src/filters/reader/CDDAReader/CDDAReader.cpp
@@ -384,15 +384,15 @@ bool CCDDAStream::Load(const WCHAR* fnw)
const int lenW = _countof(pDesc->WText);
CString text = !pDesc->Unicode
- ? CString(CStringA((CHAR*)pDesc->Text, lenU))
- : CString(CStringW((WCHAR*)pDesc->WText, lenW));
+ ? CString(CStringA((CHAR*)pDesc->Text, lenU))
+ : CString(CStringW((WCHAR*)pDesc->WText, lenW));
int tlen = text.GetLength();
CString tmp = (tlen < 12 - 1)
- ? (!pDesc->Unicode
- ? CString(CStringA((CHAR*)pDesc->Text + tlen + 1, lenU - (tlen + 1)))
- : CString(CStringW((WCHAR*)pDesc->WText + tlen + 1, lenW - (tlen + 1))))
- : _T("");
+ ? (!pDesc->Unicode
+ ? CString(CStringA((CHAR*)pDesc->Text + tlen + 1, lenU - (tlen + 1)))
+ : CString(CStringW((WCHAR*)pDesc->WText + tlen + 1, lenW - (tlen + 1))))
+ : _T("");
if (pDesc->PackType < 0x80 || pDesc->PackType >= 0x80 + 0x10) {
continue;