feat(AbstractCodecsModel): add a todo for future is usable codec usage

This commit is contained in:
Ronan Abhamon 2018-03-06 16:49:30 +01:00
parent 7a2531061e
commit 732a5b7e5e

View file

@ -160,7 +160,7 @@ void AbstractCodecsModel::addCodec (shared_ptr<linphone::PayloadType> &codec) {
map["description"] = ::Utils::coreStringToAppString(codec->getDescription());
map["enabled"] = codec->enabled();
map["encoderDescription"] = ::Utils::coreStringToAppString(codec->getEncoderDescription());
map["isUsable"] = codec->isUsable();
map["isUsable"] = codec->isUsable(); // TODO: Notify in UI when unusable.
map["isVbr"] = codec->isVbr();
map["mime"] = ::Utils::coreStringToAppString(codec->getMimeType());
map["number"] = codec->getNumber();