mirror of
https://github.com/samsonjs/media.git
synced 2026-03-30 10:15:48 +00:00
Make DefaultTrackSelector.AudioTrackScore protected
This allows selectAudioTrack() to be overridden.
This commit is contained in:
parent
a51c114942
commit
edee8cfbde
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue