]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxMMedia2/lib/converter.def
Implemented Read in the PCM converter
[wxWidgets.git] / utils / wxMMedia2 / lib / converter.def
index dc8074b06e3b343e836e564733ebf38851e398d5..b5279cc03f857fdd0a6499ec3c84a19beb2c50d7 100644 (file)
@@ -1,5 +1,5 @@
 #define DEFINE_CONV_8(name) \
-static void Convert_##name##_8(const char *buf_in, char *buf_out, size_t len) \
+static void Convert_##name##_8(const char *buf_in, char *buf_out, wxUint32 len) \
 {\
   wxUint16 val; \
 \
@@ -10,7 +10,7 @@ static void Convert_##name##_8(const char *buf_in, char *buf_out, size_t len) \
 #if SWAP_BYTES==0
 
 #define DEFINE_CONV_16(name) \
-static void Convert_##name##_16_no(const char *buf_in, char *buf_out, size_t len) \
+static void Convert_##name##_16_no(const char *buf_in, char *buf_out, wxUint32 len) \
 {\
   wxUint16 val; \
 \
@@ -22,7 +22,7 @@ static void Convert_##name##_16_no(const char *buf_in, char *buf_out, size_t len
 #else
 
 #define DEFINE_CONV_16(name) \
-static void Convert_##name##_16_yes(const char *buf_in, char *buf_out, size_t len) \
+static void Convert_##name##_16_yes(const char *buf_in, char *buf_out, wxUint32 len) \
 {\
   wxUint16 val; \
 \