mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
Get the signed property as a boolean
Original commit message from CVS: Get the signed property as a boolean
This commit is contained in:
parent
444336ab90
commit
279b570c51
1 changed files with 5 additions and 5 deletions
|
@ -311,11 +311,11 @@ gst_afsink_open_file (GstAFSink *sink)
|
|||
}
|
||||
else
|
||||
{
|
||||
gst_caps_get_int (caps, "channels", &sink->channels);
|
||||
gst_caps_get_int (caps, "width", &sink->width);
|
||||
gst_caps_get_int (caps, "rate", &sink->rate);
|
||||
gst_caps_get_int (caps, "signed", &sink->is_signed);
|
||||
gst_caps_get_int (caps, "endianness", &sink->endianness_data);
|
||||
gst_caps_get_int (caps, "channels", &sink->channels);
|
||||
gst_caps_get_int (caps, "width", &sink->width);
|
||||
gst_caps_get_int (caps, "rate", &sink->rate);
|
||||
gst_caps_get_boolean (caps, "signed", &sink->is_signed);
|
||||
gst_caps_get_int (caps, "endianness", &sink->endianness_data);
|
||||
}
|
||||
GST_DEBUG (GST_CAT_PLUGIN_INFO, "channels %d, width %d, rate %d, signed %s",
|
||||
sink->channels, sink->width, sink->rate,
|
||||
|
|
Loading…
Reference in a new issue