parse method

List<List<int>> parse(
  1. bool webm
)

Implementation

List<List<int>> parse(bool webm) {
  if (webm) {
    return parseWebm();
  }
  return parseMp4();
}