From 0543ae84cc3c28ace4edd9441ba3f3f9783504ee Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 30 Dec 2003 02:07:05 +0000 Subject: [PATCH] ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of signed. Original commit message from CVS: 2003-12-29 Colin Walters * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of signed. --- ChangeLog | 5 +++++ ext/esd/esdsink.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8c737f4..f1a8323 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-29 Colin Walters + + * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of + signed. + 2003-12-30 Jan Schmidt * ext/sndfile/gstsf.c: (gst_sf_loop): diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c index 1595467..f6c4622 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); -- 2.7.4