diff options
author | Michael Smith <msmith@xiph.org> | 2006-01-03 17:27:13 +0000 |
---|---|---|
committer | Michael Smith <msmith@xiph.org> | 2006-01-03 17:27:13 +0000 |
commit | ee0404fe853fa12e23c53a5da47886c804e1f4d3 (patch) | |
tree | b10ae30fa000314067daeb435f160854489051a4 /gst/audioresample/resample.h | |
parent | 6c4f18e185d96c47fdbb528701060a3fab39615a (diff) |
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.
Diffstat (limited to 'gst/audioresample/resample.h')
-rw-r--r-- | gst/audioresample/resample.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audioresample/resample.h b/gst/audioresample/resample.h index fd67bf23f..574703964 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; |