~ubuntu-branches/ubuntu/dapper/audiofile/dapper-updates

« back to all changes in this revision

Viewing changes to libaudiofile/modules/msadpcm.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-03-01 22:30:08 UTC
  • Revision ID: james.westby@ubuntu.com-20020301223008-q9a3twjipodm2x1b
Tags: 0.2.3-4
* Implements afOpenVirtualFile(), so applications can actually make
  use of the API exposed in af_vfs.h. (Kudos to Daniel Schepler
  <schepler@math.berkeley.edu>.)
* Include shlibs dependency on this version and up.  That's because
  the above amounts to an API change, or rather an API fix.  Previous
  versions declared the function in the headers, but didn't implement
  a stub in the lib itself.  Same with some of the changes between
  0.1.9, and 0.2.0, so it's really high time we add a shlibs version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
#define CHNK(X)
43
43
 
44
 
_AFmodule ms_adpcm_decompress;
 
44
static _AFmodule ms_adpcm_decompress;
45
45
 
46
46
typedef struct ms_adpcm_state
47
47
{
372
372
        assert(d->track->nextfframe % framesPerBlock == 0);
373
373
}
374
374
 
375
 
_AFmodule ms_adpcm_decompress =
 
375
static _AFmodule ms_adpcm_decompress =
376
376
{
377
377
        "ms_adpcm_decompress",
378
378
        ms_adpcm_decompress_describe,