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

Commit 41fe38cf authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "CCodecConfig: round frame rate instead of truncating to increase the accuracy"

parents 5357c351 fd721deb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -383,7 +383,7 @@ void CCodecConfig::initializeStandardParams() {
            // read back always as int
            float value;
            if (v.get(&value)) {
                return (int32_t)value;
                return (int32_t) (value + 0.5);
            }
            return C2Value();
        }));