~ubuntu-branches/debian/squeeze/libffado/squeeze

« back to all changes in this revision

Viewing changes to src/libstreaming/generic/Port.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Knoth
  • Date: 2009-03-12 17:36:53 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090312173653-bldzd1ft6dz1jwsf
Tags: 2.0~rc1+svn1539-1
* Initial Debian inclusion, based on Ubuntu (Closes: #501502)
* Bumped standards version
* Limit architecture to i386, amd64 and powerpc
* Add external sources to copyright file
* Make the source package depend on debhelper-7
* Remove Ubuntu's u from libname (libffado.so.0.0.0u)
* Provide generic man pages (redirecting the user to www.ffado.org for now)
* Fix lintian warnings about outdated FSF address and unversioned GPL
  reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
 
158
158
void Port::show() {
159
159
    debugOutput(DEBUG_LEVEL_VERBOSE,"Name          : %s\n", m_Name.c_str());
160
 
    debugOutput(DEBUG_LEVEL_VERBOSE,"Enabled?      : %d\n", m_disabled);
 
160
    debugOutput(DEBUG_LEVEL_VERBOSE,"Enabled?      : %d\n", m_disabled==false);
161
161
    debugOutput(DEBUG_LEVEL_VERBOSE,"State?        : %d\n", m_State);
162
162
    debugOutput(DEBUG_LEVEL_VERBOSE,"Buffer Size   : %d\n", m_buffersize);
163
163
    debugOutput(DEBUG_LEVEL_VERBOSE,"Event Size    : %d\n", getEventSize());