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

Commit 4e28ea75 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove unused variable" am: 11004efa am: 15b91adc

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

Change-Id: I8fc50f641167dcc79d22857c73af07dd2460dbbe
parents d2c9a850 15b91adc
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -262,13 +262,10 @@ FrameDecoder::~FrameDecoder() {
}

bool isHDR(const sp<AMessage> &format) {
    uint32_t standard, range, transfer;
    uint32_t standard, transfer;
    if (!format->findInt32("color-standard", (int32_t*)&standard)) {
        standard = 0;
    }
    if (!format->findInt32("color-range", (int32_t*)&range)) {
        range = 0;
    }
    if (!format->findInt32("color-transfer", (int32_t*)&transfer)) {
        transfer = 0;
    }