diff options
-rw-r--r-- | src/xine-engine/audio_out.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/audio_out.h b/src/xine-engine/audio_out.h index c6addcfb9..2b5d7bd52 100644 --- a/src/xine-engine/audio_out.h +++ b/src/xine-engine/audio_out.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_out.h,v 1.15 2001/09/11 14:10:04 jcdutton Exp $ + * $Id: audio_out.h,v 1.16 2001/09/11 14:17:20 jcdutton Exp $ */ #ifndef HAVE_AUDIO_OUT_H #define HAVE_AUDIO_OUT_H @@ -126,8 +126,9 @@ typedef struct ao_instance_s ao_instance_t; struct ao_instance_s { uint32_t (*get_capabilities) (ao_instance_t *this); /* for constants see below */ - /* open audio driver for audio output */ + /* open audio driver for audio output * return value: 0:failure, >0:output sample rate + */ int (*open) (ao_instance_t *this, uint32_t bits, uint32_t rate, int mode); |