summaryrefslogtreecommitdiffstats
path: root/ext/esd
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2003-12-30 02:07:05 +0000
committerColin Walters <walters@verbum.org>2003-12-30 02:07:05 +0000
commit0543ae84cc3c28ace4edd9441ba3f3f9783504ee (patch)
tree03fc510c7447aeca99b42dde8c1c526028552e63 /ext/esd
parentdc579e910cb565676821f78acedd51aca6d96452 (diff)
ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of signed.
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.
Diffstat (limited to 'ext/esd')
-rw-r--r--ext/esd/esdsink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c
index 1595467a..f6c46222 100644
--- a/ext/esd/esdsink.c
+++ b/ext/esd/esdsink.c
@@ -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);