diff options
Diffstat (limited to 'usr.bin/aucat/aparams.h')
-rw-r--r-- | usr.bin/aucat/aparams.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/aucat/aparams.h b/usr.bin/aucat/aparams.h index d89aaaf2637..ce7db4c5521 100644 --- a/usr.bin/aucat/aparams.h +++ b/usr.bin/aucat/aparams.h @@ -1,4 +1,4 @@ -/* $OpenBSD: aparams.h,v 1.5 2008/11/20 10:10:01 ratchov Exp $ */ +/* $OpenBSD: aparams.h,v 1.6 2009/07/25 10:52:18 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -26,8 +26,8 @@ #define BITS_MAX 32 /* max bits per sample */ /* - * maximum size of the encording string (the longest possible - * encoding is ``s24le3msb'') + * Maximum size of the encording string (the longest possible + * encoding is ``s24le3msb''). */ #define ENCMAX 10 @@ -40,12 +40,12 @@ #endif /* - * default bytes per sample for the given bits per sample + * Default bytes per sample for the given bits per sample. */ #define APARAMS_BPS(bits) (((bits) <= 8) ? 1 : (((bits) <= 16) ? 2 : 4)) /* - * encoding specification + * Encoding specification. */ struct aparams { unsigned bps; /* bytes per sample */ |