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
path: root/src
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-05-17 10:38:49 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-05-18 22:01:18 +0400
commit1d50f7e6a277209321e876c874332637009688b0 (patch)
tree852b471d81556e9fa67e92f6c261cfdc9be34880 /src
parentd05a65bac3d0ab6290c0e386885bd9969604e5a0 (diff)
cosmetics: add new lines at the end of files.
Diffstat (limited to 'src')
-rw-r--r--src/DSUtil/SysVersion.cpp2
-rw-r--r--src/DeCSS/CSSscramble.h2
-rw-r--r--src/DeCSS/DeCSSInputPin.cpp2
-rw-r--r--src/SubPic/SubPicAllocatorPresenterImpl.h3
-rw-r--r--src/Subtitles/SubtitleInputPin.cpp6
-rw-r--r--src/filters/muxer/DSMMuxer/DSMMuxer.cpp2
-rw-r--r--src/filters/parser/MpegSplitter/MpegSplitterFile.cpp2
-rw-r--r--src/filters/reader/VTSReader/VTSReader.cpp2
-rw-r--r--src/filters/renderer/VideoRenderers/IPinHook.cpp2
-rw-r--r--src/filters/renderer/VideoRenderers/SyncRenderer.cpp2
-rw-r--r--src/filters/transform/Mpeg2DecFilter/Mpeg2DecSettingsWnd.h4
-rw-r--r--src/filters/transform/Mpeg2DecFilter/idct_sse2.cpp4
12 files changed, 16 insertions, 17 deletions
diff --git a/src/DSUtil/SysVersion.cpp b/src/DSUtil/SysVersion.cpp
index 3393959c2..54549acfc 100644
--- a/src/DSUtil/SysVersion.cpp
+++ b/src/DSUtil/SysVersion.cpp
@@ -46,4 +46,4 @@ bool SysVersion::InitIs64Bit()
BOOL f64 = FALSE;
return (IsWow64Process(GetCurrentProcess(), &f64) && f64);
#endif
-} \ No newline at end of file
+}
diff --git a/src/DeCSS/CSSscramble.h b/src/DeCSS/CSSscramble.h
index 0ea8d9f42..b4c0210da 100644
--- a/src/DeCSS/CSSscramble.h
+++ b/src/DeCSS/CSSscramble.h
@@ -5,4 +5,4 @@ extern void CSStitlekey(unsigned char *tkey,unsigned char *dkey);
extern void CSSdescramble(unsigned char *sector,unsigned char *tkey);
extern unsigned char g_PlayerKeys[][6];
-extern int g_nPlayerKeys; \ No newline at end of file
+extern int g_nPlayerKeys;
diff --git a/src/DeCSS/DeCSSInputPin.cpp b/src/DeCSS/DeCSSInputPin.cpp
index 7361b6996..c0615d47d 100644
--- a/src/DeCSS/DeCSSInputPin.cpp
+++ b/src/DeCSS/DeCSSInputPin.cpp
@@ -356,4 +356,4 @@ STDMETHODIMP CDeCSSInputPin::QuerySupported(REFGUID PropSet, ULONG Id, ULONG* pT
}
return S_OK;
-} \ No newline at end of file
+}
diff --git a/src/SubPic/SubPicAllocatorPresenterImpl.h b/src/SubPic/SubPicAllocatorPresenterImpl.h
index 22017d5fb..a5a23c823 100644
--- a/src/SubPic/SubPicAllocatorPresenterImpl.h
+++ b/src/SubPic/SubPicAllocatorPresenterImpl.h
@@ -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.
*
@@ -104,4 +104,3 @@ public:
return E_NOTIMPL;
}
};
-
diff --git a/src/Subtitles/SubtitleInputPin.cpp b/src/Subtitles/SubtitleInputPin.cpp
index 367006123..3c5dcefa7 100644
--- a/src/Subtitles/SubtitleInputPin.cpp
+++ b/src/Subtitles/SubtitleInputPin.cpp
@@ -374,8 +374,8 @@ STDMETHODIMP CSubtitleInputPin::EndOfStream(void)
bool CSubtitleInputPin::IsHdmvSub(const CMediaType* pmt)
{
return pmt->majortype == MEDIATYPE_Subtitle && (pmt->subtype == MEDIASUBTYPE_HDMVSUB || // Blu ray presentation graphics
- pmt->subtype == MEDIASUBTYPE_DVB_SUBTITLES || // DVB subtitles
- (pmt->subtype == MEDIASUBTYPE_NULL && pmt->formattype == FORMAT_SubtitleInfo)) // Workaround : support for Haali PGS
+ pmt->subtype == MEDIASUBTYPE_DVB_SUBTITLES || // DVB subtitles
+ (pmt->subtype == MEDIASUBTYPE_NULL && pmt->formattype == FORMAT_SubtitleInfo)) // Workaround : support for Haali PGS
? true
: false;
-} \ No newline at end of file
+}
diff --git a/src/filters/muxer/DSMMuxer/DSMMuxer.cpp b/src/filters/muxer/DSMMuxer/DSMMuxer.cpp
index deaee0cb7..1edf06dcd 100644
--- a/src/filters/muxer/DSMMuxer/DSMMuxer.cpp
+++ b/src/filters/muxer/DSMMuxer/DSMMuxer.cpp
@@ -445,4 +445,4 @@ void CDSMMuxerFilter::IndexSyncPoint(const MuxerPacket* p, __int64 fp)
}
m_sps.AddTail(sp);
-} \ No newline at end of file
+}
diff --git a/src/filters/parser/MpegSplitter/MpegSplitterFile.cpp b/src/filters/parser/MpegSplitter/MpegSplitterFile.cpp
index f2fceec5b..3798dc63b 100644
--- a/src/filters/parser/MpegSplitter/MpegSplitterFile.cpp
+++ b/src/filters/parser/MpegSplitter/MpegSplitterFile.cpp
@@ -1131,4 +1131,4 @@ bool CMpegSplitterFile::GetStreamType(WORD pid, PES_STREAM_TYPE& stream_type)
}
return false;
-} \ No newline at end of file
+}
diff --git a/src/filters/reader/VTSReader/VTSReader.cpp b/src/filters/reader/VTSReader/VTSReader.cpp
index 3d2d94846..f7b3cb6dc 100644
--- a/src/filters/reader/VTSReader/VTSReader.cpp
+++ b/src/filters/reader/VTSReader/VTSReader.cpp
@@ -291,4 +291,4 @@ int CVTSStream::GetChaptersCount()
REFERENCE_TIME CVTSStream::GetChapterOffset(UINT ChapterNumber)
{
return m_vob->GetChapterOffset(ChapterNumber);
-} \ No newline at end of file
+}
diff --git a/src/filters/renderer/VideoRenderers/IPinHook.cpp b/src/filters/renderer/VideoRenderers/IPinHook.cpp
index d64a06c42..367cf8707 100644
--- a/src/filters/renderer/VideoRenderers/IPinHook.cpp
+++ b/src/filters/renderer/VideoRenderers/IPinHook.cpp
@@ -1536,4 +1536,4 @@ void HookDirectXVideoDecoderService(void* pIDirectXVideoDecoderService)
g_pIDirectXVideoDecoderServiceCVtbl = pIDirectXVideoDecoderServiceC->lpVtbl;
}
-} \ No newline at end of file
+}
diff --git a/src/filters/renderer/VideoRenderers/SyncRenderer.cpp b/src/filters/renderer/VideoRenderers/SyncRenderer.cpp
index 36bd9dd87..103d106e1 100644
--- a/src/filters/renderer/VideoRenderers/SyncRenderer.cpp
+++ b/src/filters/renderer/VideoRenderers/SyncRenderer.cpp
@@ -4536,4 +4536,4 @@ HRESULT CGenlock::UpdateStats(double syncOffset, double frameCycle)
minFrameCycle = min(minFrameCycle, frameCycle);
maxFrameCycle = max(maxFrameCycle, frameCycle);
return S_OK;
-} \ No newline at end of file
+}
diff --git a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecSettingsWnd.h b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecSettingsWnd.h
index 02256c9af..5e5586887 100644
--- a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecSettingsWnd.h
+++ b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecSettingsWnd.h
@@ -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.
*
@@ -85,4 +85,4 @@ public:
afx_msg void OnButtonProcampReset();
afx_msg void OnButtonInterlaced();
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
-}; \ No newline at end of file
+};
diff --git a/src/filters/transform/Mpeg2DecFilter/idct_sse2.cpp b/src/filters/transform/Mpeg2DecFilter/idct_sse2.cpp
index aeb18403e..9fa45900b 100644
--- a/src/filters/transform/Mpeg2DecFilter/idct_sse2.cpp
+++ b/src/filters/transform/Mpeg2DecFilter/idct_sse2.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.
*
@@ -319,4 +319,4 @@ void mpeg2_idct_add_sse2(int, int16_t* block, uint8_t* dest, const int stride)
void mpeg2_idct_init_sse2()
{
-} \ No newline at end of file
+}