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

Commit 04e3cb48 authored by Vignesh Venkatasubramanian's avatar Vignesh Venkatasubramanian Committed by Automerger Merge Worker
Browse files

gav1: Increase max supported resolution to 4096x4096 am: 2d8d4700 am: 27f40f36

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/1743306

Change-Id: I79e48593ffdd8581fb87e791f106523e4505445c
parents a0a3b964 27f40f36
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,8 +51,8 @@ class C2SoftGav1Dec::IntfImpl : public SimpleInterface<void>::BaseParams {
        DefineParam(mSize, C2_PARAMKEY_PICTURE_SIZE)
            .withDefault(new C2StreamPictureSizeInfo::output(0u, 320, 240))
            .withFields({
                C2F(mSize, width).inRange(2, 2048, 2),
                C2F(mSize, height).inRange(2, 2048, 2),
                C2F(mSize, width).inRange(2, 4096, 2),
                C2F(mSize, height).inRange(2, 4096, 2),
            })
            .withSetter(SizeSetter)
            .build());