~ubuntu-branches/ubuntu/oneiric/xmp/oneiric

« back to all changes in this revision

Viewing changes to src/drivers/arts.c

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2010-01-15 01:15:22 UTC
  • mfrom: (1.1.8 upstream) (4.2.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100115011522-r4otlsg687ee1yx4
Tags: 3.0.0+20090923-1ubuntu1
* Merge from debian testing (LP: #507732).  Reamining changes:
  + Add PulseAudio support:
    - debian/rules: Add --enable-pulseaudio to ./configure
  + RFE Compile with 128 bit mixer:
    - dpatch support

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
static int init(struct xmp_context *);
21
21
static void bufdump(struct xmp_context *, int);
22
 
static void myshutdown();
 
22
static void myshutdown(struct xmp_context *);
23
23
 
24
24
static void dummy()
25
25
{
89
89
        } while (i);
90
90
}
91
91
 
92
 
static void myshutdown()
 
92
static void myshutdown(struct xmp_context *ctx)
93
93
{
94
 
        xmp_smix_off();
 
94
        xmp_smix_off(ctx);
95
95
        arts_close_stream(as);
96
96
        arts_free();
97
97
}