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

Commit 86305ab2 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 12910931 from c57e7100 to 25Q2-release

Change-Id: Ica4b11faa6b28ca7c2edd4364ec3fe592f255855
parents e912b8aa c57e7100
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -50,6 +50,15 @@ flag {
    bug: "285588444"
}

flag {
    name: "defer_wear_permission_updates"
    namespace: "media_audio"
    description:
        "defer permission updates to reduce pressure"
        "on app launch latency on lower core devices."
    bug: "380347376"
}

flag {
    name: "disable_prescale_absolute_volume"
    namespace: "media_audio"
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ struct C2SoftApvDec final : public SimpleC2Component {
            coeffs(C2Color::MATRIX_UNSPECIFIED),
            fullRange(C2Color::RANGE_UNSPECIFIED) { }

        bool operator==(const VuiColorAspects &o) {
        bool operator==(const VuiColorAspects &o) const {
            return primaries == o.primaries && transfer == o.transfer && coeffs == o.coeffs
                && fullRange == o.fullRange;
        }
+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ private:
        VuiColorAspects()
            : primaries(2), transfer(2), coeffs(2), fullRange(0) { }

        bool operator==(const VuiColorAspects &o) {
        bool operator==(const VuiColorAspects &o) const {
            return primaries == o.primaries && transfer == o.transfer && coeffs == o.coeffs
                    && fullRange == o.fullRange;
        }
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ struct C2SoftDav1dDec : public SimpleC2Component {
              coeffs(C2Color::MATRIX_UNSPECIFIED),
              fullRange(C2Color::RANGE_UNSPECIFIED) {}

        bool operator==(const VuiColorAspects& o) {
        bool operator==(const VuiColorAspects& o) const {
            return primaries == o.primaries && transfer == o.transfer && coeffs == o.coeffs &&
                   fullRange == o.fullRange;
        }
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ struct C2SoftGav1Dec : public SimpleC2Component {
            coeffs(C2Color::MATRIX_UNSPECIFIED),
            fullRange(C2Color::RANGE_UNSPECIFIED) { }

      bool operator==(const VuiColorAspects &o) {
      bool operator==(const VuiColorAspects &o) const {
          return primaries == o.primaries && transfer == o.transfer && coeffs == o.coeffs
                  && fullRange == o.fullRange;
      }
Loading