removed some of the debug messages
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3298 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -18,7 +18,6 @@ media_destination::media_destination(port_id port,
|
|||||||
: port(port),
|
: port(port),
|
||||||
id(id)
|
id(id)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
@@ -26,14 +25,12 @@ media_destination::media_destination(const media_destination &clone)
|
|||||||
: port(clone.port),
|
: port(clone.port),
|
||||||
id(clone.id)
|
id(clone.id)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
media_destination &
|
media_destination &
|
||||||
media_destination::operator=(const media_destination &clone)
|
media_destination::operator=(const media_destination &clone)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
port = clone.port;
|
port = clone.port;
|
||||||
id = clone.id;
|
id = clone.id;
|
||||||
return *this;
|
return *this;
|
||||||
@@ -44,13 +41,11 @@ media_destination::media_destination()
|
|||||||
: port(-1),
|
: port(-1),
|
||||||
id(-1)
|
id(-1)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
media_destination::~media_destination()
|
media_destination::~media_destination()
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final & verfied
|
// final & verfied
|
||||||
@@ -66,7 +61,6 @@ media_source::media_source(port_id port,
|
|||||||
: port(port),
|
: port(port),
|
||||||
id(id)
|
id(id)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
@@ -74,14 +68,12 @@ media_source::media_source(const media_source &clone)
|
|||||||
: port(clone.port),
|
: port(clone.port),
|
||||||
id(clone.id)
|
id(clone.id)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
media_source &
|
media_source &
|
||||||
media_source::operator=(const media_source &clone)
|
media_source::operator=(const media_source &clone)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
port = clone.port;
|
port = clone.port;
|
||||||
id = clone.id;
|
id = clone.id;
|
||||||
return *this;
|
return *this;
|
||||||
@@ -92,13 +84,11 @@ media_source::media_source()
|
|||||||
: port(-1),
|
: port(-1),
|
||||||
id(-1)
|
id(-1)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
media_source::~media_source()
|
media_source::~media_source()
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// final & verfied
|
// final & verfied
|
||||||
@@ -111,14 +101,12 @@ media_source media_source::null(-1,-1);
|
|||||||
// final
|
// final
|
||||||
bool operator==(const media_destination & a, const media_destination & b)
|
bool operator==(const media_destination & a, const media_destination & b)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
return (a.port == b.port) && (a.id == b.id);
|
return (a.port == b.port) && (a.id == b.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
bool operator!=(const media_destination & a, const media_destination & b)
|
bool operator!=(const media_destination & a, const media_destination & b)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
return (a.port != b.port) || (a.id != b.id);
|
return (a.port != b.port) || (a.id != b.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -131,14 +119,12 @@ bool operator<(const media_destination & a, const media_destination & b)
|
|||||||
// final
|
// final
|
||||||
bool operator==(const media_source & a, const media_source & b)
|
bool operator==(const media_source & a, const media_source & b)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
return (a.port == b.port) && (a.id == b.id);
|
return (a.port == b.port) && (a.id == b.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
bool operator!=(const media_source & a, const media_source & b)
|
bool operator!=(const media_source & a, const media_source & b)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
return (a.port != b.port) || (a.id != b.id);
|
return (a.port != b.port) || (a.id != b.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,14 +137,12 @@ bool operator<(const media_source & a, const media_source & b)
|
|||||||
// final
|
// final
|
||||||
bool operator==(const media_node & a, const media_node & b)
|
bool operator==(const media_node & a, const media_node & b)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
return (a.node == b.node) && (a.port == b.port) && (a.kind == b.kind);
|
return (a.node == b.node) && (a.port == b.port) && (a.kind == b.kind);
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
bool operator!=(const media_node & a, const media_node & b)
|
bool operator!=(const media_node & a, const media_node & b)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
return (a.node != b.node) || (a.port != b.port) || (a.kind != b.kind);
|
return (a.node != b.node) || (a.port != b.port) || (a.kind != b.kind);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -250,14 +234,12 @@ media_format::media_format()
|
|||||||
// final
|
// final
|
||||||
media_format::media_format(const media_format &other)
|
media_format::media_format(const media_format &other)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
*this = other;
|
*this = other;
|
||||||
}
|
}
|
||||||
|
|
||||||
// final
|
// final
|
||||||
media_format::~media_format()
|
media_format::~media_format()
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -265,7 +247,6 @@ media_format::~media_format()
|
|||||||
media_format &
|
media_format &
|
||||||
media_format::operator=(const media_format &clone)
|
media_format::operator=(const media_format &clone)
|
||||||
{
|
{
|
||||||
CALLED();
|
|
||||||
memset(this, 0x00, sizeof(*this));
|
memset(this, 0x00, sizeof(*this));
|
||||||
|
|
||||||
type = clone.type;
|
type = clone.type;
|
||||||
|
|||||||
Reference in New Issue
Block a user