| 518 | } |
| 519 | |
| 520 | GenericPlayer::SupportType utils::GetContentSupportType(const char *path) |
| 521 | { |
| 522 | GenericPlayer::SupportType supportType = AVPlayer::IsSupported(path); |
| 523 | if (supportType == GenericPlayer::SupportType_NotSupported) |
| 524 | { |
| 525 | supportType = BEAVPlayer::IsSupported(path); |
| 526 | if (supportType == GenericPlayer::SupportType_NotSupported) |
| 527 | { |
| 528 | supportType = FMODPlayer::IsSupported(path); |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | return supportType; |
| 533 | } |
nothing calls this directly
no outgoing calls
no test coverage detected