From 4f1ddeddbae60f12e652c96fc0cb65402c056fa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 22 Mar 2007 00:17:41 +0000 Subject: ext/wavpack/gstwavpackenc.*: Put the write helpers into the GstWavpackEnc struct directly and not as a pointer to sav... Original commit message from CVS: * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init), (gst_wavpack_enc_init), (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block): * ext/wavpack/gstwavpackenc.h: Put the write helpers into the GstWavpackEnc struct directly and not as a pointer to save two small, but useless mallocs. This also makes it possible to drop the finalize method. * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_push_buffer): For consistency reasons also set GST_BUFFER_OFFSET_END on the outgoing buffers the same way wavpackenc does it. --- ext/wavpack/gstwavpackenc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/wavpack/gstwavpackenc.h') diff --git a/ext/wavpack/gstwavpackenc.h b/ext/wavpack/gstwavpackenc.h index 7a7c156f..35d796f8 100644 --- a/ext/wavpack/gstwavpackenc.h +++ b/ext/wavpack/gstwavpackenc.h @@ -68,8 +68,8 @@ struct _GstWavpackEnc gint channels; gint width; - GstWavpackEncWriteID *wv_id; - GstWavpackEncWriteID *wvc_id; + GstWavpackEncWriteID wv_id; + GstWavpackEncWriteID wvc_id; guint mode; gdouble bitrate; -- cgit v1.2.1