summaryrefslogtreecommitdiffstats
path: root/ext/hermes
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-07-23 07:26:58 +0000
committerDavid Schleef <ds@schleef.org>2003-07-23 07:26:58 +0000
commit45b32a854f2191d6f88eb7229d4831dd014e9315 (patch)
treeef22ad431fce0904e6ecd7c8d9d64e3fb38fd679 /ext/hermes
parentbba1354444343e04c27e5bff69ffc94c4d94133a (diff)
downloadgst-plugins-bad-45b32a854f2191d6f88eb7229d4831dd014e9315.tar.gz
gst-plugins-bad-45b32a854f2191d6f88eb7229d4831dd014e9315.tar.bz2
gst-plugins-bad-45b32a854f2191d6f88eb7229d4831dd014e9315.zip
Fix to loop through a list of caps when calling try_set_caps(). Added a workaround for some strangeness in gst_props...
Original commit message from CVS: Fix to loop through a list of caps when calling try_set_caps(). Added a workaround for some strangeness in gst_props_normalize(), I think. It doesn't seem to like GST_VIDEO_PAD_TEMPLATE_PROPS_15_16.
Diffstat (limited to 'ext/hermes')
-rw-r--r--ext/hermes/gstcolorspace.c37
1 files changed, 26 insertions, 11 deletions
diff --git a/ext/hermes/gstcolorspace.c b/ext/hermes/gstcolorspace.c
index 17f9ba74..748b8c1d 100644
--- a/ext/hermes/gstcolorspace.c
+++ b/ext/hermes/gstcolorspace.c
@@ -333,13 +333,22 @@ gst_colorspace_srcconnect_func (GstPad *pad, GstCaps *caps, gboolean newcaps)
* with our incomming caps */
peercaps = gst_caps_intersect (caps, ourcaps);
if (peercaps) {
- /* see if the peer likes it too, it should as the caps say so.. */
- if (gst_pad_try_set_caps (space->srcpad, peercaps) > 0) {
- space->type = GST_COLORSPACE_NONE;
- space->disabled = FALSE;
- gst_caps_unref (peercaps);
- res = GST_PAD_LINK_DONE;
- goto success;
+ GstCaps *trycaps;
+
+ trycaps = peercaps;
+ while(trycaps){
+ GstCaps *caps1 = gst_caps_copy_1(trycaps);
+
+ /* see if the peer likes it too, it should as the caps say so.. */
+ if (gst_pad_try_set_caps (space->srcpad, caps1) > 0) {
+ space->type = GST_COLORSPACE_NONE;
+ space->disabled = FALSE;
+ gst_caps_unref (peercaps);
+ peercaps = caps1;
+ res = GST_PAD_LINK_DONE;
+ goto success;
+ }
+ trycaps = trycaps->next;
}
gst_caps_unref (peercaps);
}
@@ -371,8 +380,10 @@ gst_colorspace_srcconnect_func (GstPad *pad, GstCaps *caps, gboolean newcaps)
/* loop over all possibilities and select the first one we can convert and
* is accepted by the peer */
while (peercaps) {
- if (colorspace_setup_converter (space, ourcaps, peercaps)) {
- if (gst_pad_try_set_caps (space->srcpad, peercaps) > 0) {
+ GstCaps *peer1 = gst_caps_copy_1(peercaps);
+
+ if (colorspace_setup_converter (space, ourcaps, peer1)) {
+ if (gst_pad_try_set_caps (space->srcpad, peer1) > 0) {
space->disabled = FALSE;
gst_caps_unref (try_peercaps);
res = GST_PAD_LINK_DONE;
@@ -632,9 +643,13 @@ plugin_init (GModule *module, GstPlugin *plugin)
"video/x-raw-rgb",
GST_VIDEO_RGB_PAD_TEMPLATE_PROPS_24_32));
caps = gst_caps_append (caps,
- gst_caps_new ("csp_templ_rgb15_16",
+ gst_caps_new ("csp_templ_rgb15",
+ "video/x-raw-rgb",
+ GST_VIDEO_RGB_PAD_TEMPLATE_PROPS_15));
+ caps = gst_caps_append (caps,
+ gst_caps_new ("csp_templ_rgb16",
"video/x-raw-rgb",
- GST_VIDEO_RGB_PAD_TEMPLATE_PROPS_15_16));
+ GST_VIDEO_RGB_PAD_TEMPLATE_PROPS_16));
/* build templates */
srctempl = gst_pad_template_new ("src",