]> git.sesse.net Git - x264/blob - common/mc.h
arm: Implement x264_denoise_dct_neon
[x264] / common / mc.h
1 /*****************************************************************************
2  * mc.h: motion compensation
3  *****************************************************************************
4  * Copyright (C) 2004-2015 x264 project
5  *
6  * Authors: Loren Merritt <lorenm@u.washington.edu>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
21  *
22  * This program is also available under a commercial proprietary license.
23  * For more information, contact us at licensing@x264.com.
24  *****************************************************************************/
25
26 #ifndef X264_MC_H
27 #define X264_MC_H
28
29 struct x264_weight_t;
30 typedef void (* weight_fn_t)( pixel *, intptr_t, pixel *,intptr_t, const struct x264_weight_t *, int );
31 typedef struct x264_weight_t
32 {
33     /* aligning the first member is a gcc hack to force the struct to be
34      * 16 byte aligned, as well as force sizeof(struct) to be a multiple of 16 */
35     ALIGNED_16( int16_t cachea[8] );
36     int16_t cacheb[8];
37     int32_t i_denom;
38     int32_t i_scale;
39     int32_t i_offset;
40     weight_fn_t *weightfn;
41 } ALIGNED_16( x264_weight_t );
42
43 extern const x264_weight_t x264_weight_none[3];
44 extern const uint8_t x264_hpel_ref0[16];
45 extern const uint8_t x264_hpel_ref1[16];
46
47 #define SET_WEIGHT( w, b, s, d, o )\
48 {\
49     (w).i_scale = (s);\
50     (w).i_denom = (d);\
51     (w).i_offset = (o);\
52     if( b )\
53         h->mc.weight_cache( h, &w );\
54     else\
55         w.weightfn = NULL;\
56 }
57
58 /* Do the MC
59  * XXX: Only width = 4, 8 or 16 are valid
60  * width == 4 -> height == 4 or 8
61  * width == 8 -> height == 4 or 8 or 16
62  * width == 16-> height == 8 or 16
63  * */
64
65 typedef struct
66 {
67     void (*mc_luma)( pixel *dst, intptr_t i_dst, pixel **src, intptr_t i_src,
68                      int mvx, int mvy, int i_width, int i_height, const x264_weight_t *weight );
69
70     /* may round up the dimensions if they're not a power of 2 */
71     pixel* (*get_ref)( pixel *dst, intptr_t *i_dst, pixel **src, intptr_t i_src,
72                        int mvx, int mvy, int i_width, int i_height, const x264_weight_t *weight );
73
74     /* mc_chroma may write up to 2 bytes of garbage to the right of dst,
75      * so it must be run from left to right. */
76     void (*mc_chroma)( pixel *dstu, pixel *dstv, intptr_t i_dst, pixel *src, intptr_t i_src,
77                        int mvx, int mvy, int i_width, int i_height );
78
79     void (*avg[12])( pixel *dst,  intptr_t dst_stride, pixel *src1, intptr_t src1_stride,
80                      pixel *src2, intptr_t src2_stride, int i_weight );
81
82     /* only 16x16, 8x8, and 4x4 defined */
83     void (*copy[7])( pixel *dst, intptr_t dst_stride, pixel *src, intptr_t src_stride, int i_height );
84     void (*copy_16x16_unaligned)( pixel *dst, intptr_t dst_stride, pixel *src, intptr_t src_stride, int i_height );
85
86     void (*store_interleave_chroma)( pixel *dst, intptr_t i_dst, pixel *srcu, pixel *srcv, int height );
87     void (*load_deinterleave_chroma_fenc)( pixel *dst, pixel *src, intptr_t i_src, int height );
88     void (*load_deinterleave_chroma_fdec)( pixel *dst, pixel *src, intptr_t i_src, int height );
89
90     void (*plane_copy)( pixel *dst, intptr_t i_dst, pixel *src, intptr_t i_src, int w, int h );
91     void (*plane_copy_swap)( pixel *dst, intptr_t i_dst, pixel *src, intptr_t i_src, int w, int h );
92     void (*plane_copy_interleave)( pixel *dst,  intptr_t i_dst, pixel *srcu, intptr_t i_srcu,
93                                    pixel *srcv, intptr_t i_srcv, int w, int h );
94     /* may write up to 15 pixels off the end of each plane */
95     void (*plane_copy_deinterleave)( pixel *dstu, intptr_t i_dstu, pixel *dstv, intptr_t i_dstv,
96                                      pixel *src,  intptr_t i_src, int w, int h );
97     void (*plane_copy_deinterleave_rgb)( pixel *dsta, intptr_t i_dsta, pixel *dstb, intptr_t i_dstb,
98                                          pixel *dstc, intptr_t i_dstc, pixel *src,  intptr_t i_src, int pw, int w, int h );
99     void (*plane_copy_deinterleave_v210)( pixel *dsty, intptr_t i_dsty,
100                                           pixel *dstc, intptr_t i_dstc,
101                                           uint32_t *src, intptr_t i_src, int w, int h );
102     void (*hpel_filter)( pixel *dsth, pixel *dstv, pixel *dstc, pixel *src,
103                          intptr_t i_stride, int i_width, int i_height, int16_t *buf );
104
105     /* prefetch the next few macroblocks of fenc or fdec */
106     void (*prefetch_fenc)    ( pixel *pix_y, intptr_t stride_y, pixel *pix_uv, intptr_t stride_uv, int mb_x );
107     void (*prefetch_fenc_420)( pixel *pix_y, intptr_t stride_y, pixel *pix_uv, intptr_t stride_uv, int mb_x );
108     void (*prefetch_fenc_422)( pixel *pix_y, intptr_t stride_y, pixel *pix_uv, intptr_t stride_uv, int mb_x );
109     /* prefetch the next few macroblocks of a hpel reference frame */
110     void (*prefetch_ref)( pixel *pix, intptr_t stride, int parity );
111
112     void *(*memcpy_aligned)( void *dst, const void *src, size_t n );
113     void (*memzero_aligned)( void *dst, size_t n );
114
115     /* successive elimination prefilter */
116     void (*integral_init4h)( uint16_t *sum, pixel *pix, intptr_t stride );
117     void (*integral_init8h)( uint16_t *sum, pixel *pix, intptr_t stride );
118     void (*integral_init4v)( uint16_t *sum8, uint16_t *sum4, intptr_t stride );
119     void (*integral_init8v)( uint16_t *sum8, intptr_t stride );
120
121     void (*frame_init_lowres_core)( pixel *src0, pixel *dst0, pixel *dsth, pixel *dstv, pixel *dstc,
122                                     intptr_t src_stride, intptr_t dst_stride, int width, int height );
123     weight_fn_t *weight;
124     weight_fn_t *offsetadd;
125     weight_fn_t *offsetsub;
126     void (*weight_cache)( x264_t *, x264_weight_t * );
127
128     void (*mbtree_propagate_cost)( int16_t *dst, uint16_t *propagate_in, uint16_t *intra_costs,
129                                    uint16_t *inter_costs, uint16_t *inv_qscales, float *fps_factor, int len );
130
131     void (*mbtree_propagate_list)( x264_t *h, uint16_t *ref_costs, int16_t (*mvs)[2],
132                                    int16_t *propagate_amount, uint16_t *lowres_costs,
133                                    int bipred_weight, int mb_y, int len, int list );
134 } x264_mc_functions_t;
135
136 void x264_mc_init( int cpu, x264_mc_functions_t *pf, int cpu_independent );
137
138 #endif