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

Commit 44ddd1ff authored by James Dong's avatar James Dong
Browse files

Fix the broken build

Change-Id: Ib508514891474d24f14ac69d721b0c9c700a0c3f
parent e7b3e09a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -342,7 +342,7 @@ void ACodec::initiateSetup(const sp<AMessage> &msg) {
}

void ACodec::signalFlush() {
    LOGV("[%s] signalFlush", mComponentName.c_str());
    ALOGV("[%s] signalFlush", mComponentName.c_str());
    (new AMessage(kWhatFlush, id()))->post();
}

@@ -2056,7 +2056,7 @@ bool ACodec::ExecutingState::onMessageReceived(const sp<AMessage> &msg) {

        case kWhatFlush:
        {
            LOGV("[%s] ExecutingState flushing now "
            ALOGV("[%s] ExecutingState flushing now "
                 "(codec owns %d/%d input, %d/%d output).",
                    mCodec->mComponentName.c_str(),
                    mCodec->countBuffersOwnedByComponent(kPortIndexInput),
@@ -2437,7 +2437,7 @@ bool ACodec::FlushingState::onMessageReceived(const sp<AMessage> &msg) {

bool ACodec::FlushingState::onOMXEvent(
        OMX_EVENTTYPE event, OMX_U32 data1, OMX_U32 data2) {
    LOGV("[%s] FlushingState onOMXEvent(%d,%ld)",
    ALOGV("[%s] FlushingState onOMXEvent(%d,%ld)",
            mCodec->mComponentName.c_str(), event, data1);

    switch (event) {