ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of signed.
authorColin Walters <walters@verbum.org>
Tue, 30 Dec 2003 02:07:05 +0000 (02:07 +0000)
committerColin Walters <walters@verbum.org>
Tue, 30 Dec 2003 02:07:05 +0000 (02:07 +0000)
Original commit message from CVS:
2003-12-29  Colin Walters  <walters@verbum.org>

* ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
signed.

ChangeLog
ext/esd/esdsink.c

index 8c737f4..f1a8323 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-12-29  Colin Walters  <walters@verbum.org>
+
+       * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
+       signed.
+
 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
 
        * ext/sndfile/gstsf.c: (gst_sf_loop):
index 1595467..f6c4622 100644 (file)
@@ -193,7 +193,7 @@ gst_esdsink_link (GstPad *pad, const GstCaps *caps)
   esdsink = GST_ESDSINK (gst_pad_get_parent (pad));
 
   structure = gst_caps_get_structure (caps, 0);
-  gst_structure_get_int (structure, "signed", &esdsink->depth);
+  gst_structure_get_int (structure, "depth", &esdsink->depth);
   gst_structure_get_int (structure, "channels", &esdsink->channels);
   gst_structure_get_int (structure, "rate", &esdsink->frequency);