comparison src/xmms-sid.h @ 242:1c743dcd6d84

Document XS_AUDIOBUF_SIZE
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 21 Dec 2004 15:18:03 +0000
parents 291715a519e2
children f949b83c3f52
comparison
equal deleted inserted replaced
241:291715a519e2 242:1c743dcd6d84
60 /* If defined, dynamically allocated temp. buffers are used. 60 /* If defined, dynamically allocated temp. buffers are used.
61 * Static (#undef) are probably faster than allocating/deallocating 61 * Static (#undef) are probably faster than allocating/deallocating
62 * from heap, but fails on systems with limited stack space. */ 62 * from heap, but fails on systems with limited stack space. */
63 #define XS_BUF_DYNAMIC 63 #define XS_BUF_DYNAMIC
64 64
65 /* Size of audio buffer */ 65 /* Size of audio buffer. If you are experiencing lots of audio
66 #define XS_AUDIOBUF_SIZE (16*1024) 66 * "underruns" or clicks/gaps in output, try increasing this value.
67 * Do notice, however, that it also affects the update frequency of
68 * XMMS's visualization plugins...
69 */
70 #define XS_AUDIOBUF_SIZE (2*1024)
67 71
68 /* Size of data buffer used for SID-tune MD5 hash calculation. 72 /* Size of data buffer used for SID-tune MD5 hash calculation.
69 * If this is too small, the computed hash will be incorrect. 73 * If this is too small, the computed hash will be incorrect.
70 * Largest SID files I've seen are ~70kB. */ 74 * Largest SID files I've seen are ~70kB. */
71 #define XS_SIDBUF_SIZE (80*1024) 75 #define XS_SIDBUF_SIZE (80*1024)