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

Commit f4c873a6 authored by Marco Nelissen's avatar Marco Nelissen Committed by Android (Google) Code Review
Browse files

Merge "Fix AAC decoder reconfiguration" into jb-mr2-dev

parents 5182337f 7c5abbb0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -592,6 +592,12 @@ void SoftAAC2::drainDecoder() {

void SoftAAC2::onReset() {
    drainDecoder();
    // reset the "configured" state
    mInputBufferCount = 0;
    mNumSamplesOutput = 0;
    // To make the codec behave the same before and after a reset, we need to invalidate the
    // streaminfo struct. This does that:
    mStreamInfo->sampleRate = 0;
}

void SoftAAC2::onPortEnableCompleted(OMX_U32 portIndex, bool enabled) {