summaryrefslogtreecommitdiff
path: root/src/i965_vpp_avs.h
blob: 0b01c8f5edd3ccd31ace9c149ab7bf3764399487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * i965_vpp_avs.h - Adaptive Video Scaler (AVS) block
 *
 * Copyright (C) 2014 Intel Corporation
 *   Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
 *
 * The source code contained or described herein and all documents related to
 * the source code ("Material") are owned by Intel Corporation or its suppliers
 * or licensors. Title to the Material remains with Intel Corporation or its
 * suppliers and licensors. The Material contains trade secrets and proprietary
 * and confidential information of Intel or its suppliers and licensors. The
 * Material is protected by worldwide copyright and trade secret laws and
 * treaty provisions. No part of the Material may be used, copied, reproduced,
 * modified, published, uploaded, posted, transmitted, distributed, or
 * disclosed in any way without Intel's prior express written permission.
 *
 * No license under any patent, copyright, trade secret or other intellectual
 * property right is granted to or conferred upon you by disclosure or delivery
 * of the Materials, either expressly, by implication, inducement, estoppel or
 * otherwise. Any license under such intellectual property rights must be
 * express and approved by Intel in writing.
 */

#ifndef I965_VPP_AVS_H
#define I965_VPP_AVS_H

#include <stdint.h>
#include <stdbool.h>

/** Maximum number of phases for the sharp filter */
#define AVS_MAX_PHASES 16

/** Maximum number of coefficients for luma samples */
#define AVS_MAX_LUMA_COEFFS 8

/** Maximum number of coefficients for chroma samples */
#define AVS_MAX_CHROMA_COEFFS 4

typedef struct avs_coeffs               AVSCoeffs;
typedef struct avs_coeffs_range         AVSCoeffsRange;
typedef struct avs_config               AVSConfig;
typedef struct avs_state                AVSState;

/** AVS coefficients for one phase */
struct avs_coeffs {
    /** Coefficients for luma samples on the X-axis (horizontal) */
    float y_k_h[AVS_MAX_LUMA_COEFFS];
    /** Coefficients for luma samples on the Y-axis (vertical) */
    float y_k_v[AVS_MAX_LUMA_COEFFS];
    /** Coefficients for chroma samples on the X-axis (horizontal) */
    float uv_k_h[AVS_MAX_CHROMA_COEFFS];
    /** Coefficients for chroma samples on the Y-axis (vertical) */
    float uv_k_v[AVS_MAX_CHROMA_COEFFS];
};

/** AVS coefficients range used for validation */
struct avs_coeffs_range {
    /** Lower bound for all coefficients */
    AVSCoeffs lower_bound;
    /** Upper bound for all coefficients */
    AVSCoeffs upper_bound;
};

/** Static configuration (per-generation) */
struct avs_config {
    /** Number of bits used for the fractional part of a coefficient */
    int coeff_frac_bits;
    /** The smallest float that could be represented as a coefficient */
    float coeff_epsilon;
    /** Coefficients range */
    AVSCoeffsRange coeff_range;
    /** Number of phases for the sharp filter */
    int num_phases;
    /** Number of coefficients for luma samples */
    int num_luma_coeffs;
    /** Number of coefficients for chroma samples */
    int num_chroma_coeffs;
};

/** AVS block state */
struct avs_state {
    /** Per-generation configuration parameters */
    const AVSConfig *config;
    /** Scaling flags */
    uint32_t flags;
    /** Scaling factor on the X-axis (horizontal) */
    float scale_x;
    /** Scaling factor on the Y-axis (vertical) */
    float scale_y;
    /** Coefficients for the polyphase scaler */
    AVSCoeffs coeffs[AVS_MAX_PHASES + 1];
};

/** Initializes AVS state with the supplied configuration */
void
avs_init_state(AVSState *avs, const AVSConfig *config);

/** Updates AVS coefficients for the supplied factors and quality level */
bool
avs_update_coefficients(AVSState *avs, float sx, float sy, uint32_t flags);

/** Checks whether AVS is needed, e.g. if high-quality scaling is requested */
static inline bool
avs_is_needed(uint32_t flags)
{
    return ((flags & VA_FILTER_SCALING_MASK) >= VA_FILTER_SCALING_HQ);
}

#endif /* I965_VPP_AVS_H */