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

Commit 2f133015 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I5126e183 into eclair-mr2

* changes:
  Fix MP3Extractor duration overflows...
parents 6de8bbb0 5126e183
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -373,7 +373,7 @@ MP3Extractor::MP3Extractor(const sp<DataSource> &source)
        if (mDataSource->getSize(&fileSize) == OK) {
            mMeta->setInt64(
                    kKeyDuration,
                    8000 * (fileSize - mFirstFramePos) / bitrate);
                    8000LL * (fileSize - mFirstFramePos) / bitrate);
        }
    }
}