gst/audioresample/resample.h: Declare struct _ResampleState.buffer as unsigned char *, not void *, since we do arithm...

Original commit message from CVS:
* gst/audioresample/resample.h:
Declare struct _ResampleState.buffer as unsigned char *, not void *,
since we do arithmetic on it.
This commit is contained in:
Michael Smith 2006-01-03 17:27:13 +00:00
parent be8f055317
commit 1250ac066e
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-01-03 Michael Smith <msmith@fluendo.com>
* gst/audioresample/resample.h:
Declare struct _ResampleState.buffer as unsigned char *, not void *,
since we do arithmetic on it.
2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
* gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),

View file

@ -65,7 +65,7 @@ struct _ResampleState {
int sample_size;
void *buffer;
unsigned char *buffer;
int buffer_len;
int buffer_filled;