summaryrefslogtreecommitdiffstats
path: root/gst/wavparse/gstwavparse.h
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2006-04-26 20:11:18 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2006-04-26 20:11:18 +0000
commit562de2f6e0599ec73a1ac531744aba83663ef3f6 (patch)
tree5c1ff008f8a97078b3f333cd7d8eaaedbe826d79 /gst/wavparse/gstwavparse.h
parentda6b539bbe9e612247c0105ed181b9e22dc06cc0 (diff)
gst/wavparse/gstwavparse.*: correct partial implementation of push mode (from my last commit)
Original commit message from CVS: * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init), (gst_wavparse_class_init), (gst_wavparse_reset), (gst_wavparse_init), (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header), (gst_wavparse_stream_init), (gst_wavparse_perform_seek), (gst_wavparse_stream_headers), (gst_wavparse_stream_data), (gst_wavparse_loop), (gst_wavparse_chain), (plugin_init): * gst/wavparse/gstwavparse.h: correct partial implementation of push mode (from my last commit)
Diffstat (limited to 'gst/wavparse/gstwavparse.h')
-rw-r--r--gst/wavparse/gstwavparse.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gst/wavparse/gstwavparse.h b/gst/wavparse/gstwavparse.h
index 9dd32e5b..a0b27176 100644
--- a/gst/wavparse/gstwavparse.h
+++ b/gst/wavparse/gstwavparse.h
@@ -1,6 +1,6 @@
/* GStreamer
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
- * Copyright (C) <2006> Nokia Corporation.
+ * Copyright (C) <2006> Nokia Corporation, Stefan Kost <stefan.kost@nokia.com>.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -103,6 +103,9 @@ struct _GstWavParse {
/* configured segment, start/stop expressed in time */
GstSegment segment;
gboolean segment_running;
+
+ /* for late pad configuration */
+ gboolean first;
};
struct _GstWavParseClass {