Id3Decoder.FramePredicate


public interface Id3Decoder.FramePredicate


A predicate for determining whether individual frames should be decoded.

Summary

Public methods

abstract boolean
evaluate(int majorVersion, int id0, int id1, int id2, int id3)

Returns whether a frame with the specified parameters should be decoded.

Public methods

evaluate

abstract boolean evaluate(int majorVersion, int id0, int id1, int id2, int id3)

Returns whether a frame with the specified parameters should be decoded.

Parameters
int majorVersion

The major version of the ID3 tag.

int id0

The first byte of the frame ID.

int id1

The second byte of the frame ID.

int id2

The third byte of the frame ID.

int id3

The fourth byte of the frame ID.

Returns
boolean

Whether the frame should be decoded.