Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 13cba069 authored by Simon Chan's avatar Simon Chan
Browse files

fix(scrcpy): remove deprecated export

parent 54931375
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
import { PromiseResolver } from '@yume-chan/async';
import { AndroidCodecLevel, AndroidCodecProfile, H264Decoder, type H264Configuration, type ScrcpyVideoStreamPacket } from '@yume-chan/scrcpy';
import { AndroidCodecLevel, AndroidCodecProfile, type H264Configuration, type ScrcpyVideoStreamPacket } from '@yume-chan/scrcpy';
import { WritableStream } from '@yume-chan/stream-extra';

import { createTinyH264Wrapper, type TinyH264Wrapper } from './wrapper.js';
@@ -17,7 +17,7 @@ function initialize() {
    return cachedInitializePromise;
}

export class TinyH264Decoder implements H264Decoder {
export class TinyH264Decoder {
    public readonly maxProfile = AndroidCodecProfile.Baseline;

    public readonly maxLevel = AndroidCodecLevel.Level4;