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

Commit 5011629a authored by Lajos Molnar's avatar Lajos Molnar
Browse files

fix build: use proper fmt in StagefrightMetadataRetriever.cpp log

Change-Id: Iadf74ed8c5b3a3bdb799c6e926fb7bea02511071
parent bd95df5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ static VideoFrame *extractVideoFrame(
                err = decoder->getOutputBuffers(&outputBuffers);
            } else {
                if (err == -EAGAIN /* INFO_TRY_AGAIN_LATER */ && --retriesLeft > 0) {
                    ALOGV("Timed-out waiting for output.. retries left = %d", retriesLeft);
                    ALOGV("Timed-out waiting for output.. retries left = %zu", retriesLeft);
                    err = OK;
                } else if (err == OK) {
                    ALOGV("Received an output buffer");