A couple of more options:
Yaafe is probably the most highly optimized in terms of performance (see the benchmarks below). It gets a big speedup by sharing intermediate computation between feature extractors. For example, it will only run one FFT per window and then any extractor that requires an FFT will just reference that FFT. The other extractors mentioned don't really do that because they rely on a plugin architecture - i.e. each extractor needs to be standalone.
However, Sonic Annotator and friends benefit from a plugin architecture so you can enjoy all sorts of 3rd party feature extractors (including libxtract). The Vamp plugin ecosystem is really quite varied and wonderful. There's complete example code in the Vamp Plugin SDK for building a plugin host.
Here's a benchmark (in seconds) comparing Sonic Annotator, Marsyas and YAAFE doing feature extraction on 40 hours of 32 KHz mono wav files:
S.A. Marsyas YAAFE
MFCC 1506 1168 142
Centroid 724 942 235
Rolloff 731 951 194
ZCR 221 620 57
Total 3182 3681 628