2015-11-17 19:20:13 +01:00
|
|
|
// Copyright 2015 The Chromium Embedded Framework Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "libcef/browser/osr/osr_util.h"
|
|
|
|
|
|
|
|
namespace osr_util {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// The rate at which new calls to OnPaint will be generated.
|
|
|
|
const int kDefaultFrameRate = 30;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int ClampFrameRate(int frame_rate) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (frame_rate < 1) {
|
2015-11-17 19:20:13 +01:00
|
|
|
return kDefaultFrameRate;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-03-18 18:46:03 +01:00
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
return frame_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace osr_util
|