blob: a776930d99361aabd622a4a72c935f3363d82740 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Krishna Rapaka7319db52021-09-28 20:35:29 -07002 * Copyright (c) 2021, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Krishna Rapaka7319db52021-09-28 20:35:29 -07004 * This source code is subject to the terms of the BSD 3-Clause Clear License and the
5 * Alliance for Open Media Patent License 1.0. If the BSD 3-Clause Clear License was
6 * not distributed with this source code in the LICENSE file, you can obtain it
7 * at aomedia.org/license/software-license/bsd-3-c-c/. If the Alliance for Open Media Patent
8 * License 1.0 was not distributed with this source code in the PATENTS file, you
9 * can obtain it at aomedia.org/license/patent-license/.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
11
James Zerne1cbb132018-08-22 14:10:36 -070012#ifndef AOM_AV1_COMMON_SCALE_H_
13#define AOM_AV1_COMMON_SCALE_H_
Yaowu Xuc27fc142016-08-22 16:08:15 -070014
Yunqing Wangd790c802017-12-20 17:41:37 -080015#include "av1/common/convolve.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070016#include "av1/common/mv.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070017
18#ifdef __cplusplus
19extern "C" {
20#endif
21
Urvang Joshide71d142017-10-05 12:12:15 -070022#define SCALE_NUMERATOR 8
Debargha Mukherjee15836142017-06-27 07:07:31 -070023
Yaowu Xuc27fc142016-08-22 16:08:15 -070024#define REF_SCALE_SHIFT 14
25#define REF_NO_SCALE (1 << REF_SCALE_SHIFT)
26#define REF_INVALID_SCALE -1
27
28struct scale_factors {
29 int x_scale_fp; // horizontal fixed point scale factor
30 int y_scale_fp; // vertical fixed point scale factor
31 int x_step_q4;
32 int y_step_q4;
33
34 int (*scale_value_x)(int val, const struct scale_factors *sf);
35 int (*scale_value_y)(int val, const struct scale_factors *sf);
Yaowu Xuc27fc142016-08-22 16:08:15 -070036};
37
Remy Foray9333b312018-11-28 09:17:05 +000038MV32 av1_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
Yaowu Xuc27fc142016-08-22 16:08:15 -070039
Yaowu Xuf883b422016-08-30 14:01:10 -070040void av1_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w,
Debargha Mukherjeee242a812018-03-07 21:43:09 -080041 int other_h, int this_w, int this_h);
Yaowu Xuc27fc142016-08-22 16:08:15 -070042
Yaowu Xuf883b422016-08-30 14:01:10 -070043static INLINE int av1_is_valid_scale(const struct scale_factors *sf) {
kyslov6fdf9342019-04-09 14:53:43 -070044 assert(sf != NULL);
Yaowu Xuc27fc142016-08-22 16:08:15 -070045 return sf->x_scale_fp != REF_INVALID_SCALE &&
46 sf->y_scale_fp != REF_INVALID_SCALE;
47}
48
Yaowu Xuf883b422016-08-30 14:01:10 -070049static INLINE int av1_is_scaled(const struct scale_factors *sf) {
kyslov6fdf9342019-04-09 14:53:43 -070050 assert(sf != NULL);
Yaowu Xuf883b422016-08-30 14:01:10 -070051 return av1_is_valid_scale(sf) &&
Yaowu Xuc27fc142016-08-22 16:08:15 -070052 (sf->x_scale_fp != REF_NO_SCALE || sf->y_scale_fp != REF_NO_SCALE);
53}
54
55static INLINE int valid_ref_frame_size(int ref_width, int ref_height,
56 int this_width, int this_height) {
57 return 2 * this_width >= ref_width && 2 * this_height >= ref_height &&
58 this_width <= 16 * ref_width && this_height <= 16 * ref_height;
59}
60
61#ifdef __cplusplus
62} // extern "C"
63#endif
64
James Zerne1cbb132018-08-22 14:10:36 -070065#endif // AOM_AV1_COMMON_SCALE_H_