ObuParser.FrameHeader


public final class ObuParser.FrameHeader


An AV1 Frame Header.

Summary

Public fields

final boolean

Public methods

boolean

Returns whether the frame header is depended on by subsequent frames.

static @Nullable ObuParser.FrameHeader

Returns a FrameHeader parsed from the input OBU, or null if the AV1 bitstream is not yet supported.

Public fields

isDependedOn

public final boolean isDependedOn

Public methods

isDependedOn

public boolean isDependedOn()

Returns whether the frame header is depended on by subsequent frames.

parse

public static @Nullable ObuParser.FrameHeader parse(ObuParser.SequenceHeader sequenceHeader, ObuParser.Obu obu)

Returns a FrameHeader parsed from the input OBU, or null if the AV1 bitstream is not yet supported.

Parameters
ObuParser.SequenceHeader sequenceHeader

The most recent sequence header before the frame header.

ObuParser.Obu obu

The input OBU with type OBU_FRAME or OBU_FRAME_HEADER.