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

Commit 8bb47226 authored by Andreas Huber's avatar Andreas Huber Committed by Android Git Automerger
Browse files

am 23915ddd: am eec100b2: Merge change If0d04246 into eclair-mr2

Merge commit '23915ddde9ce3ed9f1ce50ea321c8fdce612faf0'

* commit '23915ddde9ce3ed9f1ce50ea321c8fdce612faf0':
  Don't count empty buffers when computing the frame rate.
parents 496dd58c 33b94958
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -173,7 +173,7 @@ static void playSource(OMXClient *client, const sp<MediaSource> &source) {
                break;
                break;
            }
            }


            if ((n++ % 16) == 0) {
            if (buffer->range_length() > 0 && (n++ % 16) == 0) {
                printf(".");
                printf(".");
                fflush(stdout);
                fflush(stdout);
            }
            }