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

« back to all changes in this revision

Viewing changes to src/ffadodevice.h

  • 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:
263
263
     * @brief stream states
264
264
     */
265
265
    enum eStreamingState {
266
 
        eSS_Idle,        ///> not streaming
267
 
        eSS_Sending,     ///> the device is sending a stream
268
 
        eSS_Receiving,   ///> the device is receiving a stream
269
 
        eSS_Both,        ///> the device is sending and receiving a stream
 
266
        eSS_Idle = 0,        ///> not streaming
 
267
        eSS_Sending = 1,     ///> the device is sending a stream
 
268
        eSS_Receiving = 2,   ///> the device is receiving a stream
 
269
        eSS_Both = 3,        ///> the device is sending and receiving a stream
270
270
    };
271
271
 
272
272
    /**