summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_firstpass.c
diff options
context:
space:
mode:
authorJerome Jiang <jianj@google.com>2023-06-08 14:11:24 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-06-08 14:11:24 +0000
commitda02ccde30a90a2d0c9a7b91f5bb59c953243aad (patch)
tree8d7e871ccc59a9329d25aa2fd0759e18814b9c11 /vp9/encoder/vp9_firstpass.c
parentfb6aebcbbfc0acf1546a79c7e80fa2c309367b8a (diff)
parentd42b7fd66162be7a94ded287c09461acd7875c8d (diff)
downloadlibvpx-da02ccde30a90a2d0c9a7b91f5bb59c953243aad.tar
libvpx-da02ccde30a90a2d0c9a7b91f5bb59c953243aad.tar.gz
libvpx-da02ccde30a90a2d0c9a7b91f5bb59c953243aad.tar.bz2
libvpx-da02ccde30a90a2d0c9a7b91f5bb59c953243aad.zip
Merge "Fix more typos (n/n)" into main
Diffstat (limited to 'vp9/encoder/vp9_firstpass.c')
-rw-r--r--vp9/encoder/vp9_firstpass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_firstpass.c b/vp9/encoder/vp9_firstpass.c
index d726bc15f..27cfc805d 100644
--- a/vp9/encoder/vp9_firstpass.c
+++ b/vp9/encoder/vp9_firstpass.c
@@ -610,7 +610,7 @@ static int get_smooth_intra_threshold(VP9_COMMON *cm) {
static uint8_t fp_dn_kernel_3[KERNEL_SIZE * KERNEL_SIZE] = { 1, 2, 1, 2, 4,
2, 1, 2, 1 };
-// Estimate noise at a single point based on the impace of a spatial kernel
+// Estimate noise at a single point based on the impact of a spatial kernel
// on the point value
static int fp_estimate_point_noise(uint8_t *src_ptr, const int stride) {
int sum_weight = 0;
@@ -2038,7 +2038,7 @@ static int compute_arf_boost(const FRAME_INFO *frame_info,
this_frame, &this_frame_mv_in_out, &mv_in_out_accumulator,
&abs_mv_in_out_accumulator, &mv_ratio_accumulator);
- // We want to discount the the flash frame itself and the recovery
+ // We want to discount the flash frame itself and the recovery
// frame that follows as both will have poor scores.
flash_detected = detect_flash_from_frame_stats(this_frame) ||
detect_flash_from_frame_stats(next_frame);