<div dir="ltr"><div><div><div><div>Hi List,<br></div>I have a problem getting a field from a capability if the field has multiple values.<br></div>One example would be I have this capability:<br><br>video/x-raw, format=(string)YUY2, width=(int)960, height=(int)720, pixel-aspect-ratio=(fraction)1/1, interlace-mode=(string)progressive, framerate=(fraction){ 15/1, 10/1, 5/1 };<br><br></div>And I want to get the framerate:<br><br>gint *num, *denom;<br>GstStructure *str = gst_caps_get_structure (caps, i);<br>[...]<br>gst_structure_get_fraction (str, "framerate", num, denom);<br><br><br></div><div>The problem is that I only get the last value 5/1 and not all the values.<br><br></div><div>Any idea how can I do that?<br></div><div>Thanks!<br></div></div>