annotate ppc/h264_altivec.c @ 5094:ce57e3f2b2a7 libavcodec

h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
author lu_zero
date Sun, 03 Jun 2007 13:27:44 +0000
parents 41cabe79ba25
children ad0c45e0008c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
1 /*
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
2 * Copyright (c) 2004 Romain Dolbeau <romain@dolbeau.org>
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
3 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3667
diff changeset
4 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3667
diff changeset
5 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3667
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3667
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
10 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3667
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
14 * Lesser General Public License for more details.
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
15 *
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3667
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2979
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
19 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2236
diff changeset
20
5010
d5ba514e3f4a Add libavcodec to compiler include flags in order to simplify header
diego
parents: 4294
diff changeset
21 #include "dsputil.h"
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
22
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
23 #include "gcc_fixes.h"
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
24
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
25 #include "dsputil_altivec.h"
4260
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
26 #include "types_altivec.h"
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
27
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
28 #define PUT_OP_U8_ALTIVEC(d, s, dst) d = s
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
29 #define AVG_OP_U8_ALTIVEC(d, s, dst) d = vec_avg(dst, s)
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
30
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
31 #define OP_U8_ALTIVEC PUT_OP_U8_ALTIVEC
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
32 #define PREFIX_h264_chroma_mc8_altivec put_h264_chroma_mc8_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
33 #define PREFIX_h264_chroma_mc8_num altivec_put_h264_chroma_mc8_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
34 #define PREFIX_h264_qpel16_h_lowpass_altivec put_h264_qpel16_h_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
35 #define PREFIX_h264_qpel16_h_lowpass_num altivec_put_h264_qpel16_h_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
36 #define PREFIX_h264_qpel16_v_lowpass_altivec put_h264_qpel16_v_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
37 #define PREFIX_h264_qpel16_v_lowpass_num altivec_put_h264_qpel16_v_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
38 #define PREFIX_h264_qpel16_hv_lowpass_altivec put_h264_qpel16_hv_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
39 #define PREFIX_h264_qpel16_hv_lowpass_num altivec_put_h264_qpel16_hv_lowpass_num
3577
5be5a936c8a9 Clean up:make dsputil subfile names consistent
lu_zero
parents: 3544
diff changeset
40 #include "h264_template_altivec.c"
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
41 #undef OP_U8_ALTIVEC
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
42 #undef PREFIX_h264_chroma_mc8_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
43 #undef PREFIX_h264_chroma_mc8_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
44 #undef PREFIX_h264_qpel16_h_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
45 #undef PREFIX_h264_qpel16_h_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
46 #undef PREFIX_h264_qpel16_v_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
47 #undef PREFIX_h264_qpel16_v_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
48 #undef PREFIX_h264_qpel16_hv_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
49 #undef PREFIX_h264_qpel16_hv_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
50
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
51 #define OP_U8_ALTIVEC AVG_OP_U8_ALTIVEC
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
52 #define PREFIX_h264_chroma_mc8_altivec avg_h264_chroma_mc8_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
53 #define PREFIX_h264_chroma_mc8_num altivec_avg_h264_chroma_mc8_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
54 #define PREFIX_h264_qpel16_h_lowpass_altivec avg_h264_qpel16_h_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
55 #define PREFIX_h264_qpel16_h_lowpass_num altivec_avg_h264_qpel16_h_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
56 #define PREFIX_h264_qpel16_v_lowpass_altivec avg_h264_qpel16_v_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
57 #define PREFIX_h264_qpel16_v_lowpass_num altivec_avg_h264_qpel16_v_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
58 #define PREFIX_h264_qpel16_hv_lowpass_altivec avg_h264_qpel16_hv_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
59 #define PREFIX_h264_qpel16_hv_lowpass_num altivec_avg_h264_qpel16_hv_lowpass_num
3577
5be5a936c8a9 Clean up:make dsputil subfile names consistent
lu_zero
parents: 3544
diff changeset
60 #include "h264_template_altivec.c"
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
61 #undef OP_U8_ALTIVEC
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
62 #undef PREFIX_h264_chroma_mc8_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
63 #undef PREFIX_h264_chroma_mc8_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
64 #undef PREFIX_h264_qpel16_h_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
65 #undef PREFIX_h264_qpel16_h_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
66 #undef PREFIX_h264_qpel16_v_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
67 #undef PREFIX_h264_qpel16_v_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
68 #undef PREFIX_h264_qpel16_hv_lowpass_altivec
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
69 #undef PREFIX_h264_qpel16_hv_lowpass_num
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
70
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
71 #define H264_MC(OPNAME, SIZE, CODETYPE) \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
72 static void OPNAME ## h264_qpel ## SIZE ## _mc00_ ## CODETYPE (uint8_t *dst, uint8_t *src, int stride){\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
73 OPNAME ## pixels ## SIZE ## _ ## CODETYPE(dst, src, stride, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
74 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
75 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
76 static void OPNAME ## h264_qpel ## SIZE ## _mc10_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){ \
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
77 DECLARE_ALIGNED_16(uint8_t, half[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
78 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
79 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src, half, stride, stride, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
80 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
81 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
82 static void OPNAME ## h264_qpel ## SIZE ## _mc20_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
83 OPNAME ## h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(dst, src, stride, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
84 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
85 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
86 static void OPNAME ## h264_qpel ## SIZE ## _mc30_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
87 DECLARE_ALIGNED_16(uint8_t, half[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
88 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
89 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src+1, half, stride, stride, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
90 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
91 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
92 static void OPNAME ## h264_qpel ## SIZE ## _mc01_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
93 DECLARE_ALIGNED_16(uint8_t, half[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
94 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
95 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src, half, stride, stride, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
96 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
97 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
98 static void OPNAME ## h264_qpel ## SIZE ## _mc02_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
99 OPNAME ## h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(dst, src, stride, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
100 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
101 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
102 static void OPNAME ## h264_qpel ## SIZE ## _mc03_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
103 DECLARE_ALIGNED_16(uint8_t, half[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
104 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
105 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src+stride, half, stride, stride, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
106 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
107 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
108 static void OPNAME ## h264_qpel ## SIZE ## _mc11_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
109 DECLARE_ALIGNED_16(uint8_t, halfH[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
110 DECLARE_ALIGNED_16(uint8_t, halfV[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
111 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
112 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
113 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
114 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
115 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
116 static void OPNAME ## h264_qpel ## SIZE ## _mc31_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
117 DECLARE_ALIGNED_16(uint8_t, halfH[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
118 DECLARE_ALIGNED_16(uint8_t, halfV[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
119 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
120 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
121 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
122 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
123 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
124 static void OPNAME ## h264_qpel ## SIZE ## _mc13_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
125 DECLARE_ALIGNED_16(uint8_t, halfH[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
126 DECLARE_ALIGNED_16(uint8_t, halfV[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
127 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
128 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
129 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
130 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
131 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
132 static void OPNAME ## h264_qpel ## SIZE ## _mc33_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
133 DECLARE_ALIGNED_16(uint8_t, halfH[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
134 DECLARE_ALIGNED_16(uint8_t, halfV[SIZE*SIZE]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
135 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
136 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
137 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
138 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
139 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
140 static void OPNAME ## h264_qpel ## SIZE ## _mc22_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
141 DECLARE_ALIGNED_16(int16_t, tmp[SIZE*(SIZE+8)]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
142 OPNAME ## h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(dst, tmp, src, stride, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
143 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
144 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
145 static void OPNAME ## h264_qpel ## SIZE ## _mc21_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
146 DECLARE_ALIGNED_16(uint8_t, halfH[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
147 DECLARE_ALIGNED_16(uint8_t, halfHV[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
148 DECLARE_ALIGNED_16(int16_t, tmp[SIZE*(SIZE+8)]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
149 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
150 put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
151 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfHV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
152 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
153 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
154 static void OPNAME ## h264_qpel ## SIZE ## _mc23_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
155 DECLARE_ALIGNED_16(uint8_t, halfH[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
156 DECLARE_ALIGNED_16(uint8_t, halfHV[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
157 DECLARE_ALIGNED_16(int16_t, tmp[SIZE*(SIZE+8)]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
158 put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
159 put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
160 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfHV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
161 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
162 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
163 static void OPNAME ## h264_qpel ## SIZE ## _mc12_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
164 DECLARE_ALIGNED_16(uint8_t, halfV[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
165 DECLARE_ALIGNED_16(uint8_t, halfHV[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
166 DECLARE_ALIGNED_16(int16_t, tmp[SIZE*(SIZE+8)]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
167 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
168 put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
169 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfV, halfHV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
170 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
171 \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
172 static void OPNAME ## h264_qpel ## SIZE ## _mc32_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
3544
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
173 DECLARE_ALIGNED_16(uint8_t, halfV[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
174 DECLARE_ALIGNED_16(uint8_t, halfHV[SIZE*SIZE]);\
8bb61d9a2c40 avoid alignment hacks, luckly gcc does the right thing on arches different from x86
lu_zero
parents: 3337
diff changeset
175 DECLARE_ALIGNED_16(int16_t, tmp[SIZE*(SIZE+8)]);\
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
176 put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
177 put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
178 OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfV, halfHV, stride, SIZE, SIZE);\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
179 }\
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
180
3667
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
181 /* this code assume that stride % 16 == 0 */
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
182 void put_no_rnd_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src, int stride, int h, int x, int y) {
5019
41cabe79ba25 use macro Use DECLARE_ALIGNED_16 to align stack-allocated variables
gpoirier
parents: 5010
diff changeset
183 DECLARE_ALIGNED_16(signed int, ABCD[4]) =
3667
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
184 {((8 - x) * (8 - y)),
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
185 ((x) * (8 - y)),
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
186 ((8 - x) * (y)),
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
187 ((x) * (y))};
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
188 register int i;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
189 vector unsigned char fperm;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
190 const vector signed int vABCD = vec_ld(0, ABCD);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
191 const vector signed short vA = vec_splat((vector signed short)vABCD, 1);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
192 const vector signed short vB = vec_splat((vector signed short)vABCD, 3);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
193 const vector signed short vC = vec_splat((vector signed short)vABCD, 5);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
194 const vector signed short vD = vec_splat((vector signed short)vABCD, 7);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
195 const vector signed int vzero = vec_splat_s32(0);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
196 const vector signed short v28ss = vec_sub(vec_sl(vec_splat_s16(1),vec_splat_u16(5)),vec_splat_s16(4));
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
197 const vector unsigned short v6us = vec_splat_u16(6);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
198 register int loadSecond = (((unsigned long)src) % 16) <= 7 ? 0 : 1;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
199 register int reallyBadAlign = (((unsigned long)src) % 16) == 15 ? 1 : 0;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
200
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
201 vector unsigned char vsrcAuc, vsrcBuc, vsrcperm0, vsrcperm1;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
202 vector unsigned char vsrc0uc, vsrc1uc;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
203 vector signed short vsrc0ssH, vsrc1ssH;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
204 vector unsigned char vsrcCuc, vsrc2uc, vsrc3uc;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
205 vector signed short vsrc2ssH, vsrc3ssH, psum;
4254
bd7f921813b1 Unused variable removed
lu_zero
parents: 3947
diff changeset
206 vector unsigned char vdst, ppsum, fsum;
3667
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
207
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
208 if (((unsigned long)dst) % 16 == 0) {
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
209 fperm = (vector unsigned char)AVV(0x10, 0x11, 0x12, 0x13,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
210 0x14, 0x15, 0x16, 0x17,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
211 0x08, 0x09, 0x0A, 0x0B,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
212 0x0C, 0x0D, 0x0E, 0x0F);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
213 } else {
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
214 fperm = (vector unsigned char)AVV(0x00, 0x01, 0x02, 0x03,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
215 0x04, 0x05, 0x06, 0x07,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
216 0x18, 0x19, 0x1A, 0x1B,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
217 0x1C, 0x1D, 0x1E, 0x1F);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
218 }
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
219
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
220 vsrcAuc = vec_ld(0, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
221
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
222 if (loadSecond)
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
223 vsrcBuc = vec_ld(16, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
224 vsrcperm0 = vec_lvsl(0, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
225 vsrcperm1 = vec_lvsl(1, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
226
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
227 vsrc0uc = vec_perm(vsrcAuc, vsrcBuc, vsrcperm0);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
228 if (reallyBadAlign)
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
229 vsrc1uc = vsrcBuc;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
230 else
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
231 vsrc1uc = vec_perm(vsrcAuc, vsrcBuc, vsrcperm1);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
232
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
233 vsrc0ssH = (vector signed short)vec_mergeh((vector unsigned char)vzero,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
234 (vector unsigned char)vsrc0uc);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
235 vsrc1ssH = (vector signed short)vec_mergeh((vector unsigned char)vzero,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
236 (vector unsigned char)vsrc1uc);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
237
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
238 if (!loadSecond) {// -> !reallyBadAlign
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
239 for (i = 0 ; i < h ; i++) {
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
240
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
241
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
242 vsrcCuc = vec_ld(stride + 0, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
243
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
244 vsrc2uc = vec_perm(vsrcCuc, vsrcCuc, vsrcperm0);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
245 vsrc3uc = vec_perm(vsrcCuc, vsrcCuc, vsrcperm1);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
246
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
247 vsrc2ssH = (vector signed short)vec_mergeh((vector unsigned char)vzero,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
248 (vector unsigned char)vsrc2uc);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
249 vsrc3ssH = (vector signed short)vec_mergeh((vector unsigned char)vzero,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
250 (vector unsigned char)vsrc3uc);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
251
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
252 psum = vec_mladd(vA, vsrc0ssH, vec_splat_s16(0));
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
253 psum = vec_mladd(vB, vsrc1ssH, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
254 psum = vec_mladd(vC, vsrc2ssH, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
255 psum = vec_mladd(vD, vsrc3ssH, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
256 psum = vec_add(v28ss, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
257 psum = vec_sra(psum, v6us);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
258
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
259 vdst = vec_ld(0, dst);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
260 ppsum = (vector unsigned char)vec_packsu(psum, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
261 fsum = vec_perm(vdst, ppsum, fperm);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
262
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
263 vec_st(fsum, 0, dst);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
264
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
265 vsrc0ssH = vsrc2ssH;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
266 vsrc1ssH = vsrc3ssH;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
267
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
268 dst += stride;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
269 src += stride;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
270 }
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
271 } else {
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
272 vector unsigned char vsrcDuc;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
273 for (i = 0 ; i < h ; i++) {
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
274 vsrcCuc = vec_ld(stride + 0, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
275 vsrcDuc = vec_ld(stride + 16, src);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
276
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
277 vsrc2uc = vec_perm(vsrcCuc, vsrcDuc, vsrcperm0);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
278 if (reallyBadAlign)
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
279 vsrc3uc = vsrcDuc;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
280 else
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
281 vsrc3uc = vec_perm(vsrcCuc, vsrcDuc, vsrcperm1);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
282
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
283 vsrc2ssH = (vector signed short)vec_mergeh((vector unsigned char)vzero,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
284 (vector unsigned char)vsrc2uc);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
285 vsrc3ssH = (vector signed short)vec_mergeh((vector unsigned char)vzero,
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
286 (vector unsigned char)vsrc3uc);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
287
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
288 psum = vec_mladd(vA, vsrc0ssH, vec_splat_s16(0));
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
289 psum = vec_mladd(vB, vsrc1ssH, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
290 psum = vec_mladd(vC, vsrc2ssH, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
291 psum = vec_mladd(vD, vsrc3ssH, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
292 psum = vec_add(v28ss, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
293 psum = vec_sr(psum, v6us);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
294
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
295 vdst = vec_ld(0, dst);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
296 ppsum = (vector unsigned char)vec_pack(psum, psum);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
297 fsum = vec_perm(vdst, ppsum, fperm);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
298
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
299 vec_st(fsum, 0, dst);
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
300
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
301 vsrc0ssH = vsrc2ssH;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
302 vsrc1ssH = vsrc3ssH;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
303
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
304 dst += stride;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
305 src += stride;
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
306 }
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
307 }
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
308 }
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
309
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
310 static inline void put_pixels16_l2_altivec( uint8_t * dst, const uint8_t * src1,
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
311 const uint8_t * src2, int dst_stride,
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
312 int src_stride1, int h)
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
313 {
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
314 int i;
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
315 vector unsigned char a, b, d, tmp1, tmp2, mask, mask_, edges, align;
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
316
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
317 mask_ = vec_lvsl(0, src2);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
318
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
319 for (i = 0; i < h; i++) {
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
320
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
321 tmp1 = vec_ld(i * src_stride1, src1);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
322 mask = vec_lvsl(i * src_stride1, src1);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
323 tmp2 = vec_ld(i * src_stride1 + 15, src1);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
324
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
325 a = vec_perm(tmp1, tmp2, mask);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
326
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
327 tmp1 = vec_ld(i * 16, src2);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
328 tmp2 = vec_ld(i * 16 + 15, src2);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
329
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
330 b = vec_perm(tmp1, tmp2, mask_);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
331
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
332 tmp1 = vec_ld(0, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
333 mask = vec_lvsl(0, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
334 tmp2 = vec_ld(15, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
335
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
336 d = vec_avg(a, b);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
338 edges = vec_perm(tmp2, tmp1, mask);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
339
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
340 align = vec_lvsr(0, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
341
3659
dd55fb216497 Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents: 3658
diff changeset
342 tmp2 = vec_perm(d, edges, align);
3658
2a113750d778 Revert previous commit
lu_zero
parents: 3583
diff changeset
343 tmp1 = vec_perm(edges, d, align);
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
344
3659
dd55fb216497 Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents: 3658
diff changeset
345 vec_st(tmp2, 15, dst);
3583
562758eaf7bf 10l, thanks to Emanuele Giaquinta <exg@gentoo.org> for testing and finding the issue
lu_zero
parents: 3577
diff changeset
346 vec_st(tmp1, 0 , dst);
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
347
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
348 dst += dst_stride;
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
349 }
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
350 }
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
351
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
352 static inline void avg_pixels16_l2_altivec( uint8_t * dst, const uint8_t * src1,
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
353 const uint8_t * src2, int dst_stride,
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
354 int src_stride1, int h)
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
355 {
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
356 int i;
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
357 vector unsigned char a, b, d, tmp1, tmp2, mask, mask_, edges, align;
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
358
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
359 mask_ = vec_lvsl(0, src2);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
360
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
361 for (i = 0; i < h; i++) {
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
362
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
363 tmp1 = vec_ld(i * src_stride1, src1);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
364 mask = vec_lvsl(i * src_stride1, src1);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
365 tmp2 = vec_ld(i * src_stride1 + 15, src1);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
366
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
367 a = vec_perm(tmp1, tmp2, mask);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
368
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
369 tmp1 = vec_ld(i * 16, src2);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
370 tmp2 = vec_ld(i * 16 + 15, src2);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
371
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
372 b = vec_perm(tmp1, tmp2, mask_);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
373
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
374 tmp1 = vec_ld(0, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
375 mask = vec_lvsl(0, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
376 tmp2 = vec_ld(15, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
377
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
378 d = vec_avg(vec_perm(tmp1, tmp2, mask), vec_avg(a, b));
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
379
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
380 edges = vec_perm(tmp2, tmp1, mask);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
381
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
382 align = vec_lvsr(0, dst);
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
383
3659
dd55fb216497 Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents: 3658
diff changeset
384 tmp2 = vec_perm(d, edges, align);
3658
2a113750d778 Revert previous commit
lu_zero
parents: 3583
diff changeset
385 tmp1 = vec_perm(edges, d, align);
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
386
3659
dd55fb216497 Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents: 3658
diff changeset
387 vec_st(tmp2, 15, dst);
3583
562758eaf7bf 10l, thanks to Emanuele Giaquinta <exg@gentoo.org> for testing and finding the issue
lu_zero
parents: 3577
diff changeset
388 vec_st(tmp1, 0 , dst);
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
389
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
390 dst += dst_stride;
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
391 }
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
392 }
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
393
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
394 /* Implemented but could be faster
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
395 #define put_pixels16_l2_altivec(d,s1,s2,ds,s1s,h) put_pixels16_l2(d,s1,s2,ds,s1s,16,h)
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
396 #define avg_pixels16_l2_altivec(d,s1,s2,ds,s1s,h) avg_pixels16_l2(d,s1,s2,ds,s1s,16,h)
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
397 */
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
398
3337
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
399 H264_MC(put_, 16, altivec)
bec1eb6d3746 put_pixels16_l2_altivec and avg_pixels16_l2_altivec
lu_zero
parents: 3089
diff changeset
400 H264_MC(avg_, 16, altivec)
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
401
4260
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
402
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
403 /****************************************************************************
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
404 * IDCT transform:
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
405 ****************************************************************************/
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
406
5094
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
407 #define VEC_1D_DCT(vb0,vb1,vb2,vb3,va0,va1,va2,va3) \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
408 /* 1st stage */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
409 vz0 = vec_add(vb0,vb2); /* temp[0] = Y[0] + Y[2] */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
410 vz1 = vec_sub(vb0,vb2); /* temp[1] = Y[0] - Y[2] */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
411 vz2 = vec_sra(vb1,vec_splat_u16(1)); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
412 vz2 = vec_sub(vz2,vb3); /* temp[2] = Y[1].1/2 - Y[3] */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
413 vz3 = vec_sra(vb3,vec_splat_u16(1)); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
414 vz3 = vec_add(vb1,vz3); /* temp[3] = Y[1] + Y[3].1/2 */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
415 /* 2nd stage: output */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
416 va0 = vec_add(vz0,vz3); /* x[0] = temp[0] + temp[3] */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
417 va1 = vec_add(vz1,vz2); /* x[1] = temp[1] + temp[2] */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
418 va2 = vec_sub(vz1,vz2); /* x[2] = temp[1] - temp[2] */ \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
419 va3 = vec_sub(vz0,vz3) /* x[3] = temp[0] - temp[3] */
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
420
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
421 #define VEC_TRANSPOSE_4(a0,a1,a2,a3,b0,b1,b2,b3) \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
422 b0 = vec_mergeh( a0, a0 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
423 b1 = vec_mergeh( a1, a0 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
424 b2 = vec_mergeh( a2, a0 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
425 b3 = vec_mergeh( a3, a0 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
426 a0 = vec_mergeh( b0, b2 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
427 a1 = vec_mergel( b0, b2 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
428 a2 = vec_mergeh( b1, b3 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
429 a3 = vec_mergel( b1, b3 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
430 b0 = vec_mergeh( a0, a2 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
431 b1 = vec_mergel( a0, a2 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
432 b2 = vec_mergeh( a1, a3 ); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
433 b3 = vec_mergel( a1, a3 )
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
434
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
435 #define VEC_LOAD_U8_ADD_S16_STORE_U8(va) \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
436 vdst_orig = vec_ld(0, dst); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
437 vdst = vec_perm(vdst_orig, zero_u8v, vdst_mask); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
438 vdst_ss = (vec_s16_t) vec_mergeh(zero_u8v, vdst); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
439 va = vec_add(va, vdst_ss); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
440 va_u8 = vec_packsu(va, zero_s16v); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
441 va_u32 = vec_splat((vec_u32_t)va_u8, 0); \
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
442 vec_ste(va_u32, element, (uint32_t*)dst);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
443
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
444 static void ff_h264_idct_add_altivec(uint8_t *dst, DCTELEM *block, int stride)
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
445 {
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
446 vec_s16_t va0, va1, va2, va3;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
447 vec_s16_t vz0, vz1, vz2, vz3;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
448 vec_s16_t vtmp0, vtmp1, vtmp2, vtmp3;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
449 vec_u8_t va_u8;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
450 vec_u32_t va_u32;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
451 vec_s16_t vdst_ss;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
452 const vec_u16_t v6us = vec_splat_u16(6);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
453 vec_u8_t vdst, vdst_orig;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
454 vec_u8_t vdst_mask = vec_lvsl(0, dst);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
455 int element = ((unsigned long)dst & 0xf) >> 2;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
456 LOAD_ZERO;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
457
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
458 block[0] += 32; /* add 32 as a DC-level for rounding */
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
459
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
460 vtmp0 = vec_ld(0,block);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
461 vtmp1 = vec_sld(vtmp0, vtmp0, 8);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
462 vtmp2 = vec_ld(16,block);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
463 vtmp3 = vec_sld(vtmp2, vtmp2, 8);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
464
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
465 VEC_1D_DCT(vtmp0,vtmp1,vtmp2,vtmp3,va0,va1,va2,va3);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
466 VEC_TRANSPOSE_4(va0,va1,va2,va3,vtmp0,vtmp1,vtmp2,vtmp3);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
467 VEC_1D_DCT(vtmp0,vtmp1,vtmp2,vtmp3,va0,va1,va2,va3);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
468
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
469 va0 = vec_sra(va0,v6us);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
470 va1 = vec_sra(va1,v6us);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
471 va2 = vec_sra(va2,v6us);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
472 va3 = vec_sra(va3,v6us);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
473
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
474 VEC_LOAD_U8_ADD_S16_STORE_U8(va0);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
475 dst += stride;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
476 VEC_LOAD_U8_ADD_S16_STORE_U8(va1);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
477 dst += stride;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
478 VEC_LOAD_U8_ADD_S16_STORE_U8(va2);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
479 dst += stride;
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
480 VEC_LOAD_U8_ADD_S16_STORE_U8(va3);
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
481 }
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
482
4260
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
483 #define IDCT8_1D_ALTIVEC(s0, s1, s2, s3, s4, s5, s6, s7, d0, d1, d2, d3, d4, d5, d6, d7) {\
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
484 /* a0 = SRC(0) + SRC(4); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
485 vec_s16_t a0v = vec_add(s0, s4); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
486 /* a2 = SRC(0) - SRC(4); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
487 vec_s16_t a2v = vec_sub(s0, s4); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
488 /* a4 = (SRC(2)>>1) - SRC(6); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
489 vec_s16_t a4v = vec_sub(vec_sra(s2, onev), s6); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
490 /* a6 = (SRC(6)>>1) + SRC(2); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
491 vec_s16_t a6v = vec_add(vec_sra(s6, onev), s2); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
492 /* b0 = a0 + a6; */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
493 vec_s16_t b0v = vec_add(a0v, a6v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
494 /* b2 = a2 + a4; */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
495 vec_s16_t b2v = vec_add(a2v, a4v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
496 /* b4 = a2 - a4; */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
497 vec_s16_t b4v = vec_sub(a2v, a4v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
498 /* b6 = a0 - a6; */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
499 vec_s16_t b6v = vec_sub(a0v, a6v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
500 /* a1 = SRC(5) - SRC(3) - SRC(7) - (SRC(7)>>1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
501 /* a1 = (SRC(5)-SRC(3)) - (SRC(7) + (SRC(7)>>1)); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
502 vec_s16_t a1v = vec_sub( vec_sub(s5, s3), vec_add(s7, vec_sra(s7, onev)) ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
503 /* a3 = SRC(7) + SRC(1) - SRC(3) - (SRC(3)>>1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
504 /* a3 = (SRC(7)+SRC(1)) - (SRC(3) + (SRC(3)>>1)); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
505 vec_s16_t a3v = vec_sub( vec_add(s7, s1), vec_add(s3, vec_sra(s3, onev)) );\
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
506 /* a5 = SRC(7) - SRC(1) + SRC(5) + (SRC(5)>>1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
507 /* a5 = (SRC(7)-SRC(1)) + SRC(5) + (SRC(5)>>1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
508 vec_s16_t a5v = vec_add( vec_sub(s7, s1), vec_add(s5, vec_sra(s5, onev)) );\
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
509 /* a7 = SRC(5)+SRC(3) + SRC(1) + (SRC(1)>>1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
510 vec_s16_t a7v = vec_add( vec_add(s5, s3), vec_add(s1, vec_sra(s1, onev)) );\
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
511 /* b1 = (a7>>2) + a1; */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
512 vec_s16_t b1v = vec_add( vec_sra(a7v, twov), a1v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
513 /* b3 = a3 + (a5>>2); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
514 vec_s16_t b3v = vec_add(a3v, vec_sra(a5v, twov)); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
515 /* b5 = (a3>>2) - a5; */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
516 vec_s16_t b5v = vec_sub( vec_sra(a3v, twov), a5v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
517 /* b7 = a7 - (a1>>2); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
518 vec_s16_t b7v = vec_sub( a7v, vec_sra(a1v, twov)); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
519 /* DST(0, b0 + b7); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
520 d0 = vec_add(b0v, b7v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
521 /* DST(1, b2 + b5); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
522 d1 = vec_add(b2v, b5v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
523 /* DST(2, b4 + b3); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
524 d2 = vec_add(b4v, b3v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
525 /* DST(3, b6 + b1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
526 d3 = vec_add(b6v, b1v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
527 /* DST(4, b6 - b1); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
528 d4 = vec_sub(b6v, b1v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
529 /* DST(5, b4 - b3); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
530 d5 = vec_sub(b4v, b3v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
531 /* DST(6, b2 - b5); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
532 d6 = vec_sub(b2v, b5v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
533 /* DST(7, b0 - b7); */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
534 d7 = vec_sub(b0v, b7v); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
535 }
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
536
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
537 #define ALTIVEC_STORE_SUM_CLIP(dest, idctv, perm_ldv, perm_stv, sel) { \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
538 /* unaligned load */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
539 vec_u8_t hv = vec_ld( 0, dest ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
540 vec_u8_t lv = vec_ld( 7, dest ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
541 vec_u8_t dstv = vec_perm( hv, lv, (vec_u8_t)perm_ldv ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
542 vec_s16_t idct_sh6 = vec_sra(idctv, sixv); \
4294
d8d019a1728e GCC 3.3 compile fix
gpoirier
parents: 4260
diff changeset
543 vec_u16_t dst16 = (vec_u16_t)vec_mergeh(zero_u8v, dstv); \
4260
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
544 vec_s16_t idstsum = vec_adds(idct_sh6, (vec_s16_t)dst16); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
545 vec_u8_t idstsum8 = vec_packsu(zero_s16v, idstsum); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
546 vec_u8_t edgehv; \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
547 /* unaligned store */ \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
548 vec_u8_t bodyv = vec_perm( idstsum8, idstsum8, perm_stv );\
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
549 vec_u8_t edgelv = vec_perm( sel, zero_u8v, perm_stv ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
550 lv = vec_sel( lv, bodyv, edgelv ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
551 vec_st( lv, 7, dest ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
552 hv = vec_ld( 0, dest ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
553 edgehv = vec_perm( zero_u8v, sel, perm_stv ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
554 hv = vec_sel( hv, bodyv, edgehv ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
555 vec_st( hv, 0, dest ); \
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
556 }
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
557
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
558 void ff_h264_idct8_add_altivec( uint8_t *dst, DCTELEM *dct, int stride ) {
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
559 vec_s16_t s0, s1, s2, s3, s4, s5, s6, s7;
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
560 vec_s16_t d0, d1, d2, d3, d4, d5, d6, d7;
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
561 vec_s16_t idct0, idct1, idct2, idct3, idct4, idct5, idct6, idct7;
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
562
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
563 vec_u8_t perm_ldv = vec_lvsl(0, dst);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
564 vec_u8_t perm_stv = vec_lvsr(8, dst);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
565
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
566 const vec_u16_t onev = vec_splat_u16(1);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
567 const vec_u16_t twov = vec_splat_u16(2);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
568 const vec_u16_t sixv = vec_splat_u16(6);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
569
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
570 const vec_u8_t sel = (vec_u8_t) AVV(0,0,0,0,0,0,0,0,
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
571 -1,-1,-1,-1,-1,-1,-1,-1);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
572 LOAD_ZERO;
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
573
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
574 dct[0] += 32; // rounding for the >>6 at the end
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
575
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
576 s0 = vec_ld(0x00, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
577 s1 = vec_ld(0x10, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
578 s2 = vec_ld(0x20, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
579 s3 = vec_ld(0x30, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
580 s4 = vec_ld(0x40, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
581 s5 = vec_ld(0x50, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
582 s6 = vec_ld(0x60, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
583 s7 = vec_ld(0x70, (int16_t*)dct);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
584
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
585 IDCT8_1D_ALTIVEC(s0, s1, s2, s3, s4, s5, s6, s7,
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
586 d0, d1, d2, d3, d4, d5, d6, d7);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
587
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
588 TRANSPOSE8( d0, d1, d2, d3, d4, d5, d6, d7 );
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
589
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
590 IDCT8_1D_ALTIVEC(d0, d1, d2, d3, d4, d5, d6, d7,
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
591 idct0, idct1, idct2, idct3, idct4, idct5, idct6, idct7);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
592
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
593 ALTIVEC_STORE_SUM_CLIP(&dst[0*stride], idct0, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
594 ALTIVEC_STORE_SUM_CLIP(&dst[1*stride], idct1, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
595 ALTIVEC_STORE_SUM_CLIP(&dst[2*stride], idct2, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
596 ALTIVEC_STORE_SUM_CLIP(&dst[3*stride], idct3, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
597 ALTIVEC_STORE_SUM_CLIP(&dst[4*stride], idct4, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
598 ALTIVEC_STORE_SUM_CLIP(&dst[5*stride], idct5, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
599 ALTIVEC_STORE_SUM_CLIP(&dst[6*stride], idct6, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
600 ALTIVEC_STORE_SUM_CLIP(&dst[7*stride], idct7, perm_ldv, perm_stv, sel);
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
601 }
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
602
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
603 void dsputil_h264_init_ppc(DSPContext* c, AVCodecContext *avctx) {
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2236
diff changeset
604
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
605 #ifdef HAVE_ALTIVEC
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
606 if (has_altivec()) {
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
607 c->put_h264_chroma_pixels_tab[0] = put_h264_chroma_mc8_altivec;
3667
56e60411527c AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
kostya
parents: 3659
diff changeset
608 c->put_no_rnd_h264_chroma_pixels_tab[0] = put_no_rnd_h264_chroma_mc8_altivec;
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
609 c->avg_h264_chroma_pixels_tab[0] = avg_h264_chroma_mc8_altivec;
5094
ce57e3f2b2a7 h264_idct_add_altivec, based on an old patch from Mauricio Alvarez <alvarezATac.upc.edu>, polished by David Conrad <umovimusATgmail.com>
lu_zero
parents: 5019
diff changeset
610 c->h264_idct_add = ff_h264_idct_add_altivec;
4260
0407913ac6c6 Add IDCT8 routine in Altivec. Patch by yours truely with Linux fixes by Luca Barbato
gpoirier
parents: 4254
diff changeset
611 c->h264_idct8_add = ff_h264_idct8_add_altivec;
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
612
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
613 #define dspfunc(PFX, IDX, NUM) \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
614 c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
615 c->PFX ## _pixels_tab[IDX][ 1] = PFX ## NUM ## _mc10_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
616 c->PFX ## _pixels_tab[IDX][ 2] = PFX ## NUM ## _mc20_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
617 c->PFX ## _pixels_tab[IDX][ 3] = PFX ## NUM ## _mc30_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
618 c->PFX ## _pixels_tab[IDX][ 4] = PFX ## NUM ## _mc01_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
619 c->PFX ## _pixels_tab[IDX][ 5] = PFX ## NUM ## _mc11_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
620 c->PFX ## _pixels_tab[IDX][ 6] = PFX ## NUM ## _mc21_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
621 c->PFX ## _pixels_tab[IDX][ 7] = PFX ## NUM ## _mc31_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
622 c->PFX ## _pixels_tab[IDX][ 8] = PFX ## NUM ## _mc02_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
623 c->PFX ## _pixels_tab[IDX][ 9] = PFX ## NUM ## _mc12_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
624 c->PFX ## _pixels_tab[IDX][10] = PFX ## NUM ## _mc22_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
625 c->PFX ## _pixels_tab[IDX][11] = PFX ## NUM ## _mc32_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
626 c->PFX ## _pixels_tab[IDX][12] = PFX ## NUM ## _mc03_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
627 c->PFX ## _pixels_tab[IDX][13] = PFX ## NUM ## _mc13_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
628 c->PFX ## _pixels_tab[IDX][14] = PFX ## NUM ## _mc23_altivec; \
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
629 c->PFX ## _pixels_tab[IDX][15] = PFX ## NUM ## _mc33_altivec
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2236
diff changeset
630
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
631 dspfunc(put_h264_qpel, 0, 16);
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
632 dspfunc(avg_h264_qpel, 0, 16);
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
633 #undef dspfunc
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2236
diff changeset
634
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
635 } else
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
636 #endif /* HAVE_ALTIVEC */
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
637 {
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
638 // Non-AltiVec PPC optimisations
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2236
diff changeset
639
2236
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
640 // ... pending ...
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
641 }
b0102ea621dd h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
diff changeset
642 }