update android default hwdec

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-06-20 17:59:35 +08:00
parent 480bdffdaa
commit 9df9132be9
2 changed files with 6 additions and 1 deletions

View File

@@ -37,4 +37,9 @@ enum HwDecType {
final String hwdec;
final String desc;
const HwDecType(this.hwdec, this.desc);
static final String androidDefault = [
HwDecType.mediacodec.hwdec,
HwDecType.autoSafe.hwdec,
].join(',');
}