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

Commit 20e893dd authored by Jooyung Han's avatar Jooyung Han Committed by Automerger Merge Worker
Browse files

Merge "Fix TunerFilterSetting union usage" am: 4b63204b

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

Change-Id: I3ce22a7efc76326cddef14232ea58380097166f5
parents 6b799a60 4b63204b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@ void TunerFilter::getHidlIpSettings(
            break;
        }
        case TunerFilterSettings::isPassthrough: {
            ip.filterSettings.bPassthrough(tunerSettings.isPassthrough);
            ip.filterSettings.bPassthrough(tunerSettings.get<TunerFilterSettings::isPassthrough>());
            break;
        }
        default: {
@@ -345,7 +345,8 @@ void TunerFilter::getHidlTlvSettings(
            break;
        }
        case TunerFilterSettings::isPassthrough: {
            tlv.filterSettings.bPassthrough(tunerSettings.isPassthrough);
            tlv.filterSettings.bPassthrough(
                    tunerSettings.get<TunerFilterSettings::isPassthrough>());
            break;
        }
        default: {