Audio FEC: small fix

This commit is contained in:
Martin Pulec
2016-03-16 11:36:52 +01:00
parent a9266d3f60
commit a4cc229495

View File

@@ -791,7 +791,9 @@ static struct response *audio_sender_process_message(struct state_audio *s, stru
}
break;
case SENDER_MSG_CHANGE_FEC:
LOG(LOG_LEVEL_ERROR) << "Not implemented!\n";
if (strcmp(msg->fec_cfg, "flush") != 0) {
LOG(LOG_LEVEL_ERROR) << "Not implemented!\n";
}
return new_response(RESPONSE_NOT_IMPL, NULL);
}
return new_response(RESPONSE_OK, NULL);