summaryrefslogtreecommitdiffstats
path: root/ext/wavpack/gstwavpackparse.h
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-06-28 19:00:43 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-06-28 19:00:43 +0000
commitc897b7bee0d3eaab03f4f5fc518d5dded8ca5c32 (patch)
tree7479685abf480a31df3f8a11bd2a8df6da83060d /ext/wavpack/gstwavpackparse.h
parent6c980d5fa09831d5257dc2fb4026dbaac1014d54 (diff)
ext/wavpack/gstwavpackparse.*: Use a GSList for the GArray that is used like a list anyway.
Original commit message from CVS: * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_index_get_last_entry), (gst_wavpack_parse_index_get_entry_from_sample), (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset), (gst_wavpack_parse_scan_to_find_sample): * ext/wavpack/gstwavpackparse.h: Use a GSList for the GArray that is used like a list anyway.
Diffstat (limited to 'ext/wavpack/gstwavpackparse.h')
-rw-r--r--ext/wavpack/gstwavpackparse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wavpack/gstwavpackparse.h b/ext/wavpack/gstwavpackparse.h
index 0b089d9f..d1c76365 100644
--- a/ext/wavpack/gstwavpackparse.h
+++ b/ext/wavpack/gstwavpackparse.h
@@ -71,11 +71,11 @@ struct _GstWavpackParse
GstAdapter *adapter; /* when operating chain-based, otherwise NULL */
- /* Array of GstWavpackParseIndexEntry structs, mapping known
+ /* List of GstWavpackParseIndexEntry structs, mapping known
* sample offsets to byte offsets. Is kept increasing without
* gaps (ie. append only and consecutive entries must always
* map to consecutive chunks in the file). */
- GArray *entries;
+ GSList *entries;
/* Queued events (e.g. tag events we receive before we create the src pad) */
GList *queued_events; /* STREAM_LOCK */