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

Commit 23915ddd authored by Andreas Huber's avatar Andreas Huber Committed by Android Git Automerger
Browse files

am eec100b2: Merge change If0d04246 into eclair-mr2

Merge commit 'eec100b2' into eclair-mr2-plus-aosp

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

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