001package net.bramp.ffmpeg.probe;
002
003import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
004
005@SuppressFBWarnings(
006    value = {"UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD"},
007    justification = "POJO objects where the fields are populated by gson")
008public class FFmpegChapter {
009
010  public int id;
011  public String time_base;
012  public long start;
013  public String start_time;
014  public long end;
015  public String end_time;
016  public FFmpegChapterTag tags;
017}