Returns true when selected at least one codec in the input list
static bool validateSel(List<Codec> items) { for (Codec c in items) { if (c.selected) return true; } return false; }