dropLateFrames static method

String dropLateFrames(
  1. bool enable
)

Drop late frames This drops frames that are late (arrive to the video output after their intended display date).

Implementation

static String dropLateFrames(bool enable) {
  return enable ? '--drop-late-frames' : '--no-drop-late-frames';
}