~ubuntu-branches/ubuntu/oneiric/muse/oneiric

« back to all changes in this revision

Viewing changes to muse/wave.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-11-17 21:43:38 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101117214338-1hvfl7oo2dsqnvrb
Tags: 1.1-0ubuntu1
* New upstream release (LP: #668631)
* Switch to dpkg-source 3.0 (quilt) format
* Switch to dh7 short form
* debian/rules:
  - added --enable-dssi and --enable-osc to conf flags for dssi support
  - added -ljackserver to LDFLAGS to fix a FTBFS because of --as-needed
* debian/control:
  - added build build dependency on liblo-dev and dssi-dev for dssi support
  - bump Standards-version to 3.9.1. No changes required.
* debian/muse.desktop, debian/muse.xpm: dropped as desktop file and icon is
  now shipped upstream.
* fix-desktop-categories.patch: fix Categories tag in upstream desktop file
* 10_es_locale_fix.dpatch: refreshed and converted to quilt as
  fix_es_locale.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
      bool openFlag;
58
58
      bool writeFlag;
 
59
      size_t readInternal(int srcChannels, float** dst, size_t n, bool overwrite, float *buffer);
59
60
 
60
61
   protected:
61
62
      int refCount;
92
93
      void setFormat(int fmt, int ch, int rate);
93
94
 
94
95
      size_t read(int channel, float**, size_t, bool overwrite = true);
 
96
      size_t readWithHeap(int channel, float**, size_t, bool overwrite = true);
95
97
      size_t readDirect(float* buf, size_t n)    { return sf_readf_float(sf, buf, n); }
96
98
      size_t write(int channel, float**, size_t);
97
99
 
144
146
      void setFormat(int fmt, int ch, int rate) {
145
147
            sf->setFormat(fmt, ch, rate);
146
148
            }
 
149
      size_t readWithHeap(int channel, float** f, size_t n, bool overwrite = true) {
 
150
            return sf->readWithHeap(channel, f, n, overwrite);
 
151
            }
147
152
      size_t read(int channel, float** f, size_t n, bool overwrite = true) {
148
153
            return sf->read(channel, f, n, overwrite);
149
154
            }