Merge pull request #4886 from talklittle/protected-audiotrackscore

Make DefaultTrackSelector.AudioTrackScore protected
This commit is contained in:
ojw28 2018-10-01 20:05:08 +01:00 committed by GitHub
commit b4ba913008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2141,7 +2141,7 @@ public class DefaultTrackSelector extends MappingTrackSelector {
}
/** Represents how well an audio track matches the selection {@link Parameters}. */
private static final class AudioTrackScore implements Comparable<AudioTrackScore> {
protected static final class AudioTrackScore implements Comparable<AudioTrackScore> {
private final Parameters parameters;
private final int withinRendererCapabilitiesScore;