~ubuntu-branches/ubuntu/karmic/pulseaudio/karmic-updates

« back to all changes in this revision

Viewing changes to src/pulse/sample.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich, Daniel T Chen, Luke Yelavich
  • Date: 2009-09-11 09:24:39 UTC
  • mfrom: (1.14.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090911092439-7dixbvy6r30alrv8
Tags: 1:0.9.16-0ubuntu1
[ Daniel T Chen ]
* debian/patches/0090-use-volume-ignore-for-analog-output.patch:
  + Realign volume control behaviour with existing Ubuntu releases,
    i.e., disable volume = merge and use volume = ignore for
    analog output

[ Luke Yelavich ]
* New upstream release
* debian/patches/0057-introspect-version-fixes.patch (LP: #426210),
  debian/patches/0056-alsa-rework.patch,
  debian/patches/0055-llvm-clang-analyzer-fixes.patch,
  0054-volume-libpulse-backported-fixes.patch,
  0053-add-input-sources.patch,
  debian/patches/0052-disable-cpu-limit.patch: Dropped, all applied upstream
* debian/patches/0051-reduce-lib-linking.patch: Drop, since we are not going
  to be doing bi-arch pulseaudio packages for karmic

Show diffs side-by-side

added added

removed removed

Lines of Context:
302
302
/** Pretty print a sample type specification to a string */
303
303
char* pa_sample_spec_snprint(char *s, size_t l, const pa_sample_spec *spec);
304
304
 
 
305
/** Maximum required string length for pa_bytes_snprint(). Please note
 
306
 * that this value can change with any release without warning and
 
307
 * without being considered API or ABI breakage. You should not use
 
308
 * this definition anywhere where it might become part of an
 
309
 * ABI. \since 0.9.16 */
 
310
#define PA_BYTES_SNPRINT_MAX 11
 
311
 
305
312
/** Pretty print a byte size value. (i.e. "2.5 MiB") */
306
313
char* pa_bytes_snprint(char *s, size_t l, unsigned v);
307
314