(sourceId)
| 225 | PLAYER_SOURCES.find((s) => s.id === sourceId)?.progressViaFrames ?? false; |
| 226 | |
| 227 | export const sourceIsAsync = (sourceId) => |
| 228 | PLAYER_SOURCES.find((s) => s.id === sourceId)?.async ?? false; |
| 229 | |
| 230 | // Return the next non-async source after `currentId` in PLAYER_SOURCES order |
| 231 | export const getNextNonAsyncSource = (currentId) => { |