Mercurial > libavcodec.hg
annotate imgresample.c @ 8406:ea27308fa023 libavcodec
Remove calls to deprecated av_set_string2() with calls to
av_set_string3().
| author | stefano |
|---|---|
| date | Fri, 19 Dec 2008 22:29:30 +0000 |
| parents | 589f9a71df95 |
| children | 7768bdfd4f7b |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2967 | 2 * High quality image resampling with polyphase filters |
| 429 | 3 * Copyright (c) 2001 Fabrice Bellard. |
| 0 | 4 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3589
diff
changeset
|
5 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3589
diff
changeset
|
6 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3589
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 429 | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * 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:
3589
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 11 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3589
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. | |
| 0 | 16 * |
| 429 | 17 * 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:
3589
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 20 */ |
| 2967 | 21 |
| 1106 | 22 /** |
| 23 * @file imgresample.c | |
| 24 * High quality image resampling with polyphase filters . | |
| 25 */ | |
| 2967 | 26 |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
18
diff
changeset
|
27 #include "avcodec.h" |
| 0 | 28 #include "dsputil.h" |
|
8313
2eaafc02cd3d
Add img_convert() to imgconvert.h and #include it from imgresample.c.
diego
parents:
8104
diff
changeset
|
29 #include "imgconvert.h" |
| 6764 | 30 #include "libswscale/swscale.h" |
| 0 | 31 |
|
5750
09f99af1db40
Sanitize altivec code so it can be built with runtime check properly
lu_zero
parents:
5187
diff
changeset
|
32 #ifdef HAVE_ALTIVEC |
|
09f99af1db40
Sanitize altivec code so it can be built with runtime check properly
lu_zero
parents:
5187
diff
changeset
|
33 #include "ppc/imgresample_altivec.h" |
|
09f99af1db40
Sanitize altivec code so it can be built with runtime check properly
lu_zero
parents:
5187
diff
changeset
|
34 #endif |
|
09f99af1db40
Sanitize altivec code so it can be built with runtime check properly
lu_zero
parents:
5187
diff
changeset
|
35 |
| 0 | 36 #define NB_COMPONENTS 3 |
| 37 | |
| 38 #define PHASE_BITS 4 | |
| 39 #define NB_PHASES (1 << PHASE_BITS) | |
| 40 #define NB_TAPS 4 | |
| 41 #define FCENTER 1 /* index of the center of the filter */ | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
42 //#define TEST 1 /* Test it */ |
| 0 | 43 |
| 44 #define POS_FRAC_BITS 16 | |
| 45 #define POS_FRAC (1 << POS_FRAC_BITS) | |
| 46 /* 6 bits precision is needed for MMX */ | |
| 47 #define FILTER_BITS 8 | |
| 48 | |
| 49 #define LINE_BUF_HEIGHT (NB_TAPS * 4) | |
| 50 | |
|
4065
93163e2a2398
Do not use a fake libavcodec/swscale.h, but always use the real one
lucabe
parents:
4036
diff
changeset
|
51 struct SwsContext { |
|
6464
0c3cc1d7a0b3
Make av_class a pointer to a const AVClass. Addresses one warning in
takis
parents:
6434
diff
changeset
|
52 const AVClass *av_class; |
|
4065
93163e2a2398
Do not use a fake libavcodec/swscale.h, but always use the real one
lucabe
parents:
4036
diff
changeset
|
53 struct ImgReSampleContext *resampling_ctx; |
|
93163e2a2398
Do not use a fake libavcodec/swscale.h, but always use the real one
lucabe
parents:
4036
diff
changeset
|
54 enum PixelFormat src_pix_fmt, dst_pix_fmt; |
|
93163e2a2398
Do not use a fake libavcodec/swscale.h, but always use the real one
lucabe
parents:
4036
diff
changeset
|
55 }; |
|
93163e2a2398
Do not use a fake libavcodec/swscale.h, but always use the real one
lucabe
parents:
4036
diff
changeset
|
56 |
|
7823
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
57 typedef struct ImgReSampleContext { |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
58 int iwidth, iheight, owidth, oheight; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
59 int topBand, bottomBand, leftBand, rightBand; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
60 int padtop, padbottom, padleft, padright; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
61 int pad_owidth, pad_oheight; |
| 0 | 62 int h_incr, v_incr; |
| 3089 | 63 DECLARE_ALIGNED_8(int16_t, h_filters[NB_PHASES][NB_TAPS]); /* horizontal filters */ |
| 64 DECLARE_ALIGNED_8(int16_t, v_filters[NB_PHASES][NB_TAPS]); /* vertical filters */ | |
| 1064 | 65 uint8_t *line_buf; |
|
7823
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
66 } ImgReSampleContext; |
| 0 | 67 |
|
2082
3dc9bbe1b152
polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
2064
diff
changeset
|
68 void av_build_filter(int16_t *filter, double factor, int tap_count, int phase_count, int scale, int type); |
|
3dc9bbe1b152
polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
2064
diff
changeset
|
69 |
| 0 | 70 static inline int get_phase(int pos) |
| 71 { | |
| 72 return ((pos) >> (POS_FRAC_BITS - PHASE_BITS)) & ((1 << PHASE_BITS) - 1); | |
| 73 } | |
| 74 | |
| 75 /* This function must be optimized */ | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
76 static void h_resample_fast(uint8_t *dst, int dst_width, const uint8_t *src, |
| 2979 | 77 int src_width, int src_start, int src_incr, |
| 78 int16_t *filters) | |
| 0 | 79 { |
| 80 int src_pos, phase, sum, i; | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
81 const uint8_t *s; |
| 1064 | 82 int16_t *filter; |
| 0 | 83 |
| 84 src_pos = src_start; | |
| 85 for(i=0;i<dst_width;i++) { | |
| 86 #ifdef TEST | |
| 87 /* test */ | |
| 88 if ((src_pos >> POS_FRAC_BITS) < 0 || | |
| 89 (src_pos >> POS_FRAC_BITS) > (src_width - NB_TAPS)) | |
| 653 | 90 av_abort(); |
| 0 | 91 #endif |
| 92 s = src + (src_pos >> POS_FRAC_BITS); | |
| 93 phase = get_phase(src_pos); | |
| 94 filter = filters + phase * NB_TAPS; | |
| 95 #if NB_TAPS == 4 | |
| 96 sum = s[0] * filter[0] + | |
| 97 s[1] * filter[1] + | |
| 98 s[2] * filter[2] + | |
| 99 s[3] * filter[3]; | |
| 100 #else | |
| 101 { | |
| 102 int j; | |
| 103 sum = 0; | |
| 104 for(j=0;j<NB_TAPS;j++) | |
| 105 sum += s[j] * filter[j]; | |
| 106 } | |
| 107 #endif | |
| 108 sum = sum >> FILTER_BITS; | |
| 109 if (sum < 0) | |
| 110 sum = 0; | |
| 111 else if (sum > 255) | |
| 112 sum = 255; | |
| 113 dst[0] = sum; | |
| 114 src_pos += src_incr; | |
| 115 dst++; | |
| 116 } | |
| 117 } | |
| 118 | |
| 119 /* This function must be optimized */ | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
120 static void v_resample(uint8_t *dst, int dst_width, const uint8_t *src, |
| 2979 | 121 int wrap, int16_t *filter) |
| 0 | 122 { |
| 123 int sum, i; | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
124 const uint8_t *s; |
| 0 | 125 |
| 126 s = src; | |
| 127 for(i=0;i<dst_width;i++) { | |
| 128 #if NB_TAPS == 4 | |
| 129 sum = s[0 * wrap] * filter[0] + | |
| 130 s[1 * wrap] * filter[1] + | |
| 131 s[2 * wrap] * filter[2] + | |
| 132 s[3 * wrap] * filter[3]; | |
| 133 #else | |
| 134 { | |
| 135 int j; | |
| 1064 | 136 uint8_t *s1 = s; |
| 0 | 137 |
| 138 sum = 0; | |
| 139 for(j=0;j<NB_TAPS;j++) { | |
| 140 sum += s1[0] * filter[j]; | |
| 141 s1 += wrap; | |
| 142 } | |
| 143 } | |
| 144 #endif | |
| 145 sum = sum >> FILTER_BITS; | |
| 146 if (sum < 0) | |
| 147 sum = 0; | |
| 148 else if (sum > 255) | |
| 149 sum = 255; | |
| 150 dst[0] = sum; | |
| 151 dst++; | |
| 152 s++; | |
| 153 } | |
| 154 } | |
| 155 | |
| 2 | 156 #ifdef HAVE_MMX |
| 0 | 157 |
| 158 #include "i386/mmx.h" | |
| 159 | |
| 160 #define FILTER4(reg) \ | |
| 161 {\ | |
| 162 s = src + (src_pos >> POS_FRAC_BITS);\ | |
| 163 phase = get_phase(src_pos);\ | |
| 164 filter = filters + phase * NB_TAPS;\ | |
| 165 movq_m2r(*s, reg);\ | |
| 166 punpcklbw_r2r(mm7, reg);\ | |
| 167 movq_m2r(*filter, mm6);\ | |
| 168 pmaddwd_r2r(reg, mm6);\ | |
| 169 movq_r2r(mm6, reg);\ | |
| 170 psrlq_i2r(32, reg);\ | |
| 171 paddd_r2r(mm6, reg);\ | |
| 172 psrad_i2r(FILTER_BITS, reg);\ | |
| 173 src_pos += src_incr;\ | |
| 174 } | |
| 175 | |
|
4122
daae66c03857
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
4105
diff
changeset
|
176 #define DUMP(reg) movq_r2m(reg, tmp); printf(#reg "=%016"PRIx64"\n", tmp.uq); |
| 0 | 177 |
| 178 /* XXX: do four pixels at a time */ | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
179 static void h_resample_fast4_mmx(uint8_t *dst, int dst_width, |
| 2979 | 180 const uint8_t *src, int src_width, |
| 1064 | 181 int src_start, int src_incr, int16_t *filters) |
| 0 | 182 { |
| 183 int src_pos, phase; | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
184 const uint8_t *s; |
| 1064 | 185 int16_t *filter; |
| 8316 | 186 uint64_t tmp; |
| 2967 | 187 |
| 0 | 188 src_pos = src_start; |
| 189 pxor_r2r(mm7, mm7); | |
| 190 | |
| 191 while (dst_width >= 4) { | |
| 192 | |
| 193 FILTER4(mm0); | |
| 194 FILTER4(mm1); | |
| 195 FILTER4(mm2); | |
| 196 FILTER4(mm3); | |
| 197 | |
| 198 packuswb_r2r(mm7, mm0); | |
| 199 packuswb_r2r(mm7, mm1); | |
| 200 packuswb_r2r(mm7, mm3); | |
| 201 packuswb_r2r(mm7, mm2); | |
| 202 movq_r2m(mm0, tmp); | |
| 8316 | 203 dst[0] = tmp & 0xFF; |
| 0 | 204 movq_r2m(mm1, tmp); |
| 8316 | 205 dst[1] = tmp & 0xFF; |
| 0 | 206 movq_r2m(mm2, tmp); |
| 8316 | 207 dst[2] = tmp & 0xFF; |
| 0 | 208 movq_r2m(mm3, tmp); |
| 8316 | 209 dst[3] = tmp & 0xFF; |
| 0 | 210 dst += 4; |
| 211 dst_width -= 4; | |
| 212 } | |
| 213 while (dst_width > 0) { | |
| 214 FILTER4(mm0); | |
| 215 packuswb_r2r(mm7, mm0); | |
| 216 movq_r2m(mm0, tmp); | |
| 8316 | 217 dst[0] = tmp & 0xFF; |
| 0 | 218 dst++; |
| 219 dst_width--; | |
| 220 } | |
| 221 emms(); | |
| 222 } | |
| 223 | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
224 static void v_resample4_mmx(uint8_t *dst, int dst_width, const uint8_t *src, |
| 2979 | 225 int wrap, int16_t *filter) |
| 0 | 226 { |
| 8316 | 227 int sum, i; |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
228 const uint8_t *s; |
| 8316 | 229 uint64_t tmp; |
| 230 uint64_t coefs[4]; | |
| 2967 | 231 |
| 0 | 232 for(i=0;i<4;i++) { |
| 8316 | 233 tmp = filter[i]; |
| 234 coefs[i] = (tmp<<48) + (tmp<<32) + (tmp<<16) + tmp; | |
| 0 | 235 } |
| 2967 | 236 |
| 0 | 237 pxor_r2r(mm7, mm7); |
| 238 s = src; | |
| 239 while (dst_width >= 4) { | |
| 240 movq_m2r(s[0 * wrap], mm0); | |
| 241 punpcklbw_r2r(mm7, mm0); | |
| 242 movq_m2r(s[1 * wrap], mm1); | |
| 243 punpcklbw_r2r(mm7, mm1); | |
| 244 movq_m2r(s[2 * wrap], mm2); | |
| 245 punpcklbw_r2r(mm7, mm2); | |
| 246 movq_m2r(s[3 * wrap], mm3); | |
| 247 punpcklbw_r2r(mm7, mm3); | |
| 248 | |
| 249 pmullw_m2r(coefs[0], mm0); | |
| 250 pmullw_m2r(coefs[1], mm1); | |
| 251 pmullw_m2r(coefs[2], mm2); | |
| 252 pmullw_m2r(coefs[3], mm3); | |
| 253 | |
| 254 paddw_r2r(mm1, mm0); | |
| 255 paddw_r2r(mm3, mm2); | |
| 256 paddw_r2r(mm2, mm0); | |
| 257 psraw_i2r(FILTER_BITS, mm0); | |
| 2967 | 258 |
| 0 | 259 packuswb_r2r(mm7, mm0); |
| 260 movq_r2m(mm0, tmp); | |
| 261 | |
| 8316 | 262 *(uint32_t *)dst = tmp & 0xFFFFFFFF; |
| 0 | 263 dst += 4; |
| 264 s += 4; | |
| 265 dst_width -= 4; | |
| 266 } | |
| 267 while (dst_width > 0) { | |
| 268 sum = s[0 * wrap] * filter[0] + | |
| 269 s[1 * wrap] * filter[1] + | |
| 270 s[2 * wrap] * filter[2] + | |
| 271 s[3 * wrap] * filter[3]; | |
| 272 sum = sum >> FILTER_BITS; | |
| 273 if (sum < 0) | |
| 274 sum = 0; | |
| 275 else if (sum > 255) | |
| 276 sum = 255; | |
| 277 dst[0] = sum; | |
| 278 dst++; | |
| 279 s++; | |
| 280 dst_width--; | |
| 281 } | |
| 282 emms(); | |
| 283 } | |
| 5054 | 284 #endif /* HAVE_MMX */ |
| 0 | 285 |
| 5963 | 286 /* slow version to handle limit cases. Does not need optimization */ |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
287 static void h_resample_slow(uint8_t *dst, int dst_width, |
| 2979 | 288 const uint8_t *src, int src_width, |
| 1064 | 289 int src_start, int src_incr, int16_t *filters) |
| 0 | 290 { |
| 291 int src_pos, phase, sum, j, v, i; | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
292 const uint8_t *s, *src_end; |
| 1064 | 293 int16_t *filter; |
| 0 | 294 |
| 295 src_end = src + src_width; | |
| 296 src_pos = src_start; | |
| 297 for(i=0;i<dst_width;i++) { | |
| 298 s = src + (src_pos >> POS_FRAC_BITS); | |
| 299 phase = get_phase(src_pos); | |
| 300 filter = filters + phase * NB_TAPS; | |
| 301 sum = 0; | |
| 302 for(j=0;j<NB_TAPS;j++) { | |
| 303 if (s < src) | |
| 304 v = src[0]; | |
| 305 else if (s >= src_end) | |
| 306 v = src_end[-1]; | |
| 307 else | |
| 308 v = s[0]; | |
| 309 sum += v * filter[j]; | |
| 310 s++; | |
| 311 } | |
| 312 sum = sum >> FILTER_BITS; | |
| 313 if (sum < 0) | |
| 314 sum = 0; | |
| 315 else if (sum > 255) | |
| 316 sum = 255; | |
| 317 dst[0] = sum; | |
| 318 src_pos += src_incr; | |
| 319 dst++; | |
| 320 } | |
| 321 } | |
| 322 | |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
323 static void h_resample(uint8_t *dst, int dst_width, const uint8_t *src, |
| 2979 | 324 int src_width, int src_start, int src_incr, |
| 325 int16_t *filters) | |
| 0 | 326 { |
| 327 int n, src_end; | |
| 328 | |
| 329 if (src_start < 0) { | |
| 330 n = (0 - src_start + src_incr - 1) / src_incr; | |
| 331 h_resample_slow(dst, n, src, src_width, src_start, src_incr, filters); | |
| 332 dst += n; | |
| 333 dst_width -= n; | |
| 334 src_start += n * src_incr; | |
| 335 } | |
| 336 src_end = src_start + dst_width * src_incr; | |
| 337 if (src_end > ((src_width - NB_TAPS) << POS_FRAC_BITS)) { | |
| 2967 | 338 n = (((src_width - NB_TAPS + 1) << POS_FRAC_BITS) - 1 - src_start) / |
| 0 | 339 src_incr; |
| 340 } else { | |
| 341 n = dst_width; | |
| 342 } | |
| 2 | 343 #ifdef HAVE_MMX |
|
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8042
diff
changeset
|
344 if ((mm_flags & FF_MM_MMX) && NB_TAPS == 4) |
| 2967 | 345 h_resample_fast4_mmx(dst, n, |
| 0 | 346 src, src_width, src_start, src_incr, filters); |
| 347 else | |
| 348 #endif | |
| 2967 | 349 h_resample_fast(dst, n, |
| 0 | 350 src, src_width, src_start, src_incr, filters); |
| 351 if (n < dst_width) { | |
| 352 dst += n; | |
| 353 dst_width -= n; | |
| 354 src_start += n * src_incr; | |
| 2967 | 355 h_resample_slow(dst, dst_width, |
| 0 | 356 src, src_width, src_start, src_incr, filters); |
| 357 } | |
| 358 } | |
| 359 | |
| 2967 | 360 static void component_resample(ImgReSampleContext *s, |
| 1064 | 361 uint8_t *output, int owrap, int owidth, int oheight, |
| 362 uint8_t *input, int iwrap, int iwidth, int iheight) | |
| 0 | 363 { |
| 364 int src_y, src_y1, last_src_y, ring_y, phase_y, y1, y; | |
| 1064 | 365 uint8_t *new_line, *src_line; |
| 0 | 366 |
| 367 last_src_y = - FCENTER - 1; | |
| 368 /* position of the bottom of the filter in the source image */ | |
| 2967 | 369 src_y = (last_src_y + NB_TAPS) * POS_FRAC; |
| 0 | 370 ring_y = NB_TAPS; /* position in ring buffer */ |
| 371 for(y=0;y<oheight;y++) { | |
| 372 /* apply horizontal filter on new lines from input if needed */ | |
| 373 src_y1 = src_y >> POS_FRAC_BITS; | |
| 374 while (last_src_y < src_y1) { | |
| 375 if (++ring_y >= LINE_BUF_HEIGHT + NB_TAPS) | |
| 376 ring_y = NB_TAPS; | |
| 377 last_src_y++; | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
378 /* handle limit conditions : replicate line (slightly |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
379 inefficient because we filter multiple times) */ |
| 0 | 380 y1 = last_src_y; |
| 381 if (y1 < 0) { | |
| 382 y1 = 0; | |
| 383 } else if (y1 >= iheight) { | |
| 384 y1 = iheight - 1; | |
| 385 } | |
| 386 src_line = input + y1 * iwrap; | |
| 387 new_line = s->line_buf + ring_y * owidth; | |
| 388 /* apply filter and handle limit cases correctly */ | |
| 2967 | 389 h_resample(new_line, owidth, |
| 390 src_line, iwidth, - FCENTER * POS_FRAC, s->h_incr, | |
| 0 | 391 &s->h_filters[0][0]); |
| 6055 | 392 /* handle ring buffer wrapping */ |
| 0 | 393 if (ring_y >= LINE_BUF_HEIGHT) { |
| 394 memcpy(s->line_buf + (ring_y - LINE_BUF_HEIGHT) * owidth, | |
| 395 new_line, owidth); | |
| 396 } | |
| 397 } | |
| 398 /* apply vertical filter */ | |
| 399 phase_y = get_phase(src_y); | |
| 2 | 400 #ifdef HAVE_MMX |
| 0 | 401 /* desactivated MMX because loss of precision */ |
|
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8042
diff
changeset
|
402 if ((mm_flags & FF_MM_MMX) && NB_TAPS == 4 && 0) |
| 2967 | 403 v_resample4_mmx(output, owidth, |
| 404 s->line_buf + (ring_y - NB_TAPS + 1) * owidth, owidth, | |
| 0 | 405 &s->v_filters[phase_y][0]); |
| 406 else | |
| 407 #endif | |
|
894
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
653
diff
changeset
|
408 #ifdef HAVE_ALTIVEC |
|
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8042
diff
changeset
|
409 if ((mm_flags & FF_MM_ALTIVEC) && NB_TAPS == 4 && FILTER_BITS <= 6) |
| 7863 | 410 v_resample16_altivec(output, owidth, |
| 411 s->line_buf + (ring_y - NB_TAPS + 1) * owidth, | |
| 412 owidth, &s->v_filters[phase_y][0]); | |
|
894
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
653
diff
changeset
|
413 else |
|
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
653
diff
changeset
|
414 #endif |
| 2967 | 415 v_resample(output, owidth, |
| 416 s->line_buf + (ring_y - NB_TAPS + 1) * owidth, owidth, | |
| 0 | 417 &s->v_filters[phase_y][0]); |
| 2967 | 418 |
| 0 | 419 src_y += s->v_incr; |
| 2967 | 420 |
| 0 | 421 output += owrap; |
| 422 } | |
| 423 } | |
| 424 | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
425 ImgReSampleContext *img_resample_full_init(int owidth, int oheight, |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
426 int iwidth, int iheight, |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
427 int topBand, int bottomBand, |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
428 int leftBand, int rightBand, |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
429 int padtop, int padbottom, |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
430 int padleft, int padright) |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
431 { |
| 0 | 432 ImgReSampleContext *s; |
| 433 | |
| 2904 | 434 if (!owidth || !oheight || !iwidth || !iheight) |
| 2979 | 435 return NULL; |
| 2904 | 436 |
| 0 | 437 s = av_mallocz(sizeof(ImgReSampleContext)); |
| 438 if (!s) | |
| 439 return NULL; | |
| 2422 | 440 if((unsigned)owidth >= UINT_MAX / (LINE_BUF_HEIGHT + NB_TAPS)) |
| 6912 | 441 goto fail; |
| 0 | 442 s->line_buf = av_mallocz(owidth * (LINE_BUF_HEIGHT + NB_TAPS)); |
| 2967 | 443 if (!s->line_buf) |
| 0 | 444 goto fail; |
| 2967 | 445 |
| 0 | 446 s->owidth = owidth; |
| 447 s->oheight = oheight; | |
| 448 s->iwidth = iwidth; | |
| 449 s->iheight = iheight; | |
| 2967 | 450 |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
451 s->topBand = topBand; |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
452 s->bottomBand = bottomBand; |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
453 s->leftBand = leftBand; |
|
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
454 s->rightBand = rightBand; |
| 2967 | 455 |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
456 s->padtop = padtop; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
457 s->padbottom = padbottom; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
458 s->padleft = padleft; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
459 s->padright = padright; |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
460 |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
461 s->pad_owidth = owidth - (padleft + padright); |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
462 s->pad_oheight = oheight - (padtop + padbottom); |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
463 |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
464 s->h_incr = ((iwidth - leftBand - rightBand) * POS_FRAC) / s->pad_owidth; |
| 2967 | 465 s->v_incr = ((iheight - topBand - bottomBand) * POS_FRAC) / s->pad_oheight; |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
466 |
| 2967 | 467 av_build_filter(&s->h_filters[0][0], (float) s->pad_owidth / |
|
2082
3dc9bbe1b152
polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
2064
diff
changeset
|
468 (float) (iwidth - leftBand - rightBand), NB_TAPS, NB_PHASES, 1<<FILTER_BITS, 0); |
| 2967 | 469 av_build_filter(&s->v_filters[0][0], (float) s->pad_oheight / |
|
2082
3dc9bbe1b152
polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample filters
michael
parents:
2064
diff
changeset
|
470 (float) (iheight - topBand - bottomBand), NB_TAPS, NB_PHASES, 1<<FILTER_BITS, 0); |
| 0 | 471 |
| 472 return s; | |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
473 fail: |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
18
diff
changeset
|
474 av_free(s); |
| 0 | 475 return NULL; |
| 476 } | |
| 477 | |
|
7823
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
478 ImgReSampleContext *img_resample_init(int owidth, int oheight, |
|
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
479 int iwidth, int iheight) |
|
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
480 { |
|
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
481 return img_resample_full_init(owidth, oheight, iwidth, iheight, |
|
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
482 0, 0, 0, 0, 0, 0, 0, 0); |
|
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
483 } |
|
4525dcd81357
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
6974
diff
changeset
|
484 |
| 2967 | 485 void img_resample(ImgReSampleContext *s, |
|
1488
766a2f4edbea
avcodec const correctness patch by (Drew Hess <dhess at ilm dot com>)
michaelni
parents:
1106
diff
changeset
|
486 AVPicture *output, const AVPicture *input) |
| 0 | 487 { |
| 488 int i, shift; | |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
489 uint8_t* optr; |
| 0 | 490 |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
491 for (i=0;i<3;i++) { |
| 0 | 492 shift = (i == 0) ? 0 : 1; |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
493 |
| 2967 | 494 optr = output->data[i] + (((output->linesize[i] * |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
495 s->padtop) + s->padleft) >> shift); |
|
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
496 |
| 2967 | 497 component_resample(s, optr, output->linesize[i], |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
498 s->pad_owidth >> shift, s->pad_oheight >> shift, |
| 2967 | 499 input->data[i] + (input->linesize[i] * |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
500 (s->topBand >> shift)) + (s->leftBand >> shift), |
| 2967 | 501 input->linesize[i], ((s->iwidth - s->leftBand - |
|
1928
0c23a5564489
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
michael
parents:
1488
diff
changeset
|
502 s->rightBand) >> shift), |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
503 (s->iheight - s->topBand - s->bottomBand) >> shift); |
| 0 | 504 } |
| 505 } | |
| 506 | |
| 507 void img_resample_close(ImgReSampleContext *s) | |
| 508 { | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
18
diff
changeset
|
509 av_free(s->line_buf); |
|
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
18
diff
changeset
|
510 av_free(s); |
| 0 | 511 } |
| 512 | |
| 6974 | 513 static const char *context_to_name(void* ptr) |
| 514 { | |
| 515 return "imgconvert"; | |
| 516 } | |
| 517 | |
| 518 static const AVClass context_class = { "imgresample", context_to_name, NULL }; | |
|
6433
d42d5a90f7de
Provide non null class name to avoid crash with ffmpeg -h.
michael
parents:
6055
diff
changeset
|
519 |
| 3249 | 520 struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, |
| 521 int dstW, int dstH, int dstFormat, | |
| 522 int flags, SwsFilter *srcFilter, | |
| 523 SwsFilter *dstFilter, double *param) | |
| 524 { | |
| 525 struct SwsContext *ctx; | |
| 526 | |
| 527 ctx = av_malloc(sizeof(struct SwsContext)); | |
|
6433
d42d5a90f7de
Provide non null class name to avoid crash with ffmpeg -h.
michael
parents:
6055
diff
changeset
|
528 if (!ctx) { |
| 3249 | 529 av_log(NULL, AV_LOG_ERROR, "Cannot allocate a resampling context!\n"); |
| 530 | |
| 531 return NULL; | |
| 532 } | |
|
6433
d42d5a90f7de
Provide non null class name to avoid crash with ffmpeg -h.
michael
parents:
6055
diff
changeset
|
533 ctx->av_class = &context_class; |
| 3249 | 534 |
| 535 if ((srcH != dstH) || (srcW != dstW)) { | |
| 536 if ((srcFormat != PIX_FMT_YUV420P) || (dstFormat != PIX_FMT_YUV420P)) { | |
| 6962 | 537 av_log(ctx, AV_LOG_INFO, "PIX_FMT_YUV420P will be used as an intermediate format for rescaling\n"); |
| 3249 | 538 } |
| 539 ctx->resampling_ctx = img_resample_init(dstW, dstH, srcW, srcH); | |
| 540 } else { | |
| 541 ctx->resampling_ctx = av_malloc(sizeof(ImgReSampleContext)); | |
| 542 ctx->resampling_ctx->iheight = srcH; | |
| 543 ctx->resampling_ctx->iwidth = srcW; | |
| 544 ctx->resampling_ctx->oheight = dstH; | |
| 545 ctx->resampling_ctx->owidth = dstW; | |
| 546 } | |
| 547 ctx->src_pix_fmt = srcFormat; | |
| 548 ctx->dst_pix_fmt = dstFormat; | |
| 549 | |
| 550 return ctx; | |
| 551 } | |
| 552 | |
| 553 void sws_freeContext(struct SwsContext *ctx) | |
| 554 { | |
|
4357
1654075b205c
fix segfault with http://sam.zoy.org/zzuf/lol-ffplay.ogm and
takis
parents:
4197
diff
changeset
|
555 if (!ctx) |
|
1654075b205c
fix segfault with http://sam.zoy.org/zzuf/lol-ffplay.ogm and
takis
parents:
4197
diff
changeset
|
556 return; |
| 3249 | 557 if ((ctx->resampling_ctx->iwidth != ctx->resampling_ctx->owidth) || |
| 558 (ctx->resampling_ctx->iheight != ctx->resampling_ctx->oheight)) { | |
| 559 img_resample_close(ctx->resampling_ctx); | |
| 560 } else { | |
| 561 av_free(ctx->resampling_ctx); | |
| 562 } | |
| 563 av_free(ctx); | |
| 564 } | |
| 565 | |
|
4036
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
566 |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
567 /** |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
568 * Checks if context is valid or reallocs a new one instead. |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
569 * If context is NULL, just calls sws_getContext() to get a new one. |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
570 * Otherwise, checks if the parameters are the same already saved in context. |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
571 * If that is the case, returns the current context. |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
572 * Otherwise, frees context and gets a new one. |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
573 * |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
574 * Be warned that srcFilter, dstFilter are not checked, they are |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
575 * asumed to remain valid. |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
576 */ |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
577 struct SwsContext *sws_getCachedContext(struct SwsContext *ctx, |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
578 int srcW, int srcH, int srcFormat, |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
579 int dstW, int dstH, int dstFormat, int flags, |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
580 SwsFilter *srcFilter, SwsFilter *dstFilter, double *param) |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
581 { |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
582 if (ctx != NULL) { |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
583 if ((ctx->resampling_ctx->iwidth != srcW) || |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
584 (ctx->resampling_ctx->iheight != srcH) || |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
585 (ctx->src_pix_fmt != srcFormat) || |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
586 (ctx->resampling_ctx->owidth != dstW) || |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
587 (ctx->resampling_ctx->oheight != dstH) || |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
588 (ctx->dst_pix_fmt != dstFormat)) |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
589 { |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
590 sws_freeContext(ctx); |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
591 ctx = NULL; |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
592 } |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
593 } |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
594 if (ctx == NULL) { |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
595 return sws_getContext(srcW, srcH, srcFormat, |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
596 dstW, dstH, dstFormat, flags, |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
597 srcFilter, dstFilter, param); |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
598 } |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
599 return ctx; |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
600 } |
|
207c22206d53
Implement sws_getCachedContext() in swscale emulation
lucabe
parents:
3947
diff
changeset
|
601 |
| 3249 | 602 int sws_scale(struct SwsContext *ctx, uint8_t* src[], int srcStride[], |
| 603 int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]) | |
| 604 { | |
| 605 AVPicture src_pict, dst_pict; | |
| 606 int i, res = 0; | |
| 607 AVPicture picture_format_temp; | |
| 608 AVPicture picture_resample_temp, *formatted_picture, *resampled_picture; | |
| 609 uint8_t *buf1 = NULL, *buf2 = NULL; | |
| 610 enum PixelFormat current_pix_fmt; | |
| 611 | |
| 4105 | 612 for (i = 0; i < 4; i++) { |
| 3249 | 613 src_pict.data[i] = src[i]; |
| 614 src_pict.linesize[i] = srcStride[i]; | |
| 615 dst_pict.data[i] = dst[i]; | |
| 616 dst_pict.linesize[i] = dstStride[i]; | |
| 617 } | |
| 618 if ((ctx->resampling_ctx->iwidth != ctx->resampling_ctx->owidth) || | |
| 619 (ctx->resampling_ctx->iheight != ctx->resampling_ctx->oheight)) { | |
| 620 /* We have to rescale the picture, but only YUV420P rescaling is supported... */ | |
| 621 | |
| 622 if (ctx->src_pix_fmt != PIX_FMT_YUV420P) { | |
| 623 int size; | |
| 624 | |
| 625 /* create temporary picture for rescaling input*/ | |
| 626 size = avpicture_get_size(PIX_FMT_YUV420P, ctx->resampling_ctx->iwidth, ctx->resampling_ctx->iheight); | |
| 627 buf1 = av_malloc(size); | |
| 628 if (!buf1) { | |
| 629 res = -1; | |
| 630 goto the_end; | |
| 631 } | |
| 632 formatted_picture = &picture_format_temp; | |
| 633 avpicture_fill((AVPicture*)formatted_picture, buf1, | |
| 634 PIX_FMT_YUV420P, ctx->resampling_ctx->iwidth, ctx->resampling_ctx->iheight); | |
| 635 | |
| 636 if (img_convert((AVPicture*)formatted_picture, PIX_FMT_YUV420P, | |
| 637 &src_pict, ctx->src_pix_fmt, | |
| 638 ctx->resampling_ctx->iwidth, ctx->resampling_ctx->iheight) < 0) { | |
| 639 | |
| 6962 | 640 av_log(ctx, AV_LOG_ERROR, "pixel format conversion not handled\n"); |
| 3249 | 641 res = -1; |
| 642 goto the_end; | |
| 643 } | |
| 644 } else { | |
| 645 formatted_picture = &src_pict; | |
| 646 } | |
| 647 | |
| 648 if (ctx->dst_pix_fmt != PIX_FMT_YUV420P) { | |
| 649 int size; | |
| 650 | |
| 651 /* create temporary picture for rescaling output*/ | |
| 652 size = avpicture_get_size(PIX_FMT_YUV420P, ctx->resampling_ctx->owidth, ctx->resampling_ctx->oheight); | |
| 653 buf2 = av_malloc(size); | |
| 654 if (!buf2) { | |
| 655 res = -1; | |
| 656 goto the_end; | |
| 657 } | |
| 658 resampled_picture = &picture_resample_temp; | |
| 659 avpicture_fill((AVPicture*)resampled_picture, buf2, | |
| 660 PIX_FMT_YUV420P, ctx->resampling_ctx->owidth, ctx->resampling_ctx->oheight); | |
| 661 | |
| 662 } else { | |
| 663 resampled_picture = &dst_pict; | |
| 664 } | |
| 665 | |
| 666 /* ...and finally rescale!!! */ | |
| 667 img_resample(ctx->resampling_ctx, resampled_picture, formatted_picture); | |
| 668 current_pix_fmt = PIX_FMT_YUV420P; | |
| 669 } else { | |
| 670 resampled_picture = &src_pict; | |
| 671 current_pix_fmt = ctx->src_pix_fmt; | |
| 672 } | |
| 673 | |
| 674 if (current_pix_fmt != ctx->dst_pix_fmt) { | |
| 675 if (img_convert(&dst_pict, ctx->dst_pix_fmt, | |
| 676 resampled_picture, current_pix_fmt, | |
| 677 ctx->resampling_ctx->owidth, ctx->resampling_ctx->oheight) < 0) { | |
| 678 | |
| 6962 | 679 av_log(ctx, AV_LOG_ERROR, "pixel format conversion not handled\n"); |
| 3249 | 680 |
| 681 res = -1; | |
| 682 goto the_end; | |
| 683 } | |
| 3516 | 684 } else if (resampled_picture != &dst_pict) { |
|
4624
6a900f539e2c
Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"
takis
parents:
4357
diff
changeset
|
685 av_picture_copy(&dst_pict, resampled_picture, current_pix_fmt, |
| 3516 | 686 ctx->resampling_ctx->owidth, ctx->resampling_ctx->oheight); |
| 3249 | 687 } |
| 688 | |
| 689 the_end: | |
| 690 av_free(buf1); | |
| 691 av_free(buf2); | |
| 692 return res; | |
| 693 } | |
| 694 | |
| 695 | |
| 0 | 696 #ifdef TEST |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
697 #include <stdio.h> |
| 5055 | 698 #undef exit |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
699 |
| 0 | 700 /* input */ |
| 701 #define XSIZE 256 | |
| 702 #define YSIZE 256 | |
| 1064 | 703 uint8_t img[XSIZE * YSIZE]; |
| 0 | 704 |
| 705 /* output */ | |
| 706 #define XSIZE1 512 | |
| 707 #define YSIZE1 512 | |
| 1064 | 708 uint8_t img1[XSIZE1 * YSIZE1]; |
| 709 uint8_t img2[XSIZE1 * YSIZE1]; | |
| 0 | 710 |
| 1064 | 711 void save_pgm(const char *filename, uint8_t *img, int xsize, int ysize) |
| 0 | 712 { |
|
2846
40765c51a7a9
Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf uni-stuttgart de)
michael
parents:
2423
diff
changeset
|
713 #undef fprintf |
| 0 | 714 FILE *f; |
| 715 f=fopen(filename,"w"); | |
| 716 fprintf(f,"P5\n%d %d\n%d\n", xsize, ysize, 255); | |
| 717 fwrite(img,1, xsize * ysize,f); | |
| 718 fclose(f); | |
|
2846
40765c51a7a9
Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf uni-stuttgart de)
michael
parents:
2423
diff
changeset
|
719 #define fprintf please_use_av_log |
| 0 | 720 } |
| 721 | |
| 1064 | 722 static void dump_filter(int16_t *filter) |
| 0 | 723 { |
| 724 int i, ph; | |
| 725 | |
| 726 for(ph=0;ph<NB_PHASES;ph++) { | |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
727 av_log(NULL, AV_LOG_INFO, "%2d: ", ph); |
| 0 | 728 for(i=0;i<NB_TAPS;i++) { |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
729 av_log(NULL, AV_LOG_INFO, " %5.2f", filter[ph * NB_TAPS + i] / 256.0); |
| 0 | 730 } |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
731 av_log(NULL, AV_LOG_INFO, "\n"); |
| 0 | 732 } |
| 733 } | |
| 734 | |
| 2 | 735 #ifdef HAVE_MMX |
| 644 | 736 int mm_flags; |
| 0 | 737 #endif |
| 738 | |
| 739 int main(int argc, char **argv) | |
| 740 { | |
| 741 int x, y, v, i, xsize, ysize; | |
| 742 ImgReSampleContext *s; | |
| 743 float fact, factors[] = { 1/2.0, 3.0/4.0, 1.0, 4.0/3.0, 16.0/9.0, 2.0 }; | |
| 744 char buf[256]; | |
| 745 | |
| 746 /* build test image */ | |
| 747 for(y=0;y<YSIZE;y++) { | |
| 748 for(x=0;x<XSIZE;x++) { | |
| 749 if (x < XSIZE/2 && y < YSIZE/2) { | |
| 750 if (x < XSIZE/4 && y < YSIZE/4) { | |
| 751 if ((x % 10) <= 6 && | |
| 752 (y % 10) <= 6) | |
| 753 v = 0xff; | |
| 754 else | |
| 755 v = 0x00; | |
| 756 } else if (x < XSIZE/4) { | |
| 2967 | 757 if (x & 1) |
| 0 | 758 v = 0xff; |
| 2967 | 759 else |
| 0 | 760 v = 0; |
| 761 } else if (y < XSIZE/4) { | |
| 2967 | 762 if (y & 1) |
| 0 | 763 v = 0xff; |
| 2967 | 764 else |
| 0 | 765 v = 0; |
| 766 } else { | |
| 767 if (y < YSIZE*3/8) { | |
| 2967 | 768 if ((y+x) & 1) |
| 0 | 769 v = 0xff; |
| 2967 | 770 else |
| 0 | 771 v = 0; |
| 772 } else { | |
| 773 if (((x+3) % 4) <= 1 && | |
| 774 ((y+3) % 4) <= 1) | |
| 775 v = 0xff; | |
| 776 else | |
| 777 v = 0x00; | |
| 778 } | |
| 779 } | |
| 780 } else if (x < XSIZE/2) { | |
| 781 v = ((x - (XSIZE/2)) * 255) / (XSIZE/2); | |
| 782 } else if (y < XSIZE/2) { | |
| 783 v = ((y - (XSIZE/2)) * 255) / (XSIZE/2); | |
| 784 } else { | |
| 785 v = ((x + y - XSIZE) * 255) / XSIZE; | |
| 786 } | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
787 img[(YSIZE - y) * XSIZE + (XSIZE - x)] = v; |
| 0 | 788 } |
| 789 } | |
| 790 save_pgm("/tmp/in.pgm", img, XSIZE, YSIZE); | |
| 8042 | 791 for(i=0;i<FF_ARRAY_ELEMS(factors);i++) { |
| 0 | 792 fact = factors[i]; |
| 793 xsize = (int)(XSIZE * fact); | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
794 ysize = (int)((YSIZE - 100) * fact); |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
795 s = img_resample_full_init(xsize, ysize, XSIZE, YSIZE, 50 ,50, 0, 0, 0, 0, 0, 0); |
|
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
796 av_log(NULL, AV_LOG_INFO, "Factor=%0.2f\n", fact); |
| 0 | 797 dump_filter(&s->h_filters[0][0]); |
| 798 component_resample(s, img1, xsize, xsize, ysize, | |
|
630
b4ee42142ad1
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
michaelni
parents:
429
diff
changeset
|
799 img + 50 * XSIZE, XSIZE, XSIZE, YSIZE - 100); |
| 0 | 800 img_resample_close(s); |
| 801 | |
| 2423 | 802 snprintf(buf, sizeof(buf), "/tmp/out%d.pgm", i); |
| 0 | 803 save_pgm(buf, img1, xsize, ysize); |
| 804 } | |
| 805 | |
| 806 /* mmx test */ | |
| 2 | 807 #ifdef HAVE_MMX |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
808 av_log(NULL, AV_LOG_INFO, "MMX test\n"); |
| 0 | 809 fact = 0.72; |
| 810 xsize = (int)(XSIZE * fact); | |
| 811 ysize = (int)(YSIZE * fact); | |
|
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8042
diff
changeset
|
812 mm_flags = FF_MM_MMX; |
| 0 | 813 s = img_resample_init(xsize, ysize, XSIZE, YSIZE); |
| 814 component_resample(s, img1, xsize, xsize, ysize, | |
| 815 img, XSIZE, XSIZE, YSIZE); | |
| 816 | |
| 817 mm_flags = 0; | |
| 818 s = img_resample_init(xsize, ysize, XSIZE, YSIZE); | |
| 819 component_resample(s, img2, xsize, xsize, ysize, | |
| 820 img, XSIZE, XSIZE, YSIZE); | |
| 821 if (memcmp(img1, img2, xsize * ysize) != 0) { | |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
822 av_log(NULL, AV_LOG_ERROR, "mmx error\n"); |
| 0 | 823 exit(1); |
| 824 } | |
|
2400
17ec73c65748
imgresample test cleanup patch by (Panagiotis Issaris <takis )( lumumba d0t luc d0t ac.be>)
michael
parents:
2082
diff
changeset
|
825 av_log(NULL, AV_LOG_INFO, "MMX OK\n"); |
| 5054 | 826 #endif /* HAVE_MMX */ |
| 0 | 827 return 0; |
| 828 } | |
| 829 | |
| 5054 | 830 #endif /* TEST */ |
