summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Smith <msmith@xiph.org>2006-01-03 17:27:13 +0000
committerMichael Smith <msmith@xiph.org>2006-01-03 17:27:13 +0000
commitee0404fe853fa12e23c53a5da47886c804e1f4d3 (patch)
treeb10ae30fa000314067daeb435f160854489051a4
parent6c4f18e185d96c47fdbb528701060a3fab39615a (diff)
downloadgst-plugins-bad-ee0404fe853fa12e23c53a5da47886c804e1f4d3.tar.gz
gst-plugins-bad-ee0404fe853fa12e23c53a5da47886c804e1f4d3.tar.bz2
gst-plugins-bad-ee0404fe853fa12e23c53a5da47886c804e1f4d3.zip
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.
-rw-r--r--gst/audioresample/resample.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audioresample/resample.h b/gst/audioresample/resample.h
index fd67bf23..57470396 100644
--- a/gst/audioresample/resample.h
+++ b/gst/audioresample/resample.h
@@ -65,7 +65,7 @@ struct _ResampleState {
int sample_size;
- void *buffer;
+ unsigned char *buffer;
int buffer_len;
int buffer_filled;