diff options
Diffstat (limited to 'web/script/player/profiles.ts')
-rw-r--r-- | web/script/player/profiles.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/script/player/profiles.ts b/web/script/player/profiles.ts index 726e4ba..fe0e64d 100644 --- a/web/script/player/profiles.ts +++ b/web/script/player/profiles.ts @@ -8,7 +8,7 @@ import { OVar } from "../jshelper/mod.ts"; import { EncodingProfile } from "./jhls.d.ts"; import { profile_to_partial_track, test_media_capability } from "./mediacaps.ts"; import { Player } from "./player.ts"; -import { PlayerTrack } from "./track.ts"; +import { MSEPlayerTrack } from "./track.ts"; const PROFILE_UP_FAC = 0.6 const PROFILE_DOWN_FAC = 0.8 @@ -20,7 +20,7 @@ export class ProfileSelector { constructor( private player: Player, - private track: PlayerTrack, + private track: MSEPlayerTrack, private bandwidth: OVar<number> ) { } |