Mercurial > libavcodec.hg
annotate sh4/qpel.c @ 6080:0f1a318ecb22 libavcodec
fix typo
author | jbr |
---|---|
date | Fri, 28 Dec 2007 03:05:49 +0000 |
parents | c16a59ef6a86 |
children | bd11ee6ad834 |
rev | line source |
---|---|
2967 | 1 /* |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
2 * This is optimized for sh, which have post increment addressing (*p++). |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
3 * Some CPU may be index (p[n]) faster than post increment (*p++). |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
4 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
5 * copyright (c) 2001-2003 BERO <bero@geocities.co.jp> |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
6 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
7 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
8 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
9 * FFmpeg is free software; you can redistribute it and/or |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
10 * modify it under the terms of the GNU Lesser General Public |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
11 * 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:
3699
diff
changeset
|
12 * version 2.1 of the License, or (at your option) any later version. |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
13 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
14 * FFmpeg is distributed in the hope that it will be useful, |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
17 * Lesser General Public License for more details. |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
18 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
19 * 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:
3699
diff
changeset
|
20 * License along with FFmpeg; if not, write to the Free Software |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
22 */ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
23 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
24 #define PIXOP2(OPNAME, OP) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
25 /*static inline void OPNAME ## _no_rnd_pixels8_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
26 {\ |
2979 | 27 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
28 OP(LP(dst ),no_rnd_avg32(AV_RN32(src1 ),AV_RN32(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
29 OP(LP(dst+4),no_rnd_avg32(AV_RN32(src1+4),AV_RN32(src2+4)) ); \ |
2979 | 30 src1+=src_stride1; \ |
31 src2+=src_stride2; \ | |
32 dst+=dst_stride; \ | |
33 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
34 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
35 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
36 static inline void OPNAME ## _pixels8_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
37 {\ |
2979 | 38 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
39 OP(LP(dst ),rnd_avg32(AV_RN32(src1 ),AV_RN32(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
40 OP(LP(dst+4),rnd_avg32(AV_RN32(src1+4),AV_RN32(src2+4)) ); \ |
2979 | 41 src1+=src_stride1; \ |
42 src2+=src_stride2; \ | |
43 dst+=dst_stride; \ | |
44 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
45 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
46 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
47 static inline void OPNAME ## _pixels4_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
48 {\ |
2979 | 49 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
50 OP(LP(dst ),rnd_avg32(AV_RN32(src1 ),AV_RN32(src2 )) ); \ |
2979 | 51 src1+=src_stride1; \ |
52 src2+=src_stride2; \ | |
53 dst+=dst_stride; \ | |
54 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
55 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
56 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
57 static inline void OPNAME ## _no_rnd_pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
58 {\ |
2979 | 59 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
60 OP(LP(dst ),no_rnd_avg32(AV_RN32(src1 ),AV_RN32(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
61 OP(LP(dst+4),no_rnd_avg32(AV_RN32(src1+4),AV_RN32(src2+4)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
62 OP(LP(dst+8),no_rnd_avg32(AV_RN32(src1+8),AV_RN32(src2+8)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
63 OP(LP(dst+12),no_rnd_avg32(AV_RN32(src1+12),AV_RN32(src2+12)) ); \ |
2979 | 64 src1+=src_stride1; \ |
65 src2+=src_stride2; \ | |
66 dst+=dst_stride; \ | |
67 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
68 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
69 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
70 static inline void OPNAME ## _pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
71 {\ |
2979 | 72 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
73 OP(LP(dst ),rnd_avg32(AV_RN32(src1 ),AV_RN32(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
74 OP(LP(dst+4),rnd_avg32(AV_RN32(src1+4),AV_RN32(src2+4)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
75 OP(LP(dst+8),rnd_avg32(AV_RN32(src1+8),AV_RN32(src2+8)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
76 OP(LP(dst+12),rnd_avg32(AV_RN32(src1+12),AV_RN32(src2+12)) ); \ |
2979 | 77 src1+=src_stride1; \ |
78 src2+=src_stride2; \ | |
79 dst+=dst_stride; \ | |
80 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
81 }*/\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
82 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
83 static inline void OPNAME ## _pixels4_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
84 {\ |
2979 | 85 do {\ |
86 OP(LP(dst ),rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
87 src1+=src_stride1; \ | |
88 src2+=src_stride2; \ | |
89 dst+=dst_stride; \ | |
90 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
91 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
92 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
93 static inline void OPNAME ## _pixels4_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
94 {\ |
2979 | 95 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
96 OP(LP(dst ),rnd_avg32(AV_RN32(src1 ),LP(src2 )) ); \ |
2979 | 97 src1+=src_stride1; \ |
98 src2+=src_stride2; \ | |
99 dst+=dst_stride; \ | |
100 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
101 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
102 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
103 static inline void OPNAME ## _no_rnd_pixels16_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
104 {\ |
2979 | 105 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
106 OP(LP(dst ),no_rnd_avg32(AV_RN32(src1 ),LP(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
107 OP(LP(dst+4),no_rnd_avg32(AV_RN32(src1+4),LP(src2+4)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
108 OP(LP(dst+8),no_rnd_avg32(AV_RN32(src1+8),LP(src2+8)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
109 OP(LP(dst+12),no_rnd_avg32(AV_RN32(src1+12),LP(src2+12)) ); \ |
2979 | 110 src1+=src_stride1; \ |
111 src2+=src_stride2; \ | |
112 dst+=dst_stride; \ | |
113 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
114 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
115 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
116 static inline void OPNAME ## _pixels16_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
117 {\ |
2979 | 118 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
119 OP(LP(dst ),rnd_avg32(AV_RN32(src1 ),LP(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
120 OP(LP(dst+4),rnd_avg32(AV_RN32(src1+4),LP(src2+4)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
121 OP(LP(dst+8),rnd_avg32(AV_RN32(src1+8),LP(src2+8)) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
122 OP(LP(dst+12),rnd_avg32(AV_RN32(src1+12),LP(src2+12)) ); \ |
2979 | 123 src1+=src_stride1; \ |
124 src2+=src_stride2; \ | |
125 dst+=dst_stride; \ | |
126 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
127 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
128 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
129 static inline void OPNAME ## _no_rnd_pixels8_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
130 {\ |
2979 | 131 do { /* onlye src2 aligned */\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
132 OP(LP(dst ),no_rnd_avg32(AV_RN32(src1 ),LP(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
133 OP(LP(dst+4),no_rnd_avg32(AV_RN32(src1+4),LP(src2+4)) ); \ |
2979 | 134 src1+=src_stride1; \ |
135 src2+=src_stride2; \ | |
136 dst+=dst_stride; \ | |
137 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
138 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
139 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
140 static inline void OPNAME ## _pixels8_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
141 {\ |
2979 | 142 do {\ |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
143 OP(LP(dst ),rnd_avg32(AV_RN32(src1 ),LP(src2 )) ); \ |
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
144 OP(LP(dst+4),rnd_avg32(AV_RN32(src1+4),LP(src2+4)) ); \ |
2979 | 145 src1+=src_stride1; \ |
146 src2+=src_stride2; \ | |
147 dst+=dst_stride; \ | |
148 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
149 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
150 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
151 static inline void OPNAME ## _no_rnd_pixels8_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
152 {\ |
2979 | 153 do {\ |
154 OP(LP(dst ),no_rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
155 OP(LP(dst+4),no_rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
156 src1+=src_stride1; \ | |
157 src2+=src_stride2; \ | |
158 dst+=dst_stride; \ | |
159 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
160 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
161 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
162 static inline void OPNAME ## _pixels8_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
163 {\ |
2979 | 164 do {\ |
165 OP(LP(dst ),rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
166 OP(LP(dst+4),rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
167 src1+=src_stride1; \ | |
168 src2+=src_stride2; \ | |
169 dst+=dst_stride; \ | |
170 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
171 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
172 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
173 static inline void OPNAME ## _no_rnd_pixels16_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
174 {\ |
2979 | 175 do {\ |
176 OP(LP(dst ),no_rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
177 OP(LP(dst+4),no_rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
178 OP(LP(dst+8),no_rnd_avg32(LP(src1+8),LP(src2+8)) ); \ | |
179 OP(LP(dst+12),no_rnd_avg32(LP(src1+12),LP(src2+12)) ); \ | |
180 src1+=src_stride1; \ | |
181 src2+=src_stride2; \ | |
182 dst+=dst_stride; \ | |
183 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
184 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
185 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
186 static inline void OPNAME ## _pixels16_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
187 {\ |
2979 | 188 do {\ |
189 OP(LP(dst ),rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
190 OP(LP(dst+4),rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
191 OP(LP(dst+8),rnd_avg32(LP(src1+8),LP(src2+8)) ); \ | |
192 OP(LP(dst+12),rnd_avg32(LP(src1+12),LP(src2+12)) ); \ | |
193 src1+=src_stride1; \ | |
194 src2+=src_stride2; \ | |
195 dst+=dst_stride; \ | |
196 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
197 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
198 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
199 static inline void OPNAME ## _no_rnd_pixels16_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
200 { OPNAME ## _no_rnd_pixels16_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
201 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
202 static inline void OPNAME ## _pixels16_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
203 { OPNAME ## _pixels16_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
204 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
205 static inline void OPNAME ## _no_rnd_pixels8_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
206 { OPNAME ## _no_rnd_pixels8_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
207 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
208 static inline void OPNAME ## _pixels8_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
209 { OPNAME ## _pixels8_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
210 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
211 static inline void OPNAME ## _pixels8_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 212 do { \ |
213 uint32_t a0,a1,a2,a3; \ | |
214 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
215 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
216 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
217 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
218 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
219 OP(LP(dst+4),rnd_PACK(a0,a1,a2,a3)); \ | |
220 src1+=src_stride1;\ | |
221 src2+=src_stride2;\ | |
222 src3+=src_stride3;\ | |
223 src4+=src_stride4;\ | |
224 dst+=dst_stride;\ | |
225 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
226 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
227 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
228 static inline void OPNAME ## _no_rnd_pixels8_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 229 do { \ |
230 uint32_t a0,a1,a2,a3; \ | |
231 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
232 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
233 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
234 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
235 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
236 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
237 src1+=src_stride1;\ | |
238 src2+=src_stride2;\ | |
239 src3+=src_stride3;\ | |
240 src4+=src_stride4;\ | |
241 dst+=dst_stride;\ | |
242 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
243 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
244 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
245 static inline void OPNAME ## _pixels8_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 246 do { \ |
247 uint32_t a0,a1,a2,a3; /* src1 only not aligned */\ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
248 UNPACK(a0,a1,AV_RN32(src1),LP(src2)); \ |
2979 | 249 UNPACK(a2,a3,LP(src3),LP(src4)); \ |
250 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
251 UNPACK(a0,a1,AV_RN32(src1+4),LP(src2+4)); \ |
2979 | 252 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ |
253 OP(LP(dst+4),rnd_PACK(a0,a1,a2,a3)); \ | |
254 src1+=src_stride1;\ | |
255 src2+=src_stride2;\ | |
256 src3+=src_stride3;\ | |
257 src4+=src_stride4;\ | |
258 dst+=dst_stride;\ | |
259 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
260 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
261 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
262 static inline void OPNAME ## _no_rnd_pixels8_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 263 do { \ |
264 uint32_t a0,a1,a2,a3; \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
265 UNPACK(a0,a1,AV_RN32(src1),LP(src2)); \ |
2979 | 266 UNPACK(a2,a3,LP(src3),LP(src4)); \ |
267 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
268 UNPACK(a0,a1,AV_RN32(src1+4),LP(src2+4)); \ |
2979 | 269 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ |
270 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
271 src1+=src_stride1;\ | |
272 src2+=src_stride2;\ | |
273 src3+=src_stride3;\ | |
274 src4+=src_stride4;\ | |
275 dst+=dst_stride;\ | |
276 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
277 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
278 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
279 static inline void OPNAME ## _pixels16_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 280 do { \ |
281 uint32_t a0,a1,a2,a3; \ | |
282 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
283 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
284 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
285 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
286 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
287 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
288 UNPACK(a0,a1,LP(src1+8),LP(src2+8)); \ | |
289 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ | |
290 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
291 UNPACK(a0,a1,LP(src1+12),LP(src2+12)); \ | |
292 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ | |
293 OP(LP(dst+12),rnd_PACK(a0,a1,a2,a3)); \ | |
294 src1+=src_stride1;\ | |
295 src2+=src_stride2;\ | |
296 src3+=src_stride3;\ | |
297 src4+=src_stride4;\ | |
298 dst+=dst_stride;\ | |
299 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
300 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
301 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
302 static inline void OPNAME ## _no_rnd_pixels16_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 303 do { \ |
304 uint32_t a0,a1,a2,a3; \ | |
305 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
306 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
307 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
308 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
309 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
310 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
311 UNPACK(a0,a1,LP(src1+8),LP(src2+8)); \ | |
312 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ | |
313 OP(LP(dst+8),no_rnd_PACK(a0,a1,a2,a3)); \ | |
314 UNPACK(a0,a1,LP(src1+12),LP(src2+12)); \ | |
315 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ | |
316 OP(LP(dst+12),no_rnd_PACK(a0,a1,a2,a3)); \ | |
317 src1+=src_stride1;\ | |
318 src2+=src_stride2;\ | |
319 src3+=src_stride3;\ | |
320 src4+=src_stride4;\ | |
321 dst+=dst_stride;\ | |
322 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
323 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
324 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
325 static inline void OPNAME ## _pixels16_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 326 do { /* src1 is unaligned */\ |
327 uint32_t a0,a1,a2,a3; \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
328 UNPACK(a0,a1,AV_RN32(src1),LP(src2)); \ |
2979 | 329 UNPACK(a2,a3,LP(src3),LP(src4)); \ |
330 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
331 UNPACK(a0,a1,AV_RN32(src1+4),LP(src2+4)); \ |
2979 | 332 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ |
333 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
334 UNPACK(a0,a1,AV_RN32(src1+8),LP(src2+8)); \ |
2979 | 335 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ |
336 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
337 UNPACK(a0,a1,AV_RN32(src1+12),LP(src2+12)); \ |
2979 | 338 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ |
339 OP(LP(dst+12),rnd_PACK(a0,a1,a2,a3)); \ | |
340 src1+=src_stride1;\ | |
341 src2+=src_stride2;\ | |
342 src3+=src_stride3;\ | |
343 src4+=src_stride4;\ | |
344 dst+=dst_stride;\ | |
345 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
346 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
347 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
348 static inline void OPNAME ## _no_rnd_pixels16_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 349 do { \ |
350 uint32_t a0,a1,a2,a3; \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
351 UNPACK(a0,a1,AV_RN32(src1),LP(src2)); \ |
2979 | 352 UNPACK(a2,a3,LP(src3),LP(src4)); \ |
353 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
354 UNPACK(a0,a1,AV_RN32(src1+4),LP(src2+4)); \ |
2979 | 355 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ |
356 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
357 UNPACK(a0,a1,AV_RN32(src1+8),LP(src2+8)); \ |
2979 | 358 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ |
359 OP(LP(dst+8),no_rnd_PACK(a0,a1,a2,a3)); \ | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
4866
diff
changeset
|
360 UNPACK(a0,a1,AV_RN32(src1+12),LP(src2+12)); \ |
2979 | 361 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ |
362 OP(LP(dst+12),no_rnd_PACK(a0,a1,a2,a3)); \ | |
363 src1+=src_stride1;\ | |
364 src2+=src_stride2;\ | |
365 src3+=src_stride3;\ | |
366 src4+=src_stride4;\ | |
367 dst+=dst_stride;\ | |
368 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
369 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
370 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
371 |
1264 | 372 #define op_avg(a, b) a = rnd_avg32(a,b) |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
373 #define op_put(a, b) a = b |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
374 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
375 PIXOP2(avg, op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
376 PIXOP2(put, op_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
377 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
378 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
379 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
380 #define avg2(a,b) ((a+b+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
381 #define avg4(a,b,c,d) ((a+b+c+d+2)>>2) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
382 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
383 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
384 static void gmc1_c(uint8_t *dst, uint8_t *src, int stride, int h, int x16, int y16, int rounder) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
385 { |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
386 const int A=(16-x16)*(16-y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
387 const int B=( x16)*(16-y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
388 const int C=(16-x16)*( y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
389 const int D=( x16)*( y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
390 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
391 do { |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
392 int t0,t1,t2,t3; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
393 uint8_t *s0 = src; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
394 uint8_t *s1 = src+stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
395 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
396 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
397 dst[0]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
398 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
399 dst[1]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
400 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
401 dst[2]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
402 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
403 dst[3]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
404 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
405 dst[4]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
406 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
407 dst[5]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
408 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
409 dst[6]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
410 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
411 dst[7]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
412 dst+= stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
413 src+= stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
414 }while(--h); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
415 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
416 |
2967 | 417 static void gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
418 int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
419 { |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
420 int y, vx, vy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
421 const int s= 1<<shift; |
2967 | 422 |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
423 width--; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
424 height--; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
425 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
426 for(y=0; y<h; y++){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
427 int x; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
428 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
429 vx= ox; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
430 vy= oy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
431 for(x=0; x<8; x++){ //XXX FIXME optimize |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
432 int src_x, src_y, frac_x, frac_y, index; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
433 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
434 src_x= vx>>16; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
435 src_y= vy>>16; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
436 frac_x= src_x&(s-1); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
437 frac_y= src_y&(s-1); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
438 src_x>>=shift; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
439 src_y>>=shift; |
2967 | 440 |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
441 if((unsigned)src_x < width){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
442 if((unsigned)src_y < height){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
443 index= src_x + src_y*stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
444 dst[y*stride + x]= ( ( src[index ]*(s-frac_x) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
445 + src[index +1]* frac_x )*(s-frac_y) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
446 + ( src[index+stride ]*(s-frac_x) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
447 + src[index+stride+1]* frac_x )* frac_y |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
448 + r)>>(shift*2); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
449 }else{ |
4866 | 450 index= src_x + av_clip(src_y, 0, height)*stride; |
2967 | 451 dst[y*stride + x]= ( ( src[index ]*(s-frac_x) |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
452 + src[index +1]* frac_x )*s |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
453 + r)>>(shift*2); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
454 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
455 }else{ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
456 if((unsigned)src_y < height){ |
4866 | 457 index= av_clip(src_x, 0, width) + src_y*stride; |
2967 | 458 dst[y*stride + x]= ( ( src[index ]*(s-frac_y) |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
459 + src[index+stride ]* frac_y )*s |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
460 + r)>>(shift*2); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
461 }else{ |
4866 | 462 index= av_clip(src_x, 0, width) + av_clip(src_y, 0, height)*stride; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
463 dst[y*stride + x]= src[index ]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
464 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
465 } |
2967 | 466 |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
467 vx+= dxx; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
468 vy+= dyx; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
469 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
470 ox += dxy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
471 oy += dyy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
472 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
473 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
474 #define H264_CHROMA_MC(OPNAME, OP)\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
475 static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
476 const int A=(8-x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
477 const int B=( x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
478 const int C=(8-x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
479 const int D=( x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
480 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
481 assert(x<8 && y<8 && x>=0 && y>=0);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
482 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
483 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
484 int t0,t1,t2,t3; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
485 uint8_t *s0 = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
486 uint8_t *s1 = src+stride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
487 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
488 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
489 OP(dst[0], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
490 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
491 OP(dst[1], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
492 dst+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
493 src+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
494 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
495 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
496 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
497 static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
498 const int A=(8-x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
499 const int B=( x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
500 const int C=(8-x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
501 const int D=( x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
502 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
503 assert(x<8 && y<8 && x>=0 && y>=0);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
504 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
505 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
506 int t0,t1,t2,t3; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
507 uint8_t *s0 = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
508 uint8_t *s1 = src+stride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
509 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
510 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
511 OP(dst[0], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
512 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
513 OP(dst[1], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
514 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
515 OP(dst[2], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
516 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
517 OP(dst[3], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
518 dst+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
519 src+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
520 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
521 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
522 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
523 static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
524 const int A=(8-x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
525 const int B=( x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
526 const int C=(8-x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
527 const int D=( x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
528 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
529 assert(x<8 && y<8 && x>=0 && y>=0);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
530 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
531 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
532 int t0,t1,t2,t3; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
533 uint8_t *s0 = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
534 uint8_t *s1 = src+stride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
535 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
536 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
537 OP(dst[0], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
538 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
539 OP(dst[1], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
540 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
541 OP(dst[2], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
542 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
543 OP(dst[3], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
544 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
545 OP(dst[4], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
546 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
547 OP(dst[5], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
548 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
549 OP(dst[6], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
550 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
551 OP(dst[7], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
552 dst+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
553 src+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
554 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
555 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
556 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
557 #define op_avg(a, b) a = (((a)+(((b) + 32)>>6)+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
558 #define op_put(a, b) a = (((b) + 32)>>6) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
559 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
560 H264_CHROMA_MC(put_ , op_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
561 H264_CHROMA_MC(avg_ , op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
562 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
563 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
564 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
565 #define QPEL_MC(r, OPNAME, RND, OP) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
566 static void OPNAME ## mpeg4_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){\ |
4176 | 567 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
568 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
569 uint8_t *s = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
570 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
571 src0= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
572 src1= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
573 src2= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
574 src3= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
575 src4= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
576 OP(dst[0], (src0+src1)*20 - (src0+src2)*6 + (src1+src3)*3 - (src2+src4));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
577 src5= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
578 OP(dst[1], (src1+src2)*20 - (src0+src3)*6 + (src0+src4)*3 - (src1+src5));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
579 src6= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
580 OP(dst[2], (src2+src3)*20 - (src1+src4)*6 + (src0+src5)*3 - (src0+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
581 src7= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
582 OP(dst[3], (src3+src4)*20 - (src2+src5)*6 + (src1+src6)*3 - (src0+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
583 src8= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
584 OP(dst[4], (src4+src5)*20 - (src3+src6)*6 + (src2+src7)*3 - (src1+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
585 OP(dst[5], (src5+src6)*20 - (src4+src7)*6 + (src3+src8)*3 - (src2+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
586 OP(dst[6], (src6+src7)*20 - (src5+src8)*6 + (src4+src8)*3 - (src3+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
587 OP(dst[7], (src7+src8)*20 - (src6+src8)*6 + (src5+src7)*3 - (src4+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
588 dst+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
589 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
590 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
591 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
592 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
593 static void OPNAME ## mpeg4_qpel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
4176 | 594 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
595 int w=8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
596 do{\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
597 uint8_t *s = src, *d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
598 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
599 src0 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
600 src1 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
601 src2 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
602 src3 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
603 src4 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
604 OP(*d, (src0+src1)*20 - (src0+src2)*6 + (src1+src3)*3 - (src2+src4));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
605 src5 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
606 OP(*d, (src1+src2)*20 - (src0+src3)*6 + (src0+src4)*3 - (src1+src5));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
607 src6 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
608 OP(*d, (src2+src3)*20 - (src1+src4)*6 + (src0+src5)*3 - (src0+src6));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
609 src7 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
610 OP(*d, (src3+src4)*20 - (src2+src5)*6 + (src1+src6)*3 - (src0+src7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
611 src8 = *s; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
612 OP(*d, (src4+src5)*20 - (src3+src6)*6 + (src2+src7)*3 - (src1+src8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
613 OP(*d, (src5+src6)*20 - (src4+src7)*6 + (src3+src8)*3 - (src2+src8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
614 OP(*d, (src6+src7)*20 - (src5+src8)*6 + (src4+src8)*3 - (src3+src7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
615 OP(*d, (src7+src8)*20 - (src6+src8)*6 + (src5+src7)*3 - (src4+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
616 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
617 src++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
618 }while(--w);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
619 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
620 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
621 static void OPNAME ## mpeg4_qpel16_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){\ |
4176 | 622 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
623 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
624 uint8_t *s = src;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
625 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
626 int src9,src10,src11,src12,src13,src14,src15,src16;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
627 src0= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
628 src1= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
629 src2= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
630 src3= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
631 src4= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
632 OP(dst[ 0], (src0 +src1 )*20 - (src0 +src2 )*6 + (src1 +src3 )*3 - (src2 +src4 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
633 src5= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
634 OP(dst[ 1], (src1 +src2 )*20 - (src0 +src3 )*6 + (src0 +src4 )*3 - (src1 +src5 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
635 src6= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
636 OP(dst[ 2], (src2 +src3 )*20 - (src1 +src4 )*6 + (src0 +src5 )*3 - (src0 +src6 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
637 src7= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
638 OP(dst[ 3], (src3 +src4 )*20 - (src2 +src5 )*6 + (src1 +src6 )*3 - (src0 +src7 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
639 src8= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
640 OP(dst[ 4], (src4 +src5 )*20 - (src3 +src6 )*6 + (src2 +src7 )*3 - (src1 +src8 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
641 src9= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
642 OP(dst[ 5], (src5 +src6 )*20 - (src4 +src7 )*6 + (src3 +src8 )*3 - (src2 +src9 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
643 src10= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
644 OP(dst[ 6], (src6 +src7 )*20 - (src5 +src8 )*6 + (src4 +src9 )*3 - (src3 +src10));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
645 src11= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
646 OP(dst[ 7], (src7 +src8 )*20 - (src6 +src9 )*6 + (src5 +src10)*3 - (src4 +src11));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
647 src12= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
648 OP(dst[ 8], (src8 +src9 )*20 - (src7 +src10)*6 + (src6 +src11)*3 - (src5 +src12));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
649 src13= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
650 OP(dst[ 9], (src9 +src10)*20 - (src8 +src11)*6 + (src7 +src12)*3 - (src6 +src13));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
651 src14= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
652 OP(dst[10], (src10+src11)*20 - (src9 +src12)*6 + (src8 +src13)*3 - (src7 +src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
653 src15= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
654 OP(dst[11], (src11+src12)*20 - (src10+src13)*6 + (src9 +src14)*3 - (src8 +src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
655 src16= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
656 OP(dst[12], (src12+src13)*20 - (src11+src14)*6 + (src10+src15)*3 - (src9 +src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
657 OP(dst[13], (src13+src14)*20 - (src12+src15)*6 + (src11+src16)*3 - (src10+src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
658 OP(dst[14], (src14+src15)*20 - (src13+src16)*6 + (src12+src16)*3 - (src11+src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
659 OP(dst[15], (src15+src16)*20 - (src14+src16)*6 + (src13+src15)*3 - (src12+src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
660 dst+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
661 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
662 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
663 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
664 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
665 static void OPNAME ## mpeg4_qpel16_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
4176 | 666 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
667 int w=16;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
668 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
669 uint8_t *s = src, *d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
670 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
671 int src9,src10,src11,src12,src13,src14,src15,src16;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
672 src0 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
673 src1 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
674 src2 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
675 src3 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
676 src4 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
677 OP(*d, (src0 +src1 )*20 - (src0 +src2 )*6 + (src1 +src3 )*3 - (src2 +src4 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
678 src5 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
679 OP(*d, (src1 +src2 )*20 - (src0 +src3 )*6 + (src0 +src4 )*3 - (src1 +src5 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
680 src6 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
681 OP(*d, (src2 +src3 )*20 - (src1 +src4 )*6 + (src0 +src5 )*3 - (src0 +src6 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
682 src7 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
683 OP(*d, (src3 +src4 )*20 - (src2 +src5 )*6 + (src1 +src6 )*3 - (src0 +src7 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
684 src8 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
685 OP(*d, (src4 +src5 )*20 - (src3 +src6 )*6 + (src2 +src7 )*3 - (src1 +src8 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
686 src9 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
687 OP(*d, (src5 +src6 )*20 - (src4 +src7 )*6 + (src3 +src8 )*3 - (src2 +src9 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
688 src10 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
689 OP(*d, (src6 +src7 )*20 - (src5 +src8 )*6 + (src4 +src9 )*3 - (src3 +src10));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
690 src11 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
691 OP(*d, (src7 +src8 )*20 - (src6 +src9 )*6 + (src5 +src10)*3 - (src4 +src11));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
692 src12 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
693 OP(*d, (src8 +src9 )*20 - (src7 +src10)*6 + (src6 +src11)*3 - (src5 +src12));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
694 src13 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
695 OP(*d, (src9 +src10)*20 - (src8 +src11)*6 + (src7 +src12)*3 - (src6 +src13));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
696 src14 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
697 OP(*d, (src10+src11)*20 - (src9 +src12)*6 + (src8 +src13)*3 - (src7 +src14));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
698 src15 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
699 OP(*d, (src11+src12)*20 - (src10+src13)*6 + (src9 +src14)*3 - (src8 +src15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
700 src16 = *s; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
701 OP(*d, (src12+src13)*20 - (src11+src14)*6 + (src10+src15)*3 - (src9 +src16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
702 OP(*d, (src13+src14)*20 - (src12+src15)*6 + (src11+src16)*3 - (src10+src16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
703 OP(*d, (src14+src15)*20 - (src13+src16)*6 + (src12+src16)*3 - (src11+src15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
704 OP(*d, (src15+src16)*20 - (src14+src16)*6 + (src13+src15)*3 - (src12+src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
705 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
706 src++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
707 }while(--w);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
708 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
709 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
710 static void OPNAME ## qpel8_mc00_c (uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
711 OPNAME ## pixels8_c(dst, src, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
712 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
713 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
714 static void OPNAME ## qpel8_mc10_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
715 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
716 put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
717 OPNAME ## pixels8_l2_aligned2(dst, src, half, stride, stride, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
718 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
719 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
720 static void OPNAME ## qpel8_mc20_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
721 OPNAME ## mpeg4_qpel8_h_lowpass(dst, src, stride, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
722 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
723 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
724 static void OPNAME ## qpel8_mc30_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
725 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
726 put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
727 OPNAME ## pixels8_l2_aligned2(dst, src+1, half, stride, stride, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
728 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
729 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
730 static void OPNAME ## qpel8_mc01_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
731 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
732 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
733 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
734 put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
735 OPNAME ## pixels8_l2_aligned(dst, full, half, stride, 16, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
736 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
737 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
738 static void OPNAME ## qpel8_mc02_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
739 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
740 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
741 OPNAME ## mpeg4_qpel8_v_lowpass(dst, full, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
742 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
743 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
744 static void OPNAME ## qpel8_mc03_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
745 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
746 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
747 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
748 put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
749 OPNAME ## pixels8_l2_aligned(dst, full+16, half, stride, 16, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
750 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
751 static void ff_ ## OPNAME ## qpel8_mc11_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
752 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
753 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
754 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
755 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
756 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
757 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
758 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
759 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
760 OPNAME ## pixels8_l4_aligned(dst, full, halfH, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
761 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
762 static void OPNAME ## qpel8_mc11_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
763 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
764 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
765 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
766 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
767 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
768 put ## RND ## pixels8_l2_aligned(halfH, halfH, full, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
769 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
770 OPNAME ## pixels8_l2_aligned(dst, halfH, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
771 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
772 static void ff_ ## OPNAME ## qpel8_mc31_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
773 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
774 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
775 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
776 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
777 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
778 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
779 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
780 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
781 OPNAME ## pixels8_l4_aligned0(dst, full+1, halfH, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
782 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
783 static void OPNAME ## qpel8_mc31_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
784 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
785 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
786 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
787 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
788 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
789 put ## RND ## pixels8_l2_aligned1(halfH, halfH, full+1, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
790 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
791 OPNAME ## pixels8_l2_aligned(dst, halfH, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
792 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
793 static void ff_ ## OPNAME ## qpel8_mc13_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
794 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
795 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
796 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
797 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
798 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
799 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
800 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
801 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
802 OPNAME ## pixels8_l4_aligned(dst, full+16, halfH+8, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
803 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
804 static void OPNAME ## qpel8_mc13_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
805 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
806 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
807 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
808 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
809 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
810 put ## RND ## pixels8_l2_aligned(halfH, halfH, full, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
811 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
812 OPNAME ## pixels8_l2_aligned(dst, halfH+8, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
813 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
814 static void ff_ ## OPNAME ## qpel8_mc33_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
815 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
816 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
817 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
818 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
819 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
820 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full , 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
821 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
822 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
823 OPNAME ## pixels8_l4_aligned0(dst, full+17, halfH+8, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
824 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
825 static void OPNAME ## qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
826 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
827 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
828 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
829 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
830 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
831 put ## RND ## pixels8_l2_aligned1(halfH, halfH, full+1, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
832 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
833 OPNAME ## pixels8_l2_aligned(dst, halfH+8, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
834 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
835 static void OPNAME ## qpel8_mc21_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
836 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
837 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
838 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
839 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
840 OPNAME ## pixels8_l2_aligned(dst, halfH, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
841 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
842 static void OPNAME ## qpel8_mc23_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
843 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
844 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
845 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
846 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
847 OPNAME ## pixels8_l2_aligned(dst, halfH+8, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
848 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
849 static void ff_ ## OPNAME ## qpel8_mc12_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
850 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
851 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
852 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
853 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
854 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
855 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
856 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
857 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
858 OPNAME ## pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
859 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
860 static void OPNAME ## qpel8_mc12_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
861 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
862 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
863 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
864 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
865 put ## RND ## pixels8_l2_aligned(halfH, halfH, full, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
866 OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
867 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
868 static void ff_ ## OPNAME ## qpel8_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
869 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
870 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
871 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
872 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
873 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
874 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
875 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
876 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
877 OPNAME ## pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
878 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
879 static void OPNAME ## qpel8_mc32_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
880 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
881 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
882 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
883 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
884 put ## RND ## pixels8_l2_aligned1(halfH, halfH, full+1, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
885 OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
886 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
887 static void OPNAME ## qpel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
888 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
889 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
890 OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
891 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
892 static void OPNAME ## qpel16_mc00_c (uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
893 OPNAME ## pixels16_c(dst, src, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
894 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
895 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
896 static void OPNAME ## qpel16_mc10_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
897 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
898 put ## RND ## mpeg4_qpel16_h_lowpass(half, src, 16, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
899 OPNAME ## pixels16_l2_aligned2(dst, src, half, stride, stride, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
900 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
901 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
902 static void OPNAME ## qpel16_mc20_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
903 OPNAME ## mpeg4_qpel16_h_lowpass(dst, src, stride, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
904 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
905 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
906 static void OPNAME ## qpel16_mc30_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
907 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
908 put ## RND ## mpeg4_qpel16_h_lowpass(half, src, 16, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
909 OPNAME ## pixels16_l2_aligned2(dst, src+1, half, stride, stride, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
910 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
911 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
912 static void OPNAME ## qpel16_mc01_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
913 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
914 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
915 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
916 put ## RND ## mpeg4_qpel16_v_lowpass(half, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
917 OPNAME ## pixels16_l2_aligned(dst, full, half, stride, 24, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
918 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
919 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
920 static void OPNAME ## qpel16_mc02_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
921 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
922 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
923 OPNAME ## mpeg4_qpel16_v_lowpass(dst, full, stride, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
924 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
925 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
926 static void OPNAME ## qpel16_mc03_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
927 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
928 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
929 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
930 put ## RND ## mpeg4_qpel16_v_lowpass(half, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
931 OPNAME ## pixels16_l2_aligned(dst, full+24, half, stride, 24, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
932 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
933 static void ff_ ## OPNAME ## qpel16_mc11_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
934 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
935 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
936 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
937 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
938 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
939 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
940 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
941 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
942 OPNAME ## pixels16_l4_aligned(dst, full, halfH, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
943 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
944 static void OPNAME ## qpel16_mc11_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
945 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
946 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
947 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
948 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
949 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
950 put ## RND ## pixels16_l2_aligned(halfH, halfH, full, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
951 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
952 OPNAME ## pixels16_l2_aligned(dst, halfH, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
953 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
954 static void ff_ ## OPNAME ## qpel16_mc31_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
955 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
956 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
957 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
958 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
959 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
960 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
961 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
962 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
963 OPNAME ## pixels16_l4_aligned0(dst, full+1, halfH, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
964 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
965 static void OPNAME ## qpel16_mc31_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
966 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
967 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
968 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
969 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
970 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
971 put ## RND ## pixels16_l2_aligned1(halfH, halfH, full+1, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
972 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
973 OPNAME ## pixels16_l2_aligned(dst, halfH, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
974 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
975 static void ff_ ## OPNAME ## qpel16_mc13_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
976 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
977 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
978 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
979 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
980 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
981 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
982 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
983 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
984 OPNAME ## pixels16_l4_aligned(dst, full+24, halfH+16, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
985 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
986 static void OPNAME ## qpel16_mc13_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
987 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
988 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
989 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
990 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
991 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
992 put ## RND ## pixels16_l2_aligned(halfH, halfH, full, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
993 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
994 OPNAME ## pixels16_l2_aligned(dst, halfH+16, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
995 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
996 static void ff_ ## OPNAME ## qpel16_mc33_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
997 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
998 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
999 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1000 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1001 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1002 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full , 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1003 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1004 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1005 OPNAME ## pixels16_l4_aligned0(dst, full+25, halfH+16, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1006 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1007 static void OPNAME ## qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1008 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1009 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1010 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1011 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1012 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1013 put ## RND ## pixels16_l2_aligned1(halfH, halfH, full+1, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1014 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1015 OPNAME ## pixels16_l2_aligned(dst, halfH+16, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1016 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1017 static void OPNAME ## qpel16_mc21_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1018 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1019 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1020 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1021 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1022 OPNAME ## pixels16_l2_aligned(dst, halfH, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1023 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1024 static void OPNAME ## qpel16_mc23_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1025 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1026 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1027 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1028 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1029 OPNAME ## pixels16_l2_aligned(dst, halfH+16, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1030 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1031 static void ff_ ## OPNAME ## qpel16_mc12_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1032 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1033 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1034 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1035 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1036 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1037 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1038 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1039 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1040 OPNAME ## pixels16_l2_aligned(dst, halfV, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1041 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1042 static void OPNAME ## qpel16_mc12_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1043 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1044 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1045 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1046 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1047 put ## RND ## pixels16_l2_aligned(halfH, halfH, full, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1048 OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1049 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1050 static void ff_ ## OPNAME ## qpel16_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1051 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1052 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1053 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1054 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1055 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1056 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1057 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1058 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1059 OPNAME ## pixels16_l2_aligned(dst, halfV, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1060 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1061 static void OPNAME ## qpel16_mc32_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1062 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1063 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1064 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1065 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1066 put ## RND ## pixels16_l2_aligned1(halfH, halfH, full+1, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1067 OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1068 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1069 static void OPNAME ## qpel16_mc22_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1070 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1071 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1072 OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1073 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1074 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1075 #define op_avg(a, b) a = (((a)+cm[((b) + 16)>>5]+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1076 #define op_avg_no_rnd(a, b) a = (((a)+cm[((b) + 15)>>5])>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1077 #define op_put(a, b) a = cm[((b) + 16)>>5] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1078 #define op_put_no_rnd(a, b) a = cm[((b) + 15)>>5] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1079 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1080 QPEL_MC(0, put_ , _ , op_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1081 QPEL_MC(1, put_no_rnd_, _no_rnd_, op_put_no_rnd) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1082 QPEL_MC(0, avg_ , _ , op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1083 //QPEL_MC(1, avg_no_rnd , _ , op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1084 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1085 #undef op_avg_no_rnd |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1086 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1087 #undef op_put_no_rnd |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1088 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1089 #if 1 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1090 #define H264_LOWPASS(OPNAME, OP, OP2) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1091 static inline void OPNAME ## h264_qpel_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride,int w,int h){\ |
4176 | 1092 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1093 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1094 int srcB,srcA,src0,src1,src2,src3,src4,src5,src6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1095 uint8_t *s = src-2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1096 srcB = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1097 srcA = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1098 src0 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1099 src1 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1100 src2 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1101 src3 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1102 OP(dst[0], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1103 src4 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1104 OP(dst[1], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1105 src5 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1106 OP(dst[2], (src2+src3)*20 - (src1+src4)*5 + (src0+src5));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1107 src6 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1108 OP(dst[3], (src3+src4)*20 - (src2+src5)*5 + (src1+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1109 if (w>4) { /* it optimized */ \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1110 int src7,src8,src9,src10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1111 src7 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1112 OP(dst[4], (src4+src5)*20 - (src3+src6)*5 + (src2+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1113 src8 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1114 OP(dst[5], (src5+src6)*20 - (src4+src7)*5 + (src3+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1115 src9 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1116 OP(dst[6], (src6+src7)*20 - (src5+src8)*5 + (src4+src9));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1117 src10 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1118 OP(dst[7], (src7+src8)*20 - (src6+src9)*5 + (src5+src10));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1119 if (w>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1120 int src11,src12,src13,src14,src15,src16,src17,src18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1121 src11 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1122 OP(dst[8] , (src8 +src9 )*20 - (src7 +src10)*5 + (src6 +src11));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1123 src12 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1124 OP(dst[9] , (src9 +src10)*20 - (src8 +src11)*5 + (src7 +src12));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1125 src13 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1126 OP(dst[10], (src10+src11)*20 - (src9 +src12)*5 + (src8 +src13));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1127 src14 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1128 OP(dst[11], (src11+src12)*20 - (src10+src13)*5 + (src9 +src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1129 src15 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1130 OP(dst[12], (src12+src13)*20 - (src11+src14)*5 + (src10+src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1131 src16 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1132 OP(dst[13], (src13+src14)*20 - (src12+src15)*5 + (src11+src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1133 src17 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1134 OP(dst[14], (src14+src15)*20 - (src13+src16)*5 + (src12+src17));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1135 src18 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1136 OP(dst[15], (src15+src16)*20 - (src14+src17)*5 + (src13+src18));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1137 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1138 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1139 dst+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1140 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1141 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1142 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1143 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1144 static inline void OPNAME ## h264_qpel_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride,int w,int h){\ |
4176 | 1145 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1146 do{\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1147 int srcB,srcA,src0,src1,src2,src3,src4,src5,src6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1148 uint8_t *s = src-2*srcStride,*d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1149 srcB = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1150 srcA = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1151 src0 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1152 src1 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1153 src2 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1154 src3 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1155 OP(*d, (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1156 src4 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1157 OP(*d, (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1158 src5 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1159 OP(*d, (src2+src3)*20 - (src1+src4)*5 + (src0+src5));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1160 src6 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1161 OP(*d, (src3+src4)*20 - (src2+src5)*5 + (src1+src6));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1162 if (h>4) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1163 int src7,src8,src9,src10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1164 src7 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1165 OP(*d, (src4+src5)*20 - (src3+src6)*5 + (src2+src7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1166 src8 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1167 OP(*d, (src5+src6)*20 - (src4+src7)*5 + (src3+src8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1168 src9 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1169 OP(*d, (src6+src7)*20 - (src5+src8)*5 + (src4+src9));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1170 src10 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1171 OP(*d, (src7+src8)*20 - (src6+src9)*5 + (src5+src10));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1172 if (h>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1173 int src11,src12,src13,src14,src15,src16,src17,src18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1174 src11 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1175 OP(*d , (src8 +src9 )*20 - (src7 +src10)*5 + (src6 +src11));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1176 src12 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1177 OP(*d , (src9 +src10)*20 - (src8 +src11)*5 + (src7 +src12));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1178 src13 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1179 OP(*d, (src10+src11)*20 - (src9 +src12)*5 + (src8 +src13));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1180 src14 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1181 OP(*d, (src11+src12)*20 - (src10+src13)*5 + (src9 +src14));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1182 src15 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1183 OP(*d, (src12+src13)*20 - (src11+src14)*5 + (src10+src15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1184 src16 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1185 OP(*d, (src13+src14)*20 - (src12+src15)*5 + (src11+src16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1186 src17 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1187 OP(*d, (src14+src15)*20 - (src13+src16)*5 + (src12+src17));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1188 src18 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1189 OP(*d, (src15+src16)*20 - (src14+src17)*5 + (src13+src18));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1190 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1191 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1192 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1193 src++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1194 }while(--w);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1195 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1196 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1197 static inline void OPNAME ## h264_qpel_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride,int w,int h){\ |
4176 | 1198 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1199 int i;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1200 src -= 2*srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1201 i= h+5; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1202 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1203 int srcB,srcA,src0,src1,src2,src3,src4,src5,src6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1204 uint8_t *s = src-2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1205 srcB = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1206 srcA = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1207 src0 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1208 src1 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1209 src2 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1210 src3 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1211 tmp[0] = ((src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1212 src4 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1213 tmp[1] = ((src1+src2)*20 - (src0+src3)*5 + (srcA+src4));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1214 src5 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1215 tmp[2] = ((src2+src3)*20 - (src1+src4)*5 + (src0+src5));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1216 src6 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1217 tmp[3] = ((src3+src4)*20 - (src2+src5)*5 + (src1+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1218 if (w>4) { /* it optimized */ \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1219 int src7,src8,src9,src10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1220 src7 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1221 tmp[4] = ((src4+src5)*20 - (src3+src6)*5 + (src2+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1222 src8 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1223 tmp[5] = ((src5+src6)*20 - (src4+src7)*5 + (src3+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1224 src9 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1225 tmp[6] = ((src6+src7)*20 - (src5+src8)*5 + (src4+src9));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1226 src10 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1227 tmp[7] = ((src7+src8)*20 - (src6+src9)*5 + (src5+src10));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1228 if (w>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1229 int src11,src12,src13,src14,src15,src16,src17,src18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1230 src11 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1231 tmp[8] = ((src8 +src9 )*20 - (src7 +src10)*5 + (src6 +src11));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1232 src12 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1233 tmp[9] = ((src9 +src10)*20 - (src8 +src11)*5 + (src7 +src12));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1234 src13 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1235 tmp[10] = ((src10+src11)*20 - (src9 +src12)*5 + (src8 +src13));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1236 src14 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1237 tmp[11] = ((src11+src12)*20 - (src10+src13)*5 + (src9 +src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1238 src15 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1239 tmp[12] = ((src12+src13)*20 - (src11+src14)*5 + (src10+src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1240 src16 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1241 tmp[13] = ((src13+src14)*20 - (src12+src15)*5 + (src11+src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1242 src17 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1243 tmp[14] = ((src14+src15)*20 - (src13+src16)*5 + (src12+src17));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1244 src18 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1245 tmp[15] = ((src15+src16)*20 - (src14+src17)*5 + (src13+src18));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1246 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1247 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1248 tmp+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1249 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1250 }while(--i);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1251 tmp -= tmpStride*(h+5-2);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1252 i = w; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1253 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1254 int tmpB,tmpA,tmp0,tmp1,tmp2,tmp3,tmp4,tmp5,tmp6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1255 int16_t *s = tmp-2*tmpStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1256 uint8_t *d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1257 tmpB = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1258 tmpA = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1259 tmp0 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1260 tmp1 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1261 tmp2 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1262 tmp3 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1263 OP2(*d, (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1264 tmp4 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1265 OP2(*d, (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1266 tmp5 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1267 OP2(*d, (tmp2+tmp3)*20 - (tmp1+tmp4)*5 + (tmp0+tmp5));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1268 tmp6 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1269 OP2(*d, (tmp3+tmp4)*20 - (tmp2+tmp5)*5 + (tmp1+tmp6));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1270 if (h>4) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1271 int tmp7,tmp8,tmp9,tmp10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1272 tmp7 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1273 OP2(*d, (tmp4+tmp5)*20 - (tmp3+tmp6)*5 + (tmp2+tmp7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1274 tmp8 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1275 OP2(*d, (tmp5+tmp6)*20 - (tmp4+tmp7)*5 + (tmp3+tmp8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1276 tmp9 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1277 OP2(*d, (tmp6+tmp7)*20 - (tmp5+tmp8)*5 + (tmp4+tmp9));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1278 tmp10 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1279 OP2(*d, (tmp7+tmp8)*20 - (tmp6+tmp9)*5 + (tmp5+tmp10));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1280 if (h>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1281 int tmp11,tmp12,tmp13,tmp14,tmp15,tmp16,tmp17,tmp18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1282 tmp11 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1283 OP2(*d , (tmp8 +tmp9 )*20 - (tmp7 +tmp10)*5 + (tmp6 +tmp11));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1284 tmp12 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1285 OP2(*d , (tmp9 +tmp10)*20 - (tmp8 +tmp11)*5 + (tmp7 +tmp12));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1286 tmp13 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1287 OP2(*d, (tmp10+tmp11)*20 - (tmp9 +tmp12)*5 + (tmp8 +tmp13));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1288 tmp14 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1289 OP2(*d, (tmp11+tmp12)*20 - (tmp10+tmp13)*5 + (tmp9 +tmp14));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1290 tmp15 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1291 OP2(*d, (tmp12+tmp13)*20 - (tmp11+tmp14)*5 + (tmp10+tmp15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1292 tmp16 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1293 OP2(*d, (tmp13+tmp14)*20 - (tmp12+tmp15)*5 + (tmp11+tmp16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1294 tmp17 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1295 OP2(*d, (tmp14+tmp15)*20 - (tmp13+tmp16)*5 + (tmp12+tmp17));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1296 tmp18 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1297 OP2(*d, (tmp15+tmp16)*20 - (tmp14+tmp17)*5 + (tmp13+tmp18));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1298 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1299 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1300 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1301 tmp++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1302 }while(--i);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1303 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1304 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1305 static void OPNAME ## h264_qpel4_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1306 OPNAME ## h264_qpel_h_lowpass(dst,src,dstStride,srcStride,4,4); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1307 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1308 static void OPNAME ## h264_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1309 OPNAME ## h264_qpel_h_lowpass(dst,src,dstStride,srcStride,8,8); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1310 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1311 static void OPNAME ## h264_qpel16_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1312 OPNAME ## h264_qpel_h_lowpass(dst,src,dstStride,srcStride,16,16); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1313 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1314 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1315 static void OPNAME ## h264_qpel4_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1316 OPNAME ## h264_qpel_v_lowpass(dst,src,dstStride,srcStride,4,4); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1317 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1318 static void OPNAME ## h264_qpel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1319 OPNAME ## h264_qpel_v_lowpass(dst,src,dstStride,srcStride,8,8); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1320 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1321 static void OPNAME ## h264_qpel16_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1322 OPNAME ## h264_qpel_v_lowpass(dst,src,dstStride,srcStride,16,16); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1323 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1324 static void OPNAME ## h264_qpel4_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1325 OPNAME ## h264_qpel_hv_lowpass(dst,tmp,src,dstStride,tmpStride,srcStride,4,4); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1326 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1327 static void OPNAME ## h264_qpel8_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1328 OPNAME ## h264_qpel_hv_lowpass(dst,tmp,src,dstStride,tmpStride,srcStride,8,8); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1329 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1330 static void OPNAME ## h264_qpel16_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1331 OPNAME ## h264_qpel_hv_lowpass(dst,tmp,src,dstStride,tmpStride,srcStride,16,16); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1332 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1333 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1334 #define H264_MC(OPNAME, SIZE) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1335 static void OPNAME ## h264_qpel ## SIZE ## _mc00_c (uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1336 OPNAME ## pixels ## SIZE ## _c(dst, src, stride, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1337 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1338 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1339 static void OPNAME ## h264_qpel ## SIZE ## _mc10_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1340 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1341 put_h264_qpel ## SIZE ## _h_lowpass(half, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1342 OPNAME ## pixels ## SIZE ## _l2_aligned2(dst, src, half, stride, stride, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1343 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1344 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1345 static void OPNAME ## h264_qpel ## SIZE ## _mc20_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1346 OPNAME ## h264_qpel ## SIZE ## _h_lowpass(dst, src, stride, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1347 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1348 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1349 static void OPNAME ## h264_qpel ## SIZE ## _mc30_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1350 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1351 put_h264_qpel ## SIZE ## _h_lowpass(half, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1352 OPNAME ## pixels ## SIZE ## _l2_aligned2(dst, src+1, half, stride, stride, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1353 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1354 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1355 static void OPNAME ## h264_qpel ## SIZE ## _mc01_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1356 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1357 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1358 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1359 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1360 put_h264_qpel ## SIZE ## _v_lowpass(half, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1361 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, full_mid, half, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1362 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1363 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1364 static void OPNAME ## h264_qpel ## SIZE ## _mc02_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1365 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1366 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1367 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1368 OPNAME ## h264_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1369 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1370 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1371 static void OPNAME ## h264_qpel ## SIZE ## _mc03_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1372 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1373 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1374 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1375 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1376 put_h264_qpel ## SIZE ## _v_lowpass(half, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1377 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, full_mid+SIZE, half, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1378 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1379 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1380 static void OPNAME ## h264_qpel ## SIZE ## _mc11_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1381 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1382 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1383 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1384 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1385 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1386 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1387 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1388 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1389 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1390 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1391 static void OPNAME ## h264_qpel ## SIZE ## _mc31_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1392 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1393 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1394 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1395 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1396 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1397 copy_block ## SIZE (full, src - stride*2 + 1, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1398 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1399 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1400 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1401 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1402 static void OPNAME ## h264_qpel ## SIZE ## _mc13_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1403 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1404 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1405 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1406 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1407 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1408 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1409 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1410 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1411 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1412 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1413 static void OPNAME ## h264_qpel ## SIZE ## _mc33_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1414 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1415 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1416 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1417 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1418 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1419 copy_block ## SIZE (full, src - stride*2 + 1, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1420 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1421 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1422 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1423 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1424 static void OPNAME ## h264_qpel ## SIZE ## _mc22_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1425 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1426 OPNAME ## h264_qpel ## SIZE ## _hv_lowpass(dst, tmp, src, stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1427 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1428 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1429 static void OPNAME ## h264_qpel ## SIZE ## _mc21_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1430 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1431 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1432 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1433 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1434 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1435 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1436 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1437 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1438 static void OPNAME ## h264_qpel ## SIZE ## _mc23_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1439 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1440 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1441 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1442 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1443 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1444 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1445 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1446 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1447 static void OPNAME ## h264_qpel ## SIZE ## _mc12_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1448 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1449 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1450 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1451 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1452 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1453 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1454 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1455 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1456 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfV, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1457 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1458 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1459 static void OPNAME ## h264_qpel ## SIZE ## _mc32_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1460 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1461 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1462 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1463 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1464 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1465 copy_block ## SIZE (full, src - stride*2 + 1, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1466 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1467 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1468 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfV, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1469 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1470 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1471 #define op_avg(a, b) a = (((a)+cm[((b) + 16)>>5]+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1472 //#define op_avg2(a, b) a = (((a)*w1+cm[((b) + 16)>>5]*w2 + o + 64)>>7) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1473 #define op_put(a, b) a = cm[((b) + 16)>>5] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1474 #define op2_avg(a, b) a = (((a)+cm[((b) + 512)>>10]+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1475 #define op2_put(a, b) a = cm[((b) + 512)>>10] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1476 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1477 H264_LOWPASS(put_ , op_put, op2_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1478 H264_LOWPASS(avg_ , op_avg, op2_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1479 H264_MC(put_, 4) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1480 H264_MC(put_, 8) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1481 H264_MC(put_, 16) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1482 H264_MC(avg_, 4) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1483 H264_MC(avg_, 8) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1484 H264_MC(avg_, 16) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1485 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1486 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1487 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1488 #undef op2_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1489 #undef op2_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1490 #endif |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1491 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1492 static void wmv2_mspel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){ |
4176 | 1493 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1494 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1495 do{ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1496 int src_1,src0,src1,src2,src3,src4,src5,src6,src7,src8,src9; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1497 uint8_t *s = src; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1498 src_1 = s[-1]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1499 src0 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1500 src1 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1501 src2 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1502 dst[0]= cm[(9*(src0 + src1) - (src_1 + src2) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1503 src3 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1504 dst[1]= cm[(9*(src1 + src2) - (src0 + src3) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1505 src4 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1506 dst[2]= cm[(9*(src2 + src3) - (src1 + src4) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1507 src5 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1508 dst[3]= cm[(9*(src3 + src4) - (src2 + src5) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1509 src6 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1510 dst[4]= cm[(9*(src4 + src5) - (src3 + src6) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1511 src7 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1512 dst[5]= cm[(9*(src5 + src6) - (src4 + src7) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1513 src8 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1514 dst[6]= cm[(9*(src6 + src7) - (src5 + src8) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1515 src9 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1516 dst[7]= cm[(9*(src7 + src8) - (src6 + src9) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1517 dst+=dstStride; |
2967 | 1518 src+=srcStride; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1519 }while(--h); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1520 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1521 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1522 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ |
4176 | 1523 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1524 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1525 do{ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1526 int src_1,src0,src1,src2,src3,src4,src5,src6,src7,src8,src9; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1527 uint8_t *s = src,*d = dst; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1528 src_1 = *(s-srcStride); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1529 src0 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1530 src1 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1531 src2 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1532 *d= cm[(9*(src0 + src1) - (src_1 + src2) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1533 src3 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1534 *d= cm[(9*(src1 + src2) - (src0 + src3) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1535 src4 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1536 *d= cm[(9*(src2 + src3) - (src1 + src4) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1537 src5 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1538 *d= cm[(9*(src3 + src4) - (src2 + src5) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1539 src6 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1540 *d= cm[(9*(src4 + src5) - (src3 + src6) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1541 src7 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1542 *d= cm[(9*(src5 + src6) - (src4 + src7) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1543 src8 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1544 *d= cm[(9*(src6 + src7) - (src5 + src8) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1545 src9 = *s; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1546 *d= cm[(9*(src7 + src8) - (src6 + src9) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1547 src++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1548 dst++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1549 }while(--w); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1550 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1551 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1552 static void put_mspel8_mc00_c (uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1553 put_pixels8_c(dst, src, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1554 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1555 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1556 static void put_mspel8_mc10_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1557 uint8_t half[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1558 wmv2_mspel8_h_lowpass(half, src, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1559 put_pixels8_l2_aligned2(dst, src, half, stride, stride, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1560 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1561 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1562 static void put_mspel8_mc20_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1563 wmv2_mspel8_h_lowpass(dst, src, stride, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1564 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1565 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1566 static void put_mspel8_mc30_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1567 uint8_t half[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1568 wmv2_mspel8_h_lowpass(half, src, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1569 put_pixels8_l2_aligned2(dst, src+1, half, stride, stride, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1570 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1571 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1572 static void put_mspel8_mc02_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1573 wmv2_mspel8_v_lowpass(dst, src, stride, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1574 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1575 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1576 static void put_mspel8_mc12_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1577 uint8_t halfH[88]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1578 uint8_t halfV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1579 uint8_t halfHV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1580 wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1581 wmv2_mspel8_v_lowpass(halfV, src, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1582 wmv2_mspel8_v_lowpass(halfHV, halfH+8, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1583 put_pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1584 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1585 static void put_mspel8_mc32_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1586 uint8_t halfH[88]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1587 uint8_t halfV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1588 uint8_t halfHV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1589 wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1590 wmv2_mspel8_v_lowpass(halfV, src+1, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1591 wmv2_mspel8_v_lowpass(halfHV, halfH+8, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1592 put_pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1593 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1594 static void put_mspel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1595 uint8_t halfH[88]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1596 wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1597 wmv2_mspel8_v_lowpass(dst, halfH+8, stride, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1598 } |