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

Commit ce466807 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents 92a771e4 df9856bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -389,7 +389,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();
        }));