summaryrefslogtreecommitdiffstats
path: root/gst/passthrough/gstpassthrough.h
diff options
context:
space:
mode:
authorLeif Johnson <leif@ambient.2y.net>2003-07-19 23:47:42 +0000
committerLeif Johnson <leif@ambient.2y.net>2003-07-19 23:47:42 +0000
commit6d6150c0529d8f5af1857543c5d94902eab7237c (patch)
tree11813ead7a82bbf5dc1ab36ce6c4d3ea1303bd74 /gst/passthrough/gstpassthrough.h
parentf6830d4ad15f488c6a61ebccf4f09529fdf5ebd3 (diff)
downloadgst-plugins-bad-6d6150c0529d8f5af1857543c5d94902eab7237c.tar.gz
gst-plugins-bad-6d6150c0529d8f5af1857543c5d94902eab7237c.tar.bz2
gst-plugins-bad-6d6150c0529d8f5af1857543c5d94902eab7237c.zip
+ the last of the float caps changes ... these are a bit more pervasive
Original commit message from CVS: + the last of the float caps changes ... these are a bit more pervasive
Diffstat (limited to 'gst/passthrough/gstpassthrough.h')
-rw-r--r--gst/passthrough/gstpassthrough.h22
1 files changed, 7 insertions, 15 deletions
diff --git a/gst/passthrough/gstpassthrough.h b/gst/passthrough/gstpassthrough.h
index 74c4cf68..bcd09f9a 100644
--- a/gst/passthrough/gstpassthrough.h
+++ b/gst/passthrough/gstpassthrough.h
@@ -59,26 +59,18 @@ struct _GstPassthrough {
GstBufferPool *bufpool;
gboolean silent;
-
- /* the next three are valid for both int and float */
-
+
+ /* the next are valid for both int and float */
GstPassthroughFormat format;
- guint rate;
+ guint rate;
guint channels;
-
- /* the next five are valid only for format==GST_PASSTHROUGH_FORMAT_INT */
-
guint width;
- guint depth;
guint endianness;
- guint law;
+
+ /* the next are valid only for format==GST_PASSTHROUGH_FORMAT_INT */
+ guint depth;
gboolean is_signed;
-
- /* the next three are valid only for format==GST_PASSTHROUGH_FORMAT_FLOAT */
-
- const gchar *layout;
- gfloat slope;
- gfloat intercept;
+
};
struct _GstPassthroughClass {