Remove compatibility workarounds
[x264.git] / encoder / me.h
blobf64fce0726eaf9ca64272a01d4570ce59647e893
1 /*****************************************************************************
2 * me.h: motion estimation
3 *****************************************************************************
4 * Copyright (C) 2003-2019 x264 project
6 * Authors: Loren Merritt <lorenm@u.washington.edu>
7 * Laurent Aimar <fenrir@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
23 * This program is also available under a commercial proprietary license.
24 * For more information, contact us at licensing@x264.com.
25 *****************************************************************************/
27 #ifndef X264_ENCODER_ME_H
28 #define X264_ENCODER_ME_H
30 #define COST_MAX (1<<28)
31 #define COST_MAX64 (1ULL<<60)
33 typedef struct
35 /* aligning the first member is a gcc hack to force the struct to be aligned,
36 * as well as force sizeof(struct) to be a multiple of the alignment. */
37 /* input */
38 ALIGNED_64( int i_pixel ); /* PIXEL_WxH */
39 uint16_t *p_cost_mv; /* lambda * nbits for each possible mv */
40 int i_ref_cost;
41 int i_ref;
42 const x264_weight_t *weight;
44 pixel *p_fref[12];
45 pixel *p_fref_w;
46 pixel *p_fenc[3];
47 uint16_t *integral;
48 int i_stride[3];
50 ALIGNED_4( int16_t mvp[2] );
52 /* output */
53 int cost_mv; /* lambda * nbits for the chosen mv */
54 int cost; /* satd + lambda * nbits */
55 ALIGNED_4( int16_t mv[2] );
56 } ALIGNED_64( x264_me_t );
58 #define x264_me_search_ref x264_template(me_search_ref)
59 void x264_me_search_ref( x264_t *h, x264_me_t *m, int16_t (*mvc)[2], int i_mvc, int *p_fullpel_thresh );
60 #define x264_me_search( h, m, mvc, i_mvc )\
61 x264_me_search_ref( h, m, mvc, i_mvc, NULL )
63 #define x264_me_refine_qpel x264_template(me_refine_qpel)
64 void x264_me_refine_qpel( x264_t *h, x264_me_t *m );
65 #define x264_me_refine_qpel_refdupe x264_template(me_refine_qpel_refdupe)
66 void x264_me_refine_qpel_refdupe( x264_t *h, x264_me_t *m, int *p_halfpel_thresh );
67 #define x264_me_refine_qpel_rd x264_template(me_refine_qpel_rd)
68 void x264_me_refine_qpel_rd( x264_t *h, x264_me_t *m, int i_lambda2, int i4, int i_list );
69 #define x264_me_refine_bidir_rd x264_template(me_refine_bidir_rd)
70 void x264_me_refine_bidir_rd( x264_t *h, x264_me_t *m0, x264_me_t *m1, int i_weight, int i8, int i_lambda2 );
71 #define x264_me_refine_bidir_satd x264_template(me_refine_bidir_satd)
72 void x264_me_refine_bidir_satd( x264_t *h, x264_me_t *m0, x264_me_t *m1, int i_weight );
73 #define x264_rd_cost_part x264_template(rd_cost_part)
74 uint64_t x264_rd_cost_part( x264_t *h, int i_lambda2, int i8, int i_pixel );
76 #define COPY1_IF_LT(x,y)\
77 if( (y) < (x) )\
78 (x) = (y);
80 #define COPY2_IF_LT(x,y,a,b)\
81 if( (y) < (x) )\
83 (x) = (y);\
84 (a) = (b);\
87 #define COPY3_IF_LT(x,y,a,b,c,d)\
88 if( (y) < (x) )\
90 (x) = (y);\
91 (a) = (b);\
92 (c) = (d);\
95 #define COPY4_IF_LT(x,y,a,b,c,d,e,f)\
96 if( (y) < (x) )\
98 (x) = (y);\
99 (a) = (b);\
100 (c) = (d);\
101 (e) = (f);\
104 #define COPY2_IF_GT(x,y,a,b)\
105 if( (y) > (x) )\
107 (x) = (y);\
108 (a) = (b);\
111 #endif