diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-05-15 20:27:50 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-05-15 20:27:50 +0000 |
commit | 173a8facaf1845fc5f915a9e995e7c13285f5d3f (patch) | |
tree | 59a09d4388b91be5a0fd0122632d3c79ef527ee3 /src/xine-engine/audio_out.h | |
parent | 1861b5d7bdf9fb669633b9ee471f6c57a5633b83 (diff) | |
download | xine-lib-173a8facaf1845fc5f915a9e995e7c13285f5d3f.tar.gz xine-lib-173a8facaf1845fc5f915a9e995e7c13285f5d3f.tar.bz2 |
Minor adjustments to start adding 24bit and 32bit-Float audio sample support.
CVS patchset: 6544
CVS date: 2004/05/15 20:27:50
Diffstat (limited to 'src/xine-engine/audio_out.h')
-rw-r--r-- | src/xine-engine/audio_out.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-engine/audio_out.h b/src/xine-engine/audio_out.h index 9ed8decbc..25bb9955c 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.67 2004/02/12 18:09:19 mroi Exp $ + * $Id: audio_out.h,v 1.68 2004/05/15 20:27:51 jcdutton Exp $ */ #ifndef HAVE_AUDIO_OUT_H #define HAVE_AUDIO_OUT_H @@ -298,6 +298,9 @@ int _x_ao_mode2channels( int mode ); #define AO_CAP_PCM_VOL 0x00000200 /* driver supports pcm control */ #define AO_CAP_MUTE_VOL 0x00000400 /* driver can mute volume */ #define AO_CAP_8BITS 0x00000800 /* driver support 8-bit samples */ +#define AO_CAP_16BITS 0x00001000 /* driver support 16-bit samples */ +#define AO_CAP_24BITS 0x00002000 /* driver support 24-bit samples */ +#define AO_CAP_32BITS 0x00004000 /* driver support 32-bit samples. i.e. Floats */ /* properties supported by get/set_property() */ #define AO_PROP_MIXER_VOL 0 |