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

Commit bd33cedd authored by Arun Johnson's avatar Arun Johnson
Browse files

Fix channelCount_ nullptr check typo

Bug: 325512893
Change-Id: I5e79a90644a9e86fca6eea3915ab6cb5c39494ef
parent 71cd0005
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ C2Component::kind_t MultiAccessUnitInterface::kind() const {

bool MultiAccessUnitInterface::getDecoderSampleRateAndChannelCount(
        uint32_t * const sampleRate_, uint32_t * const channelCount_) const {
    if (sampleRate_ == nullptr || sampleRate_ == nullptr) {
    if (sampleRate_ == nullptr || channelCount_ == nullptr) {
        return false;
    }
    if (mC2ComponentIntf) {