seek method

void seek(
  1. int absolute
)

Implementation

void seek(int absolute) {
  if (absolute < 0 || absolute > _end) throw UMediaParseException("Seek out of range", offset: absolute);
  _pos = absolute;
}