Browse Source

Steven Chamberlain patch to fix jack_port_type.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1470 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.63
sletz 18 years ago
parent
commit
926e81b4f8
2 changed files with 7 additions and 3 deletions
  1. +4
    -0
      ChangeLog
  2. +3
    -3
      common/JackPort.cpp

+ 4
- 0
ChangeLog View File

@@ -2,6 +2,10 @@
Jackdmp changes log
---------------------------

2007-05-04 Stephane Letz <letz@grame.fr>

* Steven Chamberlain patch to fix jack_port_type.

2007-05-03 Stephane Letz <letz@grame.fr>

* Steven Chamberlain patch to fix jack_port_by_id export.


+ 3
- 3
common/JackPort.cpp View File

@@ -108,7 +108,7 @@ int JackPort::RequestMonitor(bool onoff)
/**
jackd.h
* If @ref JackPortCanMonitor is set for this @a port, turn input
* monitoring on or off. Otherwise, do nothing.
* monitoring on or off. Otherwise, do nothing.
if (!(fFlags & JackPortCanMonitor))
return -1;
@@ -128,7 +128,7 @@ int JackPort::EnsureMonitor(bool onoff)
/**
jackd.h
* If @ref JackPortCanMonitor is set for this @a port, turn input
* monitoring on or off. Otherwise, do nothing.
* monitoring on or off. Otherwise, do nothing.
if (!(fFlags & JackPortCanMonitor))
return -1;
@@ -173,7 +173,7 @@ int JackPort::Flags() const
const char* JackPort::Type() const
{
// TO IMPROVE
return "Audio";
return JACK_DEFAULT_AUDIO_TYPE;
}

int JackPort::SetName(const char* new_name)


Loading…
Cancel
Save