Capitalization fix

This commit is contained in:
Mike H 2018-03-03 18:06:19 +00:00 committed by GitHub
parent fb34bd98e7
commit 67df617f2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,10 +10,10 @@
typedef enum { typedef enum {
PcmFormat_Invalid = 0, PcmFormat_Invalid = 0,
PcmFormat_INT8 = 1, PcmFormat_Int8 = 1,
PcmFormat_INT16 = 2, PcmFormat_Int16 = 2,
PcmFormat_INT24 = 3, PcmFormat_Int24 = 3,
PcmFormat_INT32 = 4, PcmFormat_Int32 = 4,
PcmFormat_FLOAT = 5, PcmFormat_Float = 5,
PcmFormat_ADPCM = 6, PcmFormat_ADPCM = 6,
} PcmFormat; } PcmFormat;