Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Krishna Rapaka | 7319db5 | 2021-09-28 20:35:29 -0700 | [diff] [blame^] | 2 | * Copyright (c) 2021, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Krishna Rapaka | 7319db5 | 2021-09-28 20:35:29 -0700 | [diff] [blame^] | 4 | * 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 Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 12 | #ifndef AOM_AV1_COMMON_SCALE_H_ |
| 13 | #define AOM_AV1_COMMON_SCALE_H_ |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 14 | |
Yunqing Wang | d790c80 | 2017-12-20 17:41:37 -0800 | [diff] [blame] | 15 | #include "av1/common/convolve.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 16 | #include "av1/common/mv.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 17 | |
| 18 | #ifdef __cplusplus |
| 19 | extern "C" { |
| 20 | #endif |
| 21 | |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 22 | #define SCALE_NUMERATOR 8 |
Debargha Mukherjee | 1583614 | 2017-06-27 07:07:31 -0700 | [diff] [blame] | 23 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 24 | #define REF_SCALE_SHIFT 14 |
| 25 | #define REF_NO_SCALE (1 << REF_SCALE_SHIFT) |
| 26 | #define REF_INVALID_SCALE -1 |
| 27 | |
| 28 | struct 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 Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
Remy Foray | 9333b31 | 2018-11-28 09:17:05 +0000 | [diff] [blame] | 38 | MV32 av1_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 39 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 40 | void av1_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w, |
Debargha Mukherjee | e242a81 | 2018-03-07 21:43:09 -0800 | [diff] [blame] | 41 | int other_h, int this_w, int this_h); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 42 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 43 | static INLINE int av1_is_valid_scale(const struct scale_factors *sf) { |
kyslov | 6fdf934 | 2019-04-09 14:53:43 -0700 | [diff] [blame] | 44 | assert(sf != NULL); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 45 | return sf->x_scale_fp != REF_INVALID_SCALE && |
| 46 | sf->y_scale_fp != REF_INVALID_SCALE; |
| 47 | } |
| 48 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 49 | static INLINE int av1_is_scaled(const struct scale_factors *sf) { |
kyslov | 6fdf934 | 2019-04-09 14:53:43 -0700 | [diff] [blame] | 50 | assert(sf != NULL); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 51 | return av1_is_valid_scale(sf) && |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 52 | (sf->x_scale_fp != REF_NO_SCALE || sf->y_scale_fp != REF_NO_SCALE); |
| 53 | } |
| 54 | |
| 55 | static 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 Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 65 | #endif // AOM_AV1_COMMON_SCALE_H_ |