pcm_volume: changed PCM_VOLUME_1 to 1024

1024 is 2^10, and allows gcc to use bit shift operations instead of
multiplication / division.
This commit is contained in:
Max Kellermann 2009-01-07 21:40:35 +01:00
parent 04a2138b33
commit 97b844ec72
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
enum {
/** this value means "100% volume" */
PCM_VOLUME_1 = 1000,
PCM_VOLUME_1 = 1024,
};
struct audio_format;