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>2010-09-12 16:45:26 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2010-09-12 16:45:26 +0400
commitb37ef08a64b3f12bedd9d45ff910be641945f390 (patch)
tree2037c5a39b39f9ed1e0c79aef7767f519a5e507f /src/DSUtil/DSUtil.h
parentd8307f02fd6d0faad2cd963aee672ebcd5de93bc (diff)
DSUtil: applied astyle formatting
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2533 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/DSUtil.h')
-rw-r--r--src/DSUtil/DSUtil.h36
1 files changed, 23 insertions, 13 deletions
diff --git a/src/DSUtil/DSUtil.h b/src/DSUtil/DSUtil.h
index 00c305233..731f53862 100644
--- a/src/DSUtil/DSUtil.h
+++ b/src/DSUtil/DSUtil.h
@@ -1,17 +1,19 @@
-/*
- * Copyright (C) 2003-2006 Gabest
- * http://www.gabest.org
+/*
+ * $Id$
+ *
+ * (C) 2003-2006 Gabest
+ * (C) 2006-2010 see AUTHORS
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
- *
+ *
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
@@ -124,15 +126,23 @@ extern void SetThreadName( DWORD dwThreadID, LPCSTR szThreadName);
class CPinInfo : public PIN_INFO
{
public:
- CPinInfo() {pFilter = NULL;}
- ~CPinInfo() {if(pFilter) pFilter->Release();}
+ CPinInfo() {
+ pFilter = NULL;
+ }
+ ~CPinInfo() {
+ if(pFilter) pFilter->Release();
+ }
};
class CFilterInfo : public FILTER_INFO
{
public:
- CFilterInfo() {pGraph = NULL;}
- ~CFilterInfo() {if(pGraph) pGraph->Release();}
+ CFilterInfo() {
+ pGraph = NULL;
+ }
+ ~CFilterInfo() {
+ if(pGraph) pGraph->Release();
+ }
};
#define BeginEnumFilters(pFilterGraph, pEnumFilters, pBaseFilter) \
@@ -189,8 +199,8 @@ public:
template <typename T> __inline void INITDDSTRUCT(T& dd)
{
- ZeroMemory(&dd, sizeof(dd));
- dd.dwSize = sizeof(dd);
+ ZeroMemory(&dd, sizeof(dd));
+ dd.dwSize = sizeof(dd);
}
#define countof(array) (sizeof(array)/sizeof(array[0]))
@@ -199,8 +209,8 @@ template <class T>
static CUnknown* WINAPI CreateInstance(LPUNKNOWN lpunk, HRESULT* phr)
{
*phr = S_OK;
- CUnknown* punk = DNew T(lpunk, phr);
- if(punk == NULL) *phr = E_OUTOFMEMORY;
+ CUnknown* punk = DNew T(lpunk, phr);
+ if(punk == NULL) *phr = E_OUTOFMEMORY;
return punk;
}