source: roaraudio/libroaresd/esdsample.c @ 5381:430b1d26e12d

Last change on this file since 5381:430b1d26e12d was 5381:430b1d26e12d, checked in by phi, 12 years ago

updated copyright years

File size: 2.6 KB
Line 
1//esdsample.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
5 *  The code (may) include prototypes and comments (and maybe
6 *  other code fragements) from EsounD.
7 *  They are mostly copyrighted by Eric B. Mitchell (aka 'Ricdude)
8 *  <ericmit@ix.netcom.com>. For more information see AUTHORS.esd.
9 *
10 *  This file is part of libroaresd a part of RoarAudio,
11 *  a cross-platform sound system for both, home and professional use.
12 *  See README for details.
13 *
14 *  This file is free software; you can redistribute it and/or modify
15 *  it under the terms of the GNU General Public License version 3
16 *  as published by the Free Software Foundation.
17 *
18 *  RoarAudio is distributed in the hope that it will be useful,
19 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 *  GNU General Public License for more details.
22 *
23 *  You should have received a copy of the GNU General Public License
24 *  along with this software; see the file COPYING.  If not, write to
25 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
26 *  Boston, MA 02110-1301, USA.
27 *
28 *  NOTE for everyone want's to change something and send patches:
29 *  read README and HACKING! There a addition information on
30 *  the license of this document you need to read before you send
31 *  any patches.
32 *
33 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
34 *  or libpulse*:
35 *  The libs libroaresd, libroararts and libroarpulse link this libroar
36 *  and are therefore GPL. Because of this it may be illigal to use
37 *  them with any software that uses libesd, libartsc or libpulse*.
38 */
39
40#include "libroaresd.h"
41
42// TODO: add support for all of thiese funcs
43
44/* cache a sample in the server returns sample id, < 0 = error */
45int esd_sample_cache( int esd, esd_format_t format, const int rate,
46                      const int length, const char *name ) {
47 return -1;
48}
49int esd_confirm_sample_cache( int esd ) {
50 return -1;
51}
52
53/* get the sample id for an already-cached sample */
54int esd_sample_getid( int esd, const char *name) {
55 return -1;
56}
57
58/* uncache a sample in the server */
59int esd_sample_free( int esd, int sample ) {
60 return -1;
61}
62
63/* play a cached sample once */
64int esd_sample_play( int esd, int sample ) {
65 return -1;
66}
67/* make a cached sample loop */
68int esd_sample_loop( int esd, int sample ) {
69 return -1;
70}
71
72/* stop the looping sample at end */
73int esd_sample_stop( int esd, int sample ) {
74 return -1;
75}
76/* stop a playing sample immed. */
77int esd_sample_kill( int esd, int sample ) {
78 return -1;
79}
80
81
82//ll
Note: See TracBrowser for help on using the repository browser.