~ubuntu-branches/ubuntu/trusty/roaraudio/trusty

« back to all changes in this revision

Viewing changes to roard/codecfilter.c

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-01-24 15:09:33 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20140124150933-ci9fj9rupqo5x54f
Tags: 1.0~beta11-1
* New upstream release.
  - Closes Mayhem reports.
    Closes: #716264, #716251, #716245, #716240
* Bump Standards-Version to 3.9.5 (no changes needed).
* Don't explicitly request xz compression - dpkg 1.17 does this by default.
* Removed roarcatvio, it is marked as obsoleted.
  Closes: #716263

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//codecfilter.c:
2
2
 
3
3
/*
4
 
 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2013
 
4
 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2014
5
5
 *
6
6
 *  This file is part of roard a part of RoarAudio,
7
7
 *  a cross-platform sound system for both, home and professional use.
82
82
  cf_au_open, cf_au_close, NULL, cf_au_write, cf_au_read, NULL, NULL, cf_au_ctl},
83
83
#endif
84
84
 
 
85
#if 0
85
86
#ifdef ROAR_HAVE_LIBRAUM
86
87
 {ROAR_CODEC_RAUM, "RAUM", "RAUM Container Format", NULL, cf_raum_setup, ROAR_CODECFILTER_WRITE,
87
88
  ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT|ROAR_SUBSYS_RAW|ROAR_SUBSYS_COMPLEX,
88
89
  cont_fw_cf_open, cont_fw_cf_close, NULL, cont_fw_cf_write, cont_fw_cf_read, cont_fw_cf_flush, NULL, cont_fw_cf_ctl},
89
90
#endif
 
91
#endif
 
92
#ifdef ROAR_HAVE_LIBUNIRAUM
 
93
 {ROAR_CODEC_RAUM, "uniraum", "RAUM Container Format", NULL, NULL, ROAR_CODECFILTER_READ,
 
94
  ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT|ROAR_SUBSYS_RAW|ROAR_SUBSYS_COMPLEX,
 
95
  cf_uniraum_open, cf_uniraum_close, NULL, cf_uniraum_write, cf_uniraum_read, cf_uniraum_flush, NULL, cf_uniraum_ctl}, 
 
96
#endif
90
97
 
91
98
#ifdef ROAR_HAVE_LIBOGG
92
99
 {ROAR_CODEC_OGG, "Ogg", "Ogg Container Format", NULL, NULL, ROAR_CODECFILTER_NONE,