mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Make DefaultTrackSelector.AudioTrackScore protected
This allows selectAudioTrack() to be overridden.
This commit is contained in:
parent
028f3e6438
commit
9b111fbd95
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