<dalecurtis <at> chromium.org> writes:
> +#if CONFIG_SIPR_DECODER
> if (codec_id == CODEC_ID_SIPR && flavor < 4) {
This should be
if (CONFIG_SIPR_DECODER && codec_id == CODEC_ID_SIPR && flavor < 4)
and similar for other hunks.
Carl Eugen