mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:16:13 +00:00
gst/volume/gstvolume.c: Fix compilation on Solaris with Forte. (#320923)
Original commit message from CVS: Reviewed by: Tim-Philipp Müller <tim at centricular dot net> * gst/volume/gstvolume.c: (volume_set_caps): Fix compilation on Solaris with Forte. (#320923)
This commit is contained in:
parent
b886b99345
commit
e4493ada68
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
|
||||||
|
|
||||||
|
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/volume/gstvolume.c: (volume_set_caps):
|
||||||
|
Fix compilation on Solaris with Forte. (#320923)
|
||||||
|
|
||||||
2005-11-08 Wim Taymans <wim@fluendo.com>
|
2005-11-08 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
||||||
|
|
|
@ -393,7 +393,7 @@ volume_set_caps (GstBaseTransform * base, GstCaps * incaps, GstCaps * outcaps)
|
||||||
|
|
||||||
if (!this->process) {
|
if (!this->process) {
|
||||||
GST_ELEMENT_ERROR (this, CORE, NEGOTIATION,
|
GST_ELEMENT_ERROR (this, CORE, NEGOTIATION,
|
||||||
("Invalid incoming caps: %" GST_PTR_FORMAT, incaps), NULL);
|
("Invalid incoming caps: %" GST_PTR_FORMAT, incaps), (NULL));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue