mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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.
This commit is contained in:
parent
dc579e910c
commit
0543ae84cc
2 changed files with 6 additions and 1 deletions
|
@ -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):
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue