]> git.sesse.net Git - ffmpeg/blob - libavcodec/x86/mpegvideoenc.c
Merge commit 'b4a911c189962e563a09fb0efaf6fa9ab56263a4'
[ffmpeg] / libavcodec / x86 / mpegvideoenc.c
1 /*
2  * The simplest mpeg encoder (well, it was the simplest!)
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/attributes.h"
23 #include "libavutil/cpu.h"
24 #include "libavutil/x86/asm.h"
25 #include "libavutil/x86/cpu.h"
26 #include "libavcodec/avcodec.h"
27 #include "libavcodec/dct.h"
28 #include "libavcodec/mpegvideo.h"
29
30 /* not permutated inverse zigzag_direct + 1 for MMX quantizer */
31 DECLARE_ALIGNED(16, static const uint16_t, inv_zigzag_direct16)[64] = {
32     1,  2,  6,  7,  15, 16, 28, 29, 3,  5,  8,  14, 17, 27, 30, 43, 4,  9,  13,
33     18, 26, 31, 42, 44, 10, 12, 19, 25, 32, 41, 45, 54, 11, 20, 24, 33, 40, 46,
34     53, 55, 21, 23, 34, 39, 47, 52, 56, 61, 22, 35, 38, 48, 51, 57, 60, 62, 36,
35     37, 49, 50, 58, 59, 63, 64,
36 };
37
38 #if HAVE_6REGS
39
40 #if HAVE_MMX_INLINE
41 #define COMPILE_TEMPLATE_MMXEXT 0
42 #define COMPILE_TEMPLATE_SSE2   0
43 #define COMPILE_TEMPLATE_SSSE3  0
44 #define RENAME(a)      a ## _mmx
45 #define RENAME_FDCT(a) a ## _mmx
46 #include "mpegvideoenc_template.c"
47 #endif /* HAVE_MMX_INLINE */
48
49 #if HAVE_MMXEXT_INLINE
50 #undef COMPILE_TEMPLATE_SSSE3
51 #undef COMPILE_TEMPLATE_SSE2
52 #undef COMPILE_TEMPLATE_MMXEXT
53 #define COMPILE_TEMPLATE_MMXEXT 1
54 #define COMPILE_TEMPLATE_SSE2   0
55 #define COMPILE_TEMPLATE_SSSE3  0
56 #undef RENAME
57 #undef RENAME_FDCT
58 #define RENAME(a)      a ## _mmxext
59 #define RENAME_FDCT(a) a ## _mmxext
60 #include "mpegvideoenc_template.c"
61 #endif /* HAVE_MMXEXT_INLINE */
62
63 #if HAVE_SSE2_INLINE
64 #undef COMPILE_TEMPLATE_MMXEXT
65 #undef COMPILE_TEMPLATE_SSE2
66 #undef COMPILE_TEMPLATE_SSSE3
67 #define COMPILE_TEMPLATE_MMXEXT 0
68 #define COMPILE_TEMPLATE_SSE2   1
69 #define COMPILE_TEMPLATE_SSSE3  0
70 #undef RENAME
71 #undef RENAME_FDCT
72 #define RENAME(a)      a ## _sse2
73 #define RENAME_FDCT(a) a ## _sse2
74 #include "mpegvideoenc_template.c"
75 #endif /* HAVE_SSE2_INLINE */
76
77 #if HAVE_SSSE3_INLINE
78 #undef COMPILE_TEMPLATE_MMXEXT
79 #undef COMPILE_TEMPLATE_SSE2
80 #undef COMPILE_TEMPLATE_SSSE3
81 #define COMPILE_TEMPLATE_MMXEXT 0
82 #define COMPILE_TEMPLATE_SSE2   1
83 #define COMPILE_TEMPLATE_SSSE3  1
84 #undef RENAME
85 #undef RENAME_FDCT
86 #define RENAME(a)      a ## _ssse3
87 #define RENAME_FDCT(a) a ## _sse2
88 #include "mpegvideoenc_template.c"
89 #endif /* HAVE_SSSE3_INLINE */
90
91 #endif /* HAVE_6REGS */
92
93 #if HAVE_INLINE_ASM
94 #if HAVE_MMX_INLINE
95 static void  denoise_dct_mmx(MpegEncContext *s, int16_t *block){
96     const int intra= s->mb_intra;
97     int *sum= s->dct_error_sum[intra];
98     uint16_t *offset= s->dct_offset[intra];
99
100     s->dct_count[intra]++;
101
102     __asm__ volatile(
103         "pxor %%mm7, %%mm7                      \n\t"
104         "1:                                     \n\t"
105         "pxor %%mm0, %%mm0                      \n\t"
106         "pxor %%mm1, %%mm1                      \n\t"
107         "movq (%0), %%mm2                       \n\t"
108         "movq 8(%0), %%mm3                      \n\t"
109         "pcmpgtw %%mm2, %%mm0                   \n\t"
110         "pcmpgtw %%mm3, %%mm1                   \n\t"
111         "pxor %%mm0, %%mm2                      \n\t"
112         "pxor %%mm1, %%mm3                      \n\t"
113         "psubw %%mm0, %%mm2                     \n\t"
114         "psubw %%mm1, %%mm3                     \n\t"
115         "movq %%mm2, %%mm4                      \n\t"
116         "movq %%mm3, %%mm5                      \n\t"
117         "psubusw (%2), %%mm2                    \n\t"
118         "psubusw 8(%2), %%mm3                   \n\t"
119         "pxor %%mm0, %%mm2                      \n\t"
120         "pxor %%mm1, %%mm3                      \n\t"
121         "psubw %%mm0, %%mm2                     \n\t"
122         "psubw %%mm1, %%mm3                     \n\t"
123         "movq %%mm2, (%0)                       \n\t"
124         "movq %%mm3, 8(%0)                      \n\t"
125         "movq %%mm4, %%mm2                      \n\t"
126         "movq %%mm5, %%mm3                      \n\t"
127         "punpcklwd %%mm7, %%mm4                 \n\t"
128         "punpckhwd %%mm7, %%mm2                 \n\t"
129         "punpcklwd %%mm7, %%mm5                 \n\t"
130         "punpckhwd %%mm7, %%mm3                 \n\t"
131         "paddd (%1), %%mm4                      \n\t"
132         "paddd 8(%1), %%mm2                     \n\t"
133         "paddd 16(%1), %%mm5                    \n\t"
134         "paddd 24(%1), %%mm3                    \n\t"
135         "movq %%mm4, (%1)                       \n\t"
136         "movq %%mm2, 8(%1)                      \n\t"
137         "movq %%mm5, 16(%1)                     \n\t"
138         "movq %%mm3, 24(%1)                     \n\t"
139         "add $16, %0                            \n\t"
140         "add $32, %1                            \n\t"
141         "add $16, %2                            \n\t"
142         "cmp %3, %0                             \n\t"
143             " jb 1b                             \n\t"
144         : "+r" (block), "+r" (sum), "+r" (offset)
145         : "r"(block+64)
146     );
147 }
148 #endif /* HAVE_MMX_INLINE */
149
150 #if HAVE_SSE2_INLINE
151 static void  denoise_dct_sse2(MpegEncContext *s, int16_t *block){
152     const int intra= s->mb_intra;
153     int *sum= s->dct_error_sum[intra];
154     uint16_t *offset= s->dct_offset[intra];
155
156     s->dct_count[intra]++;
157
158     __asm__ volatile(
159         "pxor %%xmm7, %%xmm7                    \n\t"
160         "1:                                     \n\t"
161         "pxor %%xmm0, %%xmm0                    \n\t"
162         "pxor %%xmm1, %%xmm1                    \n\t"
163         "movdqa (%0), %%xmm2                    \n\t"
164         "movdqa 16(%0), %%xmm3                  \n\t"
165         "pcmpgtw %%xmm2, %%xmm0                 \n\t"
166         "pcmpgtw %%xmm3, %%xmm1                 \n\t"
167         "pxor %%xmm0, %%xmm2                    \n\t"
168         "pxor %%xmm1, %%xmm3                    \n\t"
169         "psubw %%xmm0, %%xmm2                   \n\t"
170         "psubw %%xmm1, %%xmm3                   \n\t"
171         "movdqa %%xmm2, %%xmm4                  \n\t"
172         "movdqa %%xmm3, %%xmm5                  \n\t"
173         "psubusw (%2), %%xmm2                   \n\t"
174         "psubusw 16(%2), %%xmm3                 \n\t"
175         "pxor %%xmm0, %%xmm2                    \n\t"
176         "pxor %%xmm1, %%xmm3                    \n\t"
177         "psubw %%xmm0, %%xmm2                   \n\t"
178         "psubw %%xmm1, %%xmm3                   \n\t"
179         "movdqa %%xmm2, (%0)                    \n\t"
180         "movdqa %%xmm3, 16(%0)                  \n\t"
181         "movdqa %%xmm4, %%xmm6                  \n\t"
182         "movdqa %%xmm5, %%xmm0                  \n\t"
183         "punpcklwd %%xmm7, %%xmm4               \n\t"
184         "punpckhwd %%xmm7, %%xmm6               \n\t"
185         "punpcklwd %%xmm7, %%xmm5               \n\t"
186         "punpckhwd %%xmm7, %%xmm0               \n\t"
187         "paddd (%1), %%xmm4                     \n\t"
188         "paddd 16(%1), %%xmm6                   \n\t"
189         "paddd 32(%1), %%xmm5                   \n\t"
190         "paddd 48(%1), %%xmm0                   \n\t"
191         "movdqa %%xmm4, (%1)                    \n\t"
192         "movdqa %%xmm6, 16(%1)                  \n\t"
193         "movdqa %%xmm5, 32(%1)                  \n\t"
194         "movdqa %%xmm0, 48(%1)                  \n\t"
195         "add $32, %0                            \n\t"
196         "add $64, %1                            \n\t"
197         "add $32, %2                            \n\t"
198         "cmp %3, %0                             \n\t"
199             " jb 1b                             \n\t"
200         : "+r" (block), "+r" (sum), "+r" (offset)
201         : "r"(block+64)
202           XMM_CLOBBERS_ONLY("%xmm0", "%xmm1", "%xmm2", "%xmm3",
203                             "%xmm4", "%xmm5", "%xmm6", "%xmm7")
204     );
205 }
206 #endif /* HAVE_SSE2_INLINE */
207 #endif /* HAVE_INLINE_ASM */
208
209 av_cold void ff_dct_encode_init_x86(MpegEncContext *s)
210 {
211     const int dct_algo = s->avctx->dct_algo;
212
213     if (dct_algo == FF_DCT_AUTO || dct_algo == FF_DCT_MMX) {
214 #if HAVE_MMX_INLINE
215         int cpu_flags = av_get_cpu_flags();
216         if (INLINE_MMX(cpu_flags)) {
217 #if HAVE_6REGS
218             s->dct_quantize = dct_quantize_mmx;
219 #endif
220             s->denoise_dct  = denoise_dct_mmx;
221         }
222 #endif
223 #if HAVE_6REGS && HAVE_MMXEXT_INLINE
224         if (INLINE_MMXEXT(cpu_flags))
225             s->dct_quantize = dct_quantize_mmxext;
226 #endif
227 #if HAVE_SSE2_INLINE
228         if (INLINE_SSE2(cpu_flags)) {
229 #if HAVE_6REGS
230             s->dct_quantize = dct_quantize_sse2;
231 #endif
232             s->denoise_dct  = denoise_dct_sse2;
233         }
234 #endif
235 #if HAVE_6REGS && HAVE_SSSE3_INLINE
236         if (INLINE_SSSE3(cpu_flags))
237             s->dct_quantize = dct_quantize_ssse3;
238 #endif
239     }
240 }