~ubuntu-branches/debian/sid/audacious-plugins/sid

« back to all changes in this revision

Viewing changes to src/jack/bio2jack.h

  • Committer: Bazaar Package Importer
  • Author(s): Bilal Akhtar
  • Date: 2011-04-10 18:56:21 UTC
  • mfrom: (1.1.14 upstream) (2.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110410185621-7eg1k5a7v3f4aqrn
Tags: 2.4.4-1
* New upstream release.
  - Fix FTBFS with GCC 4.5 (Closes: #621989)
* Upload to unstable.
* debian/control:
  - Update versioned dependencies according to upstream changes.
  - Bump Standards-Version to 3.9.2 (no changes needed).
  - Since the package will be building against the new FFMpeg libs,
    fix the problem of depending on old uninstallable libav*
    packages (Closes: #617603)

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
                                                 sample rate conversion if necessary */
61
61
void JACK_SetSampleRateConversionFunction(int converter); /* which SRC converter function should be used
62
62
                                                             for the next Open()d device */
63
 
int  JACK_Open(int *deviceID, unsigned int bits_per_sample, unsigned long *rate, int channels); /* Note: defaults to 0 input channels
64
 
                                                                                                   if you need input (record) use OpenEx
65
 
                                                                                                   instead */
 
63
int  JACK_Open(int *deviceID, unsigned int bits_per_channel, int floating_point,
 
64
               unsigned long *rate, int channels); /* Note: defaults to 0 input channels
 
65
                                                      if you need input (record) use OpenEx
 
66
                                                      instead */
66
67
int  JACK_OpenEx(int *deviceID, unsigned int bits_per_channel,
67
 
                 unsigned long *rate,
 
68
                 int floating_point, unsigned long *rate,
68
69
                 unsigned int input_channels, unsigned int output_channels,
69
70
                 const char **jack_port_name, unsigned int jack_port_name_count,
70
71
                 unsigned long jack_port_flags);