If FPS is > 30, don't use dual decoding.
Copy of https://archive.tizen.org/gerrit/#/c/platform/framework/web/chromium-efl/+/321173/
Change-Id: I293c95f98ed0acc6518ab89a8fd0eefd0117f1a6
}
}
- if (chipset == "NIKEL") {
+ if ((chipset == "NIKEL") || (chipset == "PONTUSML") ||
+ (chipset == "ROSEL")) {
if (fps > 30) {
if (state->GetDecoderType(kMainDecoder)) {
state->SetRequiresBothDecoders(true);
available_states.clear();
available_states.push_back(state);
- LOG(INFO) << "Nike-L does not support dual decode for > 30FPS";
+ LOG(INFO) << chipset << " does not support dual decode for > 30FPS";
break;
}
}