Displaying 1 result from an estimated 1 matches for "datamarker".
Did you mean:
datamarket
2007 Jul 08
0
patch to enhance sound module for 96 kHz/24 bit sample sizes
...s per second (4 bytes) + Block align (2 bytes)
readBin(fileR,"integer",n= 6,size=1)
+
bits <- readBin(fileR,"integer", size=2, endian='little')
- readBin(fileR,"integer",n= 4,size=1)
+
+ # "data" (4 bytes)
+ dataMarker <- readChar(fileR, 4)
+ if (dataMarker != "data")
+ stop ("'data' marker missing.")
+
Length <- readBin(fileR,"integer", size=4, endian='little')
+
+ print (Length)
+
if (bits==8)
data <- readBin(fileR,"integer"...