Fix typos, better wording
authorAntonio Ospite <ospite@studenti.unina.it>
Tue, 23 Nov 2010 13:49:09 +0000 (14:49 +0100)
committerAntonio Ospite <ospite@studenti.unina.it>
Tue, 23 Nov 2010 13:49:09 +0000 (14:49 +0100)
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
wav_header.c

index cdd64a2..1aac2e9 100644 (file)
@@ -18,7 +18,7 @@
 #include <endian.h>
 
 /* This is the logical arrangement of the struct but we are splitting it
- * because it is more easy to handle the variable length extradata
+ * because it is easier to handle the variable length extradata that way.
  *
  * strongly inspired by http://www.mpg123.de/mpg123/mpg123/wav.c
  */
@@ -36,7 +36,7 @@ struct _RIFF {
                        uint32_t nAvgBytesPerSec;
                        uint16_t nBlockAlign;
                        uint16_t wBitsPerSample;
-                       uint16_t cbSize; /* cbSize = sizeof(extardata) */
+                       uint16_t cbSize; /* cbSize = sizeof(extradata) */
                        uint8_t extradata[];
                } fmt;
                struct _data
@@ -76,7 +76,7 @@ struct data {
 };
 
 struct extradata {
-       uint16_t len; /* same size as fmt.cbSize */
+       uint16_t len; /* same storage size as fmt.cbSize */
        uint8_t data[];
 };