gst/audioresample/resample.h: Declare struct _ResampleState.buffer as unsigned char...
authorMichael Smith <msmith@xiph.org>
Tue, 3 Jan 2006 17:27:13 +0000 (17:27 +0000)
committerMichael Smith <msmith@xiph.org>
Tue, 3 Jan 2006 17:27:13 +0000 (17:27 +0000)
Original commit message from CVS:
* gst/audioresample/resample.h:
Declare struct _ResampleState.buffer as unsigned char *, not void *,
since we do arithmetic on it.

gst/audioresample/resample.h

index fd67bf23f69c9365b06cb034498460496e5086af..574703964c7a409deb7a9f13245c5a165f2cfc9c 100644 (file)
@@ -65,7 +65,7 @@ struct _ResampleState {
 
         int sample_size;
 
-        void *buffer;
+        unsigned char *buffer;
         int buffer_len;
         int buffer_filled;