Browse Source

Reducing audio buffer size reducing lag

Now the ctrl+c reaction is faster.
Adds some precision to the README
Yann Weber 5 years ago
parent
commit
de547b16e1
2 changed files with 4 additions and 1 deletions
  1. 3
    0
      README
  2. 1
    1
      yaglitch.asm

+ 3
- 0
README View File

@@ -3,6 +3,9 @@ yaglitch : Yet Another Glitch implementation
3 3
 
4 4
 From an original idead from https://github.com/erlehmann/libglitch
5 5
 
6
+yaglitch is a 8 bits sonds generator based on a stack machine interpreting
7
+mathematical expression in reverse polish notation.
8
+
6 9
 Glitch file format is documented in FORMAT-draft-erlehmann copied from the
7 10
 repo above.
8 11
 

+ 1
- 1
yaglitch.asm View File

@@ -55,7 +55,7 @@ section .data
55 55
 		dw AUDIO_U8 ; format
56 56
 		db 1 ; channels
57 57
 		db 0 ; silence
58
-		dw 4096 ; samples
58
+		dw 1024 ; samples
59 59
 		dd 0 ; size
60 60
 	dw 0 ; allign
61 61
 		dq audio_cllbck

Loading…
Cancel
Save