~ubuntu-branches/ubuntu/utopic/lingot/utopic

« back to all changes in this revision

Viewing changes to src/lingot-audio-alsa.c

  • Committer: Package Import Robot
  • Author(s): Niv Sardi
  • Date: 2011-08-26 02:12:17 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20110826021217-5n5izw80k0s8asgi
Tags: 0.9.1-1
* New Upstream Release
* Bug fix: "FTBFS: lingot-audio-jack.c:180:28: error:
  JackPortIsActive undeclared (first use in this function)",
  thanks to Lucas Nussbaum (Closes: #622038).
* Bug fix: "JACK support broken?", thanks to Stefan Ott (Closes:
  #637610).
* Update Standard Versions to 0.9.2, no changes were needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
        result->n_devices = 0;
193
193
        result->devices = NULL;
194
194
 
195
 
        result->n_sample_rates = 4;
 
195
        result->n_sample_rates = 5;
196
196
        result->sample_rates = malloc(result->n_sample_rates * sizeof(int));
197
197
        result->sample_rates[0] = 8000;
198
198
        result->sample_rates[1] = 11025;
199
199
        result->sample_rates[2] = 22050;
200
200
        result->sample_rates[3] = 44100;
 
201
        result->sample_rates[4] = 48000;
201
202
 
202
203
        return result;
203
204
}