From c0a67a988430647a296f16cfbfe69b53c86e3bfc Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sun, 5 Jan 2014 16:52:38 +0000 Subject: [PATCH] update to 2014 --- README | 4 +- linux/sound.cpp | 2 +- linux/sound.h | 2 +- mac/sound.cpp | 2 +- mac/sound.h | 214 +++++++++++++++++++------------------- src/aboutdlgbase.ui | 2 +- src/analyzerconsole.cpp | 2 +- src/analyzerconsole.h | 2 +- src/audiomixerboard.cpp | 2 +- src/audiomixerboard.h | 2 +- src/buffer.cpp | 2 +- src/buffer.h | 2 +- src/channel.cpp | 2 +- src/channel.h | 2 +- src/chatdlg.cpp | 2 +- src/chatdlg.h | 2 +- src/client.cpp | 2 +- src/client.h | 2 +- src/clientdlg.cpp | 2 +- src/clientdlg.h | 2 +- src/clientsettingsdlg.cpp | 2 +- src/clientsettingsdlg.h | 2 +- src/connectdlg.cpp | 2 +- src/connectdlg.h | 2 +- src/global.h | 2 +- src/main.cpp | 2 +- src/multicolorled.cpp | 2 +- src/multicolorled.h | 2 +- src/multicolorledbar.cpp | 2 +- src/multicolorledbar.h | 2 +- src/protocol.cpp | 2 +- src/protocol.h | 2 +- src/server.cpp | 2 +- src/server.h | 2 +- src/serverdlg.cpp | 2 +- src/serverdlg.h | 2 +- src/serverlist.cpp | 2 +- src/serverlist.h | 2 +- src/serverlogging.cpp | 42 ++++---- src/serverlogging.h | 2 +- src/settings.cpp | 2 +- src/settings.h | 2 +- src/socket.cpp | 2 +- src/socket.h | 2 +- src/soundbase.cpp | 2 +- src/soundbase.h | 2 +- src/testbench.h | 2 +- src/util.cpp | 2 +- src/util.h | 2 +- windows/sound.cpp | 2 +- windows/sound.h | 2 +- 51 files changed, 178 insertions(+), 178 deletions(-) diff --git a/README b/README index c87fcecf..fcfcb921 100755 --- a/README +++ b/README @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer @@ -23,7 +23,7 @@ \******************************************************************************/ Jamulus - Internet Jam Session Software ------------------------------------- +--------------------------------------- Low-Latency (Internet) Connection tool Under the GNU General Public License (GPL) diff --git a/linux/sound.cpp b/linux/sound.cpp index d175ba70..5e172eb6 100755 --- a/linux/sound.cpp +++ b/linux/sound.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/linux/sound.h b/linux/sound.h index 5ac67d2b..be810626 100755 --- a/linux/sound.h +++ b/linux/sound.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2011 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/mac/sound.cpp b/mac/sound.cpp index 8b90b87d..055e02b3 100755 --- a/mac/sound.cpp +++ b/mac/sound.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2011 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/mac/sound.h b/mac/sound.h index d84f28ec..f112c6d3 100755 --- a/mac/sound.h +++ b/mac/sound.h @@ -1,107 +1,107 @@ -/******************************************************************************\ - * Copyright (c) 2004-2011 - * - * Author(s): - * Volker Fischer - * - ****************************************************************************** - * - * 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 of the License, 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 - * this program; if not, write to the Free Software Foundation, Inc., - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * -\******************************************************************************/ - -#if !defined(_SOUND_H__9518A621345F78_363456876UZGSDF82CF549__INCLUDED_) -#define _SOUND_H__9518A621345F78_363456876UZGSDF82CF549__INCLUDED_ - -#include -#include -#include -#include -#include "util.h" -#include "soundbase.h" -#include "global.h" - - -/* Classes ********************************************************************/ -class CSound : public CSoundBase -{ -public: - CSound ( void (*fpNewProcessCallback) ( CVector& psData, void* arg ), void* arg ); - virtual ~CSound() { CloseCoreAudio(); } - - virtual int Init ( const int iNewPrefMonoBufferSize ); - virtual void Start(); - virtual void Stop(); - - // these variables should be protected but cannot since we want - // to access them from the callback function - CVector vecsTmpAudioSndCrdStereo; - int iCoreAudioBufferSizeMono; - int iCoreAudioBufferSizeStereo; - -protected: - virtual QString LoadAndInitializeDriver ( int iIdx ); - - QString CheckDeviceCapabilities ( ComponentInstance& NewAudioInputUnit, - ComponentInstance& NewAudioOutputUnit ); - - void CloseCoreAudio(); - - UInt32 SetBufferSize ( AudioDeviceID& audioDeviceID, - const bool bIsInput, - UInt32 iPrefBufferSize ); - - void GetAudioDeviceInfos ( const AudioDeviceID DeviceID, - QString& strDeviceName, - bool& bIsInput, - bool& bIsOutput ); - - // callbacks - static OSStatus deviceNotification ( AudioDeviceID, - UInt32, - Boolean, - AudioDevicePropertyID inPropertyID, - void* inRefCon ); - - static OSStatus processInput ( void* inRefCon, - AudioUnitRenderActionFlags* ioActionFlags, - const AudioTimeStamp* inTimeStamp, - UInt32 inBusNumber, - UInt32 inNumberFrames, - AudioBufferList* ); - - static OSStatus processOutput ( void* inRefCon, - AudioUnitRenderActionFlags*, - const AudioTimeStamp*, - UInt32, - UInt32, - AudioBufferList* ioData ); - - AudioStreamBasicDescription streamFormat; - - AURenderCallbackStruct inputCallbackStruct; - AURenderCallbackStruct outputCallbackStruct; - - ComponentInstance audioInputUnit; - AudioDeviceID audioInputDevice[MAX_NUMBER_SOUND_CARDS]; - ComponentInstance audioOutputUnit; - AudioDeviceID audioOutputDevice[MAX_NUMBER_SOUND_CARDS]; - - AudioBufferList* pBufferList; - - QMutex Mutex; -}; - -#endif // !defined(_SOUND_H__9518A621345F78_363456876UZGSDF82CF549__INCLUDED_) +/******************************************************************************\ + * Copyright (c) 2004-2014 + * + * Author(s): + * Volker Fischer + * + ****************************************************************************** + * + * 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 of the License, 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 + * this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * +\******************************************************************************/ + +#if !defined(_SOUND_H__9518A621345F78_363456876UZGSDF82CF549__INCLUDED_) +#define _SOUND_H__9518A621345F78_363456876UZGSDF82CF549__INCLUDED_ + +#include +#include +#include +#include +#include "util.h" +#include "soundbase.h" +#include "global.h" + + +/* Classes ********************************************************************/ +class CSound : public CSoundBase +{ +public: + CSound ( void (*fpNewProcessCallback) ( CVector& psData, void* arg ), void* arg ); + virtual ~CSound() { CloseCoreAudio(); } + + virtual int Init ( const int iNewPrefMonoBufferSize ); + virtual void Start(); + virtual void Stop(); + + // these variables should be protected but cannot since we want + // to access them from the callback function + CVector vecsTmpAudioSndCrdStereo; + int iCoreAudioBufferSizeMono; + int iCoreAudioBufferSizeStereo; + +protected: + virtual QString LoadAndInitializeDriver ( int iIdx ); + + QString CheckDeviceCapabilities ( ComponentInstance& NewAudioInputUnit, + ComponentInstance& NewAudioOutputUnit ); + + void CloseCoreAudio(); + + UInt32 SetBufferSize ( AudioDeviceID& audioDeviceID, + const bool bIsInput, + UInt32 iPrefBufferSize ); + + void GetAudioDeviceInfos ( const AudioDeviceID DeviceID, + QString& strDeviceName, + bool& bIsInput, + bool& bIsOutput ); + + // callbacks + static OSStatus deviceNotification ( AudioDeviceID, + UInt32, + Boolean, + AudioDevicePropertyID inPropertyID, + void* inRefCon ); + + static OSStatus processInput ( void* inRefCon, + AudioUnitRenderActionFlags* ioActionFlags, + const AudioTimeStamp* inTimeStamp, + UInt32 inBusNumber, + UInt32 inNumberFrames, + AudioBufferList* ); + + static OSStatus processOutput ( void* inRefCon, + AudioUnitRenderActionFlags*, + const AudioTimeStamp*, + UInt32, + UInt32, + AudioBufferList* ioData ); + + AudioStreamBasicDescription streamFormat; + + AURenderCallbackStruct inputCallbackStruct; + AURenderCallbackStruct outputCallbackStruct; + + ComponentInstance audioInputUnit; + AudioDeviceID audioInputDevice[MAX_NUMBER_SOUND_CARDS]; + ComponentInstance audioOutputUnit; + AudioDeviceID audioOutputDevice[MAX_NUMBER_SOUND_CARDS]; + + AudioBufferList* pBufferList; + + QMutex Mutex; +}; + +#endif // !defined(_SOUND_H__9518A621345F78_363456876UZGSDF82CF549__INCLUDED_) diff --git a/src/aboutdlgbase.ui b/src/aboutdlgbase.ui index 48164b1c..0a2200cb 100755 --- a/src/aboutdlgbase.ui +++ b/src/aboutdlgbase.ui @@ -133,7 +133,7 @@ - Copyright (C) 2005 - 2013 + Copyright (C) 2005-2014 false diff --git a/src/analyzerconsole.cpp b/src/analyzerconsole.cpp index 1d57b511..037410fa 100644 --- a/src/analyzerconsole.cpp +++ b/src/analyzerconsole.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/analyzerconsole.h b/src/analyzerconsole.h index 99b2e470..50008dc0 100644 --- a/src/analyzerconsole.h +++ b/src/analyzerconsole.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/audiomixerboard.cpp b/src/audiomixerboard.cpp index fcc90f83..58aac0ca 100755 --- a/src/audiomixerboard.cpp +++ b/src/audiomixerboard.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/audiomixerboard.h b/src/audiomixerboard.h index e39b265e..a5be1e22 100755 --- a/src/audiomixerboard.h +++ b/src/audiomixerboard.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/buffer.cpp b/src/buffer.cpp index acb63861..3e329deb 100755 --- a/src/buffer.cpp +++ b/src/buffer.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/buffer.h b/src/buffer.h index 891a8ff2..b7563c4c 100755 --- a/src/buffer.h +++ b/src/buffer.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/channel.cpp b/src/channel.cpp index eff8ab09..b4cce864 100755 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/channel.h b/src/channel.h index 2a4d81a6..fddd96a9 100755 --- a/src/channel.h +++ b/src/channel.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/chatdlg.cpp b/src/chatdlg.cpp index 008f7b29..3890f981 100755 --- a/src/chatdlg.cpp +++ b/src/chatdlg.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/chatdlg.h b/src/chatdlg.h index 4997c0f9..9ec1364b 100755 --- a/src/chatdlg.h +++ b/src/chatdlg.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/client.cpp b/src/client.cpp index 3a2fbfa4..a8060388 100755 --- a/src/client.cpp +++ b/src/client.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/client.h b/src/client.h index ac62fc58..ec5b0c45 100755 --- a/src/client.h +++ b/src/client.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/clientdlg.cpp b/src/clientdlg.cpp index c2e13eea..c3a428e3 100755 --- a/src/clientdlg.cpp +++ b/src/clientdlg.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/clientdlg.h b/src/clientdlg.h index 160a5aeb..4042fca2 100755 --- a/src/clientdlg.h +++ b/src/clientdlg.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/clientsettingsdlg.cpp b/src/clientsettingsdlg.cpp index 323c09ca..9f82adce 100755 --- a/src/clientsettingsdlg.cpp +++ b/src/clientsettingsdlg.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/clientsettingsdlg.h b/src/clientsettingsdlg.h index 4005ef8f..f7807857 100755 --- a/src/clientsettingsdlg.h +++ b/src/clientsettingsdlg.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/connectdlg.cpp b/src/connectdlg.cpp index 23fa0c53..4e4356ce 100755 --- a/src/connectdlg.cpp +++ b/src/connectdlg.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/connectdlg.h b/src/connectdlg.h index 66fefda6..e7f0ac12 100755 --- a/src/connectdlg.h +++ b/src/connectdlg.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/global.h b/src/global.h index cf7009a5..ca506b17 100755 --- a/src/global.h +++ b/src/global.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * \copyright (c) 2004-2013 + * \copyright (c) 2004-2014 * \author Volker Fischer * diff --git a/src/main.cpp b/src/main.cpp index f3b167dd..97c866c8 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/multicolorled.cpp b/src/multicolorled.cpp index a2c734c8..b2ce1534 100755 --- a/src/multicolorled.cpp +++ b/src/multicolorled.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/multicolorled.h b/src/multicolorled.h index c7c02c98..206c2acf 100755 --- a/src/multicolorled.h +++ b/src/multicolorled.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/multicolorledbar.cpp b/src/multicolorledbar.cpp index d84081bf..668ee0ad 100755 --- a/src/multicolorledbar.cpp +++ b/src/multicolorledbar.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/multicolorledbar.h b/src/multicolorledbar.h index ba313abf..7273ec75 100755 --- a/src/multicolorledbar.h +++ b/src/multicolorledbar.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/protocol.cpp b/src/protocol.cpp index b5d7131f..645f9cca 100755 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/protocol.h b/src/protocol.h index dc335340..b02f5e22 100755 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/server.cpp b/src/server.cpp index 3e531050..77edc0e1 100755 --- a/src/server.cpp +++ b/src/server.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/server.h b/src/server.h index 26e508df..cb96cd6c 100755 --- a/src/server.h +++ b/src/server.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/serverdlg.cpp b/src/serverdlg.cpp index 594c4353..8acc2b90 100755 --- a/src/serverdlg.cpp +++ b/src/serverdlg.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/serverdlg.h b/src/serverdlg.h index 59f5a3e8..9c12527a 100755 --- a/src/serverdlg.h +++ b/src/serverdlg.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/serverlist.cpp b/src/serverlist.cpp index 50671c89..cc154f74 100755 --- a/src/serverlist.cpp +++ b/src/serverlist.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/serverlist.h b/src/serverlist.h index db7220b5..22080b32 100755 --- a/src/serverlist.h +++ b/src/serverlist.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/serverlogging.cpp b/src/serverlogging.cpp index c13f587a..7475ac62 100755 --- a/src/serverlogging.cpp +++ b/src/serverlogging.cpp @@ -1,25 +1,25 @@ /******************************************************************************\ -* Copyright (c) 2004-2013 -* -* Author(s): -* Volker Fischer -* -****************************************************************************** -* -* 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 of the License, 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 -* this program; if not, write to the Free Software Foundation, Inc., -* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -* + * Copyright (c) 2004-2014 + * + * Author(s): + * Volker Fischer + * + ****************************************************************************** + * + * 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 of the License, 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 + * this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * \******************************************************************************/ #include "serverlogging.h" diff --git a/src/serverlogging.h b/src/serverlogging.h index 93b5347e..81c99455 100755 --- a/src/serverlogging.h +++ b/src/serverlogging.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/settings.cpp b/src/settings.cpp index 619d8979..c24291d3 100755 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/settings.h b/src/settings.h index e3c61721..1c88f9e0 100755 --- a/src/settings.h +++ b/src/settings.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/socket.cpp b/src/socket.cpp index aa86ff2b..5f6c353e 100755 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/socket.h b/src/socket.h index 1e0b9879..473cee1f 100755 --- a/src/socket.h +++ b/src/socket.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/soundbase.cpp b/src/soundbase.cpp index ebd902cc..521cd5fb 100755 --- a/src/soundbase.cpp +++ b/src/soundbase.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/soundbase.h b/src/soundbase.h index e2d0a5c7..3d804daa 100755 --- a/src/soundbase.h +++ b/src/soundbase.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/testbench.h b/src/testbench.h index 6b17ec52..f7ce0bbe 100755 --- a/src/testbench.h +++ b/src/testbench.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/util.cpp b/src/util.cpp index 23c446d9..25e04104 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/src/util.h b/src/util.h index a0ea5bb3..01103a02 100755 --- a/src/util.h +++ b/src/util.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/windows/sound.cpp b/windows/sound.cpp index 02990851..4c3ce8c5 100755 --- a/windows/sound.cpp +++ b/windows/sound.cpp @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer diff --git a/windows/sound.h b/windows/sound.h index eaafcf90..963f0715 100755 --- a/windows/sound.h +++ b/windows/sound.h @@ -1,5 +1,5 @@ /******************************************************************************\ - * Copyright (c) 2004-2013 + * Copyright (c) 2004-2014 * * Author(s): * Volker Fischer