I think I have answered my own question.<br><br>I found this code in aravis/gst/gstaravis.c<br><br> gs = gst_structure_empty_new ("video");<br> gst_structure_set_name (gs, "video/x-raw-gray");<br>
gst_structure_set (gs,<br> "bpp", G_TYPE_INT, 8,<br> "depth", G_TYPE_INT, 8,<br> "width", G_TYPE_INT, width,<br> "height", G_TYPE_INT, height,<br>
NULL);<br><br>I looked elsewhere for subsequent modifications, but did not find any.<br><br>From this I concluded that aravis only supports 8-bit gray.<br><br>Thanks,<br>Bert Douglas<br>