File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -514,16 +514,16 @@ void MediaProfiles::checkAndAddRequiredProfilesIfNecessary() {
514514 // Check high and low from either camcorder profile or timelapse profile
515515 // but not both. Default, check camcorder profile
516516 size_t j = 0 ;
517- size_t n = 2 ;
517+ size_t o = 2 ;
518518 if (isTimelapseProfile (quality)) {
519519 // Check timelapse profile instead.
520520 j = 2 ;
521- n = kNumRequiredProfiles ;
521+ o = kNumRequiredProfiles ;
522522 } else {
523523 // Must be camcorder profile.
524524 CHECK (isCamcorderProfile (quality));
525525 }
526- for (; j < n ; ++j) {
526+ for (; j < o ; ++j) {
527527 info = &(mRequiredProfileRefs [refIndex].mRefs [j]);
528528 if ((j % 2 == 0 && product > info->mResolutionProduct ) || // low
529529 (j % 2 != 0 && product < info->mResolutionProduct )) { // high
You can’t perform that action at this time.
0 commit comments