mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
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:
parent
be8f055317
commit
1250ac066e
2 changed files with 7 additions and 1 deletions
|
@ -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),
|
||||
|
|
|
@ -65,7 +65,7 @@ struct _ResampleState {
|
|||
|
||||
int sample_size;
|
||||
|
||||
void *buffer;
|
||||
unsigned char *buffer;
|
||||
int buffer_len;
|
||||
int buffer_filled;
|
||||
|
||||
|
|
Loading…
Reference in a new issue