From 74ac172bc20e1ae657484aeb37fbaf08ad2a2b28 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Dieb=20Martins?= Date: Sun, 4 Apr 2010 20:31:38 -0300 Subject: [PATCH] jpegenc: should not return caps ANY based on downstream When downstream has a sink pad with ANY caps, jpegenc should treat it the same as NULL and return its template caps. Fixes #614842 --- ext/jpeg/gstjpegenc.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ext/jpeg/gstjpegenc.c b/ext/jpeg/gstjpegenc.c index 931f3a2..08a7467 100644 --- a/ext/jpeg/gstjpegenc.c +++ b/ext/jpeg/gstjpegenc.c @@ -322,10 +322,15 @@ gst_jpegenc_getcaps (GstPad * pad) other end of the element */ caps = gst_pad_peer_get_caps (jpegenc->srcpad); - if (caps == NULL) + + if (caps == NULL) { + caps = gst_caps_copy (gst_pad_get_pad_template_caps (pad)); + } else if (gst_caps_is_any (caps)) { + gst_caps_unref (caps); caps = gst_caps_copy (gst_pad_get_pad_template_caps (pad)); - else + } else { caps = gst_caps_make_writable (caps); + } for (i = 0; i < gst_caps_get_size (caps); i++) { structure = gst_caps_get_structure (caps, i); -- 2.7.4