Browse Source

Remove unneeded include.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4148 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.7
sletz 15 years ago
parent
commit
f3252b4cca
5 changed files with 19 additions and 22 deletions
  1. +4
    -5
      common/JackChannel.h
  2. +0
    -1
      common/JackClient.h
  3. +11
    -11
      common/JackFrameTimer.h
  4. +3
    -3
      common/JackPort.h
  5. +1
    -2
      common/JackPortType.h

+ 4
- 5
common/JackChannel.h View File

@@ -12,7 +12,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

*/
@@ -20,7 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef __JackChannel__
#define __JackChannel__

#include "types.h"
#include "session.h"

namespace Jack
@@ -126,7 +125,7 @@ class JackClientChannelInterface

virtual void InternalClientUnload(int refnum, int int_ref, int* status, int* result)
{}
virtual void SessionNotify(int refnum, const char* target, jack_session_event_type_t type, const char *path, jack_session_command_t **result)
{}

@@ -143,8 +142,8 @@ class JackClientChannelInterface
{}

virtual bool IsChannelThread()
{
return false;
{
return false;
}
};



+ 0
- 1
common/JackClient.h View File

@@ -27,7 +27,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackSynchro.h"
#include "JackPlatformPlug.h"
#include "JackChannel.h"
#include "types.h"
#include "session.h"
#include "varargs.h"
#include <list>


+ 11
- 11
common/JackFrameTimer.h View File

@@ -13,7 +13,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

*/
@@ -36,9 +36,9 @@ class SERVER_EXPORT JackTimer
{

friend class JackFrameTimer;
private:
private:
jack_nframes_t fFrames;
jack_time_t fCurrentWakeup;
jack_time_t fCurrentCallback;
@@ -47,21 +47,21 @@ class SERVER_EXPORT JackTimer
float fFilterCoefficient; /* set once, never altered */
bool fInitialized;

public:
public:
JackTimer();
~JackTimer()
{}
jack_nframes_t Time2Frames(jack_time_t time, jack_nframes_t buffer_size);
jack_time_t Frames2Time(jack_nframes_t frames, jack_nframes_t buffer_size);
jack_nframes_t FramesSinceCycleStart(jack_time_t cur_time, jack_nframes_t frames_rate);
jack_nframes_t CurFrame()
{
return fFrames;
}
jack_time_t CurTime()
{
return fCurrentWakeup;
@@ -75,7 +75,7 @@ class SERVER_EXPORT JackTimer

class SERVER_EXPORT JackFrameTimer : public JackAtomicState<JackTimer>
{
private:

bool fFirstWakeUp;
@@ -93,7 +93,7 @@ class SERVER_EXPORT JackFrameTimer : public JackAtomicState<JackTimer>
void ResetFrameTime(jack_nframes_t frames_rate, jack_time_t callback_usecs, jack_time_t period_usecs);
void IncFrameTime(jack_nframes_t buffer_size, jack_time_t callback_usecs, jack_time_t period_usecs);
void ReadFrameTime(JackTimer* timer);
} POST_PACKED_STRUCTURE;




+ 3
- 3
common/JackPort.h View File

@@ -13,7 +13,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

*/
@@ -56,7 +56,7 @@ class SERVER_EXPORT JackPort
bool fInUse;
jack_port_id_t fTied; // Locally tied source port
float fBuffer[BUFFER_SIZE_MAX + 4];
bool IsUsed() const
{
return fInUse;
@@ -105,7 +105,7 @@ class SERVER_EXPORT JackPort
}

int GetRefNum() const;
} POST_PACKED_STRUCTURE;

} // end of namespace


+ 1
- 2
common/JackPortType.h View File

@@ -12,7 +12,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

*/
@@ -20,7 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef __JackPortType__
#define __JackPortType__

#include "types.h"
#include "JackConstants.h"
#include <stddef.h>



Loading…
Cancel
Save