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
This commit is contained in:
André Dieb Martins 2010-04-04 20:31:38 -03:00 committed by Thiago Santos
parent b62d781516
commit 74ac172bc2

View file

@ -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
} else if (gst_caps_is_any (caps)) {
gst_caps_unref (caps);
caps = gst_caps_copy (gst_pad_get_pad_template_caps (pad));
} else {
caps = gst_caps_make_writable (caps);
}
for (i = 0; i < gst_caps_get_size (caps); i++) {
structure = gst_caps_get_structure (caps, i);