We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 05cd296 + 943347c commit 5553613Copy full SHA for 5553613
1 file changed
media/libstagefright/matroska/MatroskaExtractor.cpp
@@ -768,12 +768,12 @@ void MatroskaExtractor::findThumbnails() {
768
}
769
770
BlockIterator iter(this, info->mTrackNum);
771
- int32_t i = 0;
+ int32_t j = 0;
772
int64_t thumbnailTimeUs = 0;
773
size_t maxBlockSize = 0;
774
- while (!iter.eos() && i < 20) {
+ while (!iter.eos() && j < 20) {
775
if (iter.block()->IsKey()) {
776
- ++i;
+ ++j;
777
778
size_t blockSize = 0;
779
for (int i = 0; i < iter.block()->GetFrameCount(); ++i) {
0 commit comments