mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
Return NULL if we can't fixate the caps anymore.
Original commit message from CVS: Return NULL if we can't fixate the caps anymore.
This commit is contained in:
parent
d88e52a37b
commit
c2f54315b1
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-12-24 Colin Walters <walters@verbum.org>
|
||||
|
||||
* sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
|
||||
we can't fixate the caps anymore.
|
||||
|
||||
2003-12-23 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
|
||||
|
|
|
@ -237,7 +237,9 @@ gst_osssink_sink_fixate (GstPad *pad, const GstCaps *caps, gpointer user_data)
|
|||
return newcaps;
|
||||
}
|
||||
|
||||
return newcaps;
|
||||
gst_caps_free (newcaps);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static GstPadLinkReturn
|
||||
|
|
Loading…
Reference in a new issue