1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @ingroup file68_lib
* @file sc68/audio68.h
* @author Benjamin Gerard
* @date 1998-09-03
* @brief audio backend header.
*
*/
/* $Id: audio68.h 75 2009-02-04 19:12:14Z benjihan $ */
/* Copyright (C) 1998-2009 Benjamin Gerard */
/** @defgroup file68_audio Audio output interface.
* @ingroup file68_lib
*
* Provides function for controling audio output backend.
*
* @{
*/
/** Set/Get audio output default sampling rate.
*
* Set the default sampling rate for audio output. This default
* rate is used by the audio output backend if no sampling rate is
* specified.
*
* @param hz New default sampling rate [8000..96000]; 0:Get current.
* @return Either new or current sampling rate. The value may not be
* the exact requested value; it depends on the granularity of
* the audio backend.
*/
unsigned int ;
/**
* @}
*/
/* #ifndef _FILE68_AUDIO68_H_ */