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

Commit 9b288a09 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

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

Merge "CCodecConfig: round frame rate instead of truncating to increase the accuracy" am: ce466807 am: 75a9e05d

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/2352347



Change-Id: Ia1185100aa3ed621697c872ebc8379047fbbaeb3
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents ace86038 75a9e05d
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();
        }));