]> git.sesse.net Git - ffmpeg/blob - libavcodec/x86/rv40dsp_init.c
Merge commit 'a5e8c41c28f907d98d2a739db08f7aef4cbfcf3a'
[ffmpeg] / libavcodec / x86 / rv40dsp_init.c
1 /*
2  * RV40 decoder motion compensation functions x86-optimised
3  * Copyright (c) 2008 Konstantin Shishkov
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * RV40 decoder motion compensation functions x86-optimised
25  * 2,0 and 0,2 have h264 equivalents.
26  * 3,3 is bugged in the rv40 format and maps to _xy2 version
27  */
28
29 #include "libavcodec/rv34dsp.h"
30 #include "dsputil_mmx.h"
31
32 void ff_put_rv40_chroma_mc8_mmx  (uint8_t *dst, uint8_t *src,
33                                   int stride, int h, int x, int y);
34 void ff_avg_rv40_chroma_mc8_mmx2 (uint8_t *dst, uint8_t *src,
35                                   int stride, int h, int x, int y);
36 void ff_avg_rv40_chroma_mc8_3dnow(uint8_t *dst, uint8_t *src,
37                                   int stride, int h, int x, int y);
38
39 void ff_put_rv40_chroma_mc4_mmx  (uint8_t *dst, uint8_t *src,
40                                   int stride, int h, int x, int y);
41 void ff_avg_rv40_chroma_mc4_mmx2 (uint8_t *dst, uint8_t *src,
42                                   int stride, int h, int x, int y);
43 void ff_avg_rv40_chroma_mc4_3dnow(uint8_t *dst, uint8_t *src,
44                                   int stride, int h, int x, int y);
45
46 #define DECLARE_WEIGHT(opt) \
47 void ff_rv40_weight_func_rnd_16_##opt(uint8_t *dst, uint8_t *src1, uint8_t *src2, \
48                                       int w1, int w2, ptrdiff_t stride); \
49 void ff_rv40_weight_func_rnd_8_##opt (uint8_t *dst, uint8_t *src1, uint8_t *src2, \
50                                       int w1, int w2, ptrdiff_t stride); \
51 void ff_rv40_weight_func_nornd_16_##opt(uint8_t *dst, uint8_t *src1, uint8_t *src2, \
52                                         int w1, int w2, ptrdiff_t stride); \
53 void ff_rv40_weight_func_nornd_8_##opt (uint8_t *dst, uint8_t *src1, uint8_t *src2, \
54                                         int w1, int w2, ptrdiff_t stride);
55 DECLARE_WEIGHT(mmx2)
56 DECLARE_WEIGHT(sse2)
57 DECLARE_WEIGHT(ssse3)
58
59 #if HAVE_YASM
60
61 /** @{ */
62 /**
63  * Define one qpel function.
64  * LOOPSIZE must be already set to the number of pixels processed per
65  * iteration in the inner loop of the called functions.
66  * COFF(x) must be already defined so as to provide the offset into any
67  * array of coeffs used by the called function for the qpel position x.
68  */
69 #define QPEL_FUNC_DECL(OP, SIZE, PH, PV, OPT)                           \
70 static void OP ## rv40_qpel ##SIZE ##_mc ##PH ##PV ##OPT(uint8_t *dst,  \
71                                                          uint8_t *src,  \
72                                                          int stride)    \
73 {                                                                       \
74     int i;                                                              \
75     if (PH && PV) {                                                     \
76         DECLARE_ALIGNED(16, uint8_t, tmp)[SIZE * (SIZE + 5)];           \
77         uint8_t *tmpptr = tmp + SIZE * 2;                               \
78         src -= stride * 2;                                              \
79                                                                         \
80         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
81             ff_put_rv40_qpel_h ##OPT(tmp + i, SIZE, src + i, stride,    \
82                                      SIZE + 5, HCOFF(PH));              \
83         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
84             ff_ ##OP ##rv40_qpel_v ##OPT(dst + i, stride, tmpptr + i,   \
85                                          SIZE, SIZE, VCOFF(PV));        \
86     } else if (PV) {                                                    \
87         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
88             ff_ ##OP ##rv40_qpel_v ## OPT(dst + i, stride, src + i,     \
89                                           stride, SIZE, VCOFF(PV));     \
90     } else {                                                            \
91         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
92             ff_ ##OP ##rv40_qpel_h ## OPT(dst + i, stride, src + i,     \
93                                           stride, SIZE, HCOFF(PH));     \
94     }                                                                   \
95 };
96
97 /** Declare functions for sizes 8 and 16 and given operations
98  *  and qpel position. */
99 #define QPEL_FUNCS_DECL(OP, PH, PV, OPT) \
100     QPEL_FUNC_DECL(OP,  8, PH, PV, OPT)  \
101     QPEL_FUNC_DECL(OP, 16, PH, PV, OPT)
102
103 /** Declare all functions for all sizes and qpel positions */
104 #define QPEL_MC_DECL(OP, OPT)                                           \
105 void ff_ ##OP ##rv40_qpel_h ##OPT(uint8_t *dst, ptrdiff_t dstStride,    \
106                                   const uint8_t *src,                   \
107                                   ptrdiff_t srcStride,                  \
108                                   int len, int m);                      \
109 void ff_ ##OP ##rv40_qpel_v ##OPT(uint8_t *dst, ptrdiff_t dstStride,    \
110                                   const uint8_t *src,                   \
111                                   ptrdiff_t srcStride,                  \
112                                   int len, int m);                      \
113 QPEL_FUNCS_DECL(OP, 0, 1, OPT)                                          \
114 QPEL_FUNCS_DECL(OP, 0, 3, OPT)                                          \
115 QPEL_FUNCS_DECL(OP, 1, 0, OPT)                                          \
116 QPEL_FUNCS_DECL(OP, 1, 1, OPT)                                          \
117 QPEL_FUNCS_DECL(OP, 1, 2, OPT)                                          \
118 QPEL_FUNCS_DECL(OP, 1, 3, OPT)                                          \
119 QPEL_FUNCS_DECL(OP, 2, 1, OPT)                                          \
120 QPEL_FUNCS_DECL(OP, 2, 2, OPT)                                          \
121 QPEL_FUNCS_DECL(OP, 2, 3, OPT)                                          \
122 QPEL_FUNCS_DECL(OP, 3, 0, OPT)                                          \
123 QPEL_FUNCS_DECL(OP, 3, 1, OPT)                                          \
124 QPEL_FUNCS_DECL(OP, 3, 2, OPT)
125 /** @} */
126
127 #define LOOPSIZE  8
128 #define HCOFF(x)  (32 * (x - 1))
129 #define VCOFF(x)  (32 * (x - 1))
130 QPEL_MC_DECL(put_, _ssse3)
131 QPEL_MC_DECL(avg_, _ssse3)
132
133 #undef LOOPSIZE
134 #undef HCOFF
135 #undef VCOFF
136 #define LOOPSIZE  8
137 #define HCOFF(x)  (64 * (x - 1))
138 #define VCOFF(x)  (64 * (x - 1))
139 QPEL_MC_DECL(put_, _sse2)
140 QPEL_MC_DECL(avg_, _sse2)
141
142 #if ARCH_X86_32
143 #undef LOOPSIZE
144 #undef HCOFF
145 #undef VCOFF
146 #define LOOPSIZE  4
147 #define HCOFF(x)  (64 * (x - 1))
148 #define VCOFF(x)  (64 * (x - 1))
149
150 QPEL_MC_DECL(put_, _mmx)
151
152 #define ff_put_rv40_qpel_h_mmx2  ff_put_rv40_qpel_h_mmx
153 #define ff_put_rv40_qpel_v_mmx2  ff_put_rv40_qpel_v_mmx
154 QPEL_MC_DECL(avg_, _mmx2)
155
156 #define ff_put_rv40_qpel_h_3dnow  ff_put_rv40_qpel_h_mmx
157 #define ff_put_rv40_qpel_v_3dnow  ff_put_rv40_qpel_v_mmx
158 QPEL_MC_DECL(avg_, _3dnow)
159 #endif
160
161 /** @{ */
162 /** Set one function */
163 #define QPEL_FUNC_SET(OP, SIZE, PH, PV, OPT)                            \
164     c-> OP ## pixels_tab[2 - SIZE / 8][4 * PV + PH] = OP ## rv40_qpel ##SIZE ## _mc ##PH ##PV ##OPT;
165
166 /** Set functions put and avg for sizes 8 and 16 and a given qpel position */
167 #define QPEL_FUNCS_SET(OP, PH, PV, OPT)         \
168     QPEL_FUNC_SET(OP,  8, PH, PV, OPT)          \
169     QPEL_FUNC_SET(OP, 16, PH, PV, OPT)
170
171 /** Set all functions for all sizes and qpel positions */
172 #define QPEL_MC_SET(OP, OPT)   \
173 QPEL_FUNCS_SET (OP, 0, 1, OPT) \
174 QPEL_FUNCS_SET (OP, 0, 3, OPT) \
175 QPEL_FUNCS_SET (OP, 1, 0, OPT) \
176 QPEL_FUNCS_SET (OP, 1, 1, OPT) \
177 QPEL_FUNCS_SET (OP, 1, 2, OPT) \
178 QPEL_FUNCS_SET (OP, 1, 3, OPT) \
179 QPEL_FUNCS_SET (OP, 2, 1, OPT) \
180 QPEL_FUNCS_SET (OP, 2, 2, OPT) \
181 QPEL_FUNCS_SET (OP, 2, 3, OPT) \
182 QPEL_FUNCS_SET (OP, 3, 0, OPT) \
183 QPEL_FUNCS_SET (OP, 3, 1, OPT) \
184 QPEL_FUNCS_SET (OP, 3, 2, OPT)
185 /** @} */
186
187 #endif //HAVE_YASM
188
189 void ff_rv40dsp_init_x86(RV34DSPContext *c, DSPContext *dsp)
190 {
191 #if HAVE_YASM
192     int mm_flags = av_get_cpu_flags();
193
194     if (mm_flags & AV_CPU_FLAG_MMX) {
195         c->put_chroma_pixels_tab[0] = ff_put_rv40_chroma_mc8_mmx;
196         c->put_chroma_pixels_tab[1] = ff_put_rv40_chroma_mc4_mmx;
197         c->put_pixels_tab[0][15] = ff_put_rv40_qpel16_mc33_mmx;
198         c->put_pixels_tab[1][15] = ff_put_rv40_qpel8_mc33_mmx;
199         c->avg_pixels_tab[0][15] = ff_avg_rv40_qpel16_mc33_mmx;
200         c->avg_pixels_tab[1][15] = ff_avg_rv40_qpel8_mc33_mmx;
201 #if ARCH_X86_32
202         QPEL_MC_SET(put_, _mmx)
203 #endif
204     }
205     if (mm_flags & AV_CPU_FLAG_MMX2) {
206         c->avg_chroma_pixels_tab[0] = ff_avg_rv40_chroma_mc8_mmx2;
207         c->avg_chroma_pixels_tab[1] = ff_avg_rv40_chroma_mc4_mmx2;
208         c->rv40_weight_pixels_tab[0][0] = ff_rv40_weight_func_rnd_16_mmx2;
209         c->rv40_weight_pixels_tab[0][1] = ff_rv40_weight_func_rnd_8_mmx2;
210         c->rv40_weight_pixels_tab[1][0] = ff_rv40_weight_func_nornd_16_mmx2;
211         c->rv40_weight_pixels_tab[1][1] = ff_rv40_weight_func_nornd_8_mmx2;
212 #if ARCH_X86_32
213         QPEL_MC_SET(avg_, _mmx2)
214 #endif
215     } else if (mm_flags & AV_CPU_FLAG_3DNOW) {
216         c->avg_chroma_pixels_tab[0] = ff_avg_rv40_chroma_mc8_3dnow;
217         c->avg_chroma_pixels_tab[1] = ff_avg_rv40_chroma_mc4_3dnow;
218 #if ARCH_X86_32
219         QPEL_MC_SET(avg_, _3dnow)
220 #endif
221     }
222     if (mm_flags & AV_CPU_FLAG_SSE2) {
223         c->rv40_weight_pixels_tab[0][0] = ff_rv40_weight_func_rnd_16_sse2;
224         c->rv40_weight_pixels_tab[0][1] = ff_rv40_weight_func_rnd_8_sse2;
225         c->rv40_weight_pixels_tab[1][0] = ff_rv40_weight_func_nornd_16_sse2;
226         c->rv40_weight_pixels_tab[1][1] = ff_rv40_weight_func_nornd_8_sse2;
227         QPEL_MC_SET(put_, _sse2)
228         QPEL_MC_SET(avg_, _sse2)
229     }
230     if (mm_flags & AV_CPU_FLAG_SSSE3) {
231         c->rv40_weight_pixels_tab[0][0] = ff_rv40_weight_func_rnd_16_ssse3;
232         c->rv40_weight_pixels_tab[0][1] = ff_rv40_weight_func_rnd_8_ssse3;
233         c->rv40_weight_pixels_tab[1][0] = ff_rv40_weight_func_nornd_16_ssse3;
234         c->rv40_weight_pixels_tab[1][1] = ff_rv40_weight_func_nornd_8_ssse3;
235         QPEL_MC_SET(put_, _ssse3)
236         QPEL_MC_SET(avg_, _ssse3)
237     }
238 #endif
239 }