All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itshidu.ffmpeg.nut.FrameCode Maven / Gradle / Ivy

package com.itshidu.ffmpeg.nut;

import com.google.common.base.MoreObjects;

public class FrameCode {

  long flags;
  int streamId;
  int dataSizeMul;
  int dataSizeLsb;
  long ptsDelta;
  int reservedCount;
  long matchTimeDelta;
  int headerIdx;

  @Override
  public String toString() {
    return MoreObjects.toStringHelper(this)
        .add("flags", flags)
        .add("id", streamId)
        .add("dataSizeMul", dataSizeMul)
        .add("dataSizeLsb", dataSizeLsb)
        .add("ptsDelta", ptsDelta)
        .add("reservedCount", reservedCount)
        .add("matchTimeDelta", matchTimeDelta)
        .add("headerIdx", headerIdx)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy