~ubuntu-branches/ubuntu/gutsy/ecasound2.2/gutsy

« back to all changes in this revision

Viewing changes to libecasound/audioio-null.h

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2007-04-22 01:25:44 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070422012544-lugfjb034udblalb
Tags: 2.4.5-1
* new upstream release
* build-depend on texlive
* pbuilder-test: error code changed from '-1' to '1', so update test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
  }
22
22
  virtual void write_samples(void* target_buffer, long int samples) { }
23
23
 
24
 
  virtual bool finished(void) const { return(false); }
25
 
  virtual bool supports_seeking(void) const { return(false); }
 
24
  virtual bool finished(void) const { return false; }
 
25
  virtual bool supports_seeking(void) const { return true; }
26
26
  virtual void seek_position(void) { } 
27
27
 
28
28
  NULLFILE(const std::string& name = "null");