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

Commit e0b37478 authored by Andreas Huber's avatar Andreas Huber
Browse files

Remove one log message from the VPXDecoder

related-to-bug: 3402216

The VPX format supports "internal-only" frames that are
referenced by future content but never actually displayed, so
this is a perfectly valid scenario that doesn't require a
log message.

Change-Id: I8330bfdfefcdf4ab66ae6d2b59b99fd9b89350df
parent 5a50351c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -205,7 +205,9 @@ status_t VPXDecoder::read(
    vpx_image_t *img = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter);

    if (img == NULL) {
        LOGI("on2 decoder did not return a frame.");
        // The VPX format supports "internal-only" frames that are
        // referenced by future content but never actually displayed, so
        // this is a perfectly valid scenario.

        *out = new MediaBuffer(0);
        return OK;