[svn] / branches / dev-api-4 / xvidcore / src / image / image.c Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/src/image/image.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1161 - (view) (download)

1 : edgomez 851 /**************************************************************************
2 : albeu 315 *
3 : edgomez 1054 * XVID MPEG-4 VIDEO CODEC
4 :     * - Image management functions -
5 : albeu 315 *
6 : edgomez 1054 * Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
7 : albeu 315 *
8 : edgomez 1054 * This program is free software ; you can redistribute it and/or modify
9 :     * it under the terms of the GNU General Public License as published by
10 :     * the Free Software Foundation ; either version 2 of the License, or
11 :     * (at your option) any later version.
12 : albeu 315 *
13 : edgomez 1054 * This program is distributed in the hope that it will be useful,
14 :     * but WITHOUT ANY WARRANTY ; without even the implied warranty of
15 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 :     * GNU General Public License for more details.
17 : albeu 315 *
18 : edgomez 1054 * You should have received a copy of the GNU General Public License
19 :     * along with this program ; if not, write to the Free Software
20 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 : albeu 315 *
22 : edgomez 1161 * $Id: image.c,v 1.26.2.10 2003-10-01 23:23:01 edgomez Exp $
23 : albeu 315 *
24 : edgomez 1054 ****************************************************************************/
25 : albeu 315
26 :     #include <stdlib.h>
27 : edgomez 1053 #include <string.h> /* memcpy, memset */
28 : albeu 315 #include <math.h>
29 :    
30 :     #include "../portab.h"
31 : edgomez 1053 #include "../global.h"
32 :     #include "../xvid.h"
33 : albeu 315 #include "image.h"
34 :     #include "colorspace.h"
35 :     #include "interpolate8x8.h"
36 : edgomez 851 #include "reduced.h"
37 : albeu 315 #include "../utils/mem_align.h"
38 :    
39 : edgomez 1053 #include "font.h"
40 : edgomez 851
41 : albeu 315 #define SAFETY 64
42 :     #define EDGE_SIZE2 (EDGE_SIZE/2)
43 :    
44 :    
45 :     int32_t
46 :     image_create(IMAGE * image,
47 :     uint32_t edged_width,
48 :     uint32_t edged_height)
49 :     {
50 :     const uint32_t edged_width2 = edged_width / 2;
51 :     const uint32_t edged_height2 = edged_height / 2;
52 :    
53 :     image->y =
54 :     xvid_malloc(edged_width * (edged_height + 1) + SAFETY, CACHE_LINE);
55 :     if (image->y == NULL) {
56 :     return -1;
57 :     }
58 : edgomez 1157 memset(image->y, 0, edged_width * (edged_height + 1) + SAFETY);
59 : albeu 315
60 :     image->u = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);
61 :     if (image->u == NULL) {
62 :     xvid_free(image->y);
63 : edgomez 1157 image->y = NULL;
64 : albeu 315 return -1;
65 :     }
66 : edgomez 1157 memset(image->u, 0, edged_width2 * edged_height2 + SAFETY);
67 :    
68 : albeu 315 image->v = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);
69 :     if (image->v == NULL) {
70 :     xvid_free(image->u);
71 : edgomez 1157 image->u = NULL;
72 : albeu 315 xvid_free(image->y);
73 : edgomez 1157 image->y = NULL;
74 : albeu 315 return -1;
75 :     }
76 : edgomez 1157 memset(image->v, 0, edged_width2 * edged_height2 + SAFETY);
77 : albeu 315
78 :     image->y += EDGE_SIZE * edged_width + EDGE_SIZE;
79 :     image->u += EDGE_SIZE2 * edged_width2 + EDGE_SIZE2;
80 :     image->v += EDGE_SIZE2 * edged_width2 + EDGE_SIZE2;
81 :    
82 :     return 0;
83 :     }
84 :    
85 :    
86 :    
87 :     void
88 :     image_destroy(IMAGE * image,
89 :     uint32_t edged_width,
90 :     uint32_t edged_height)
91 :     {
92 :     const uint32_t edged_width2 = edged_width / 2;
93 :    
94 :     if (image->y) {
95 :     xvid_free(image->y - (EDGE_SIZE * edged_width + EDGE_SIZE));
96 : edgomez 1157 image->y = NULL;
97 : albeu 315 }
98 :     if (image->u) {
99 :     xvid_free(image->u - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));
100 : edgomez 1157 image->u = NULL;
101 : albeu 315 }
102 :     if (image->v) {
103 :     xvid_free(image->v - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));
104 : edgomez 1157 image->v = NULL;
105 : albeu 315 }
106 :     }
107 :    
108 :    
109 :     void
110 :     image_swap(IMAGE * image1,
111 :     IMAGE * image2)
112 :     {
113 : suxen_drol 926 SWAP(uint8_t*, image1->y, image2->y);
114 :     SWAP(uint8_t*, image1->u, image2->u);
115 :     SWAP(uint8_t*, image1->v, image2->v);
116 : albeu 315 }
117 :    
118 :    
119 :     void
120 :     image_copy(IMAGE * image1,
121 :     IMAGE * image2,
122 :     uint32_t edged_width,
123 :     uint32_t height)
124 :     {
125 :     memcpy(image1->y, image2->y, edged_width * height);
126 :     memcpy(image1->u, image2->u, edged_width * height / 4);
127 :     memcpy(image1->v, image2->v, edged_width * height / 4);
128 :     }
129 :    
130 :    
131 :     void
132 :     image_setedges(IMAGE * image,
133 :     uint32_t edged_width,
134 :     uint32_t edged_height,
135 :     uint32_t width,
136 : h 541 uint32_t height)
137 : albeu 315 {
138 :     const uint32_t edged_width2 = edged_width / 2;
139 : edgomez 1128 uint32_t width2;
140 : albeu 315 uint32_t i;
141 :     uint8_t *dst;
142 :     uint8_t *src;
143 :    
144 :    
145 :     dst = image->y - (EDGE_SIZE + EDGE_SIZE * edged_width);
146 :     src = image->y;
147 :    
148 : edgomez 1128 /* According to the Standard Clause 7.6.4, padding is done starting at 16
149 :     * pixel width and height multiples */
150 :     width = (width+15)&~15;
151 :     height = (height+15)&~15;
152 :     width2 = width/2;
153 :    
154 : albeu 315 for (i = 0; i < EDGE_SIZE; i++) {
155 : edgomez 851 memset(dst, *src, EDGE_SIZE);
156 :     memcpy(dst + EDGE_SIZE, src, width);
157 :     memset(dst + edged_width - EDGE_SIZE, *(src + width - 1),
158 :     EDGE_SIZE);
159 : albeu 315 dst += edged_width;
160 :     }
161 :    
162 :     for (i = 0; i < height; i++) {
163 :     memset(dst, *src, EDGE_SIZE);
164 :     memset(dst + edged_width - EDGE_SIZE, src[width - 1], EDGE_SIZE);
165 :     dst += edged_width;
166 :     src += edged_width;
167 :     }
168 :    
169 :     src -= edged_width;
170 :     for (i = 0; i < EDGE_SIZE; i++) {
171 : edgomez 851 memset(dst, *src, EDGE_SIZE);
172 :     memcpy(dst + EDGE_SIZE, src, width);
173 :     memset(dst + edged_width - EDGE_SIZE, *(src + width - 1),
174 : albeu 315 EDGE_SIZE);
175 :     dst += edged_width;
176 :     }
177 :    
178 :    
179 : edgomez 1053 /* U */
180 : albeu 315 dst = image->u - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);
181 :     src = image->u;
182 :    
183 :     for (i = 0; i < EDGE_SIZE2; i++) {
184 :     memset(dst, *src, EDGE_SIZE2);
185 :     memcpy(dst + EDGE_SIZE2, src, width2);
186 :     memset(dst + edged_width2 - EDGE_SIZE2, *(src + width2 - 1),
187 :     EDGE_SIZE2);
188 :     dst += edged_width2;
189 :     }
190 :    
191 :     for (i = 0; i < height / 2; i++) {
192 :     memset(dst, *src, EDGE_SIZE2);
193 :     memset(dst + edged_width2 - EDGE_SIZE2, src[width2 - 1], EDGE_SIZE2);
194 :     dst += edged_width2;
195 :     src += edged_width2;
196 :     }
197 :     src -= edged_width2;
198 :     for (i = 0; i < EDGE_SIZE2; i++) {
199 :     memset(dst, *src, EDGE_SIZE2);
200 :     memcpy(dst + EDGE_SIZE2, src, width2);
201 :     memset(dst + edged_width2 - EDGE_SIZE2, *(src + width2 - 1),
202 :     EDGE_SIZE2);
203 :     dst += edged_width2;
204 :     }
205 :    
206 :    
207 : edgomez 1053 /* V */
208 : albeu 315 dst = image->v - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);
209 :     src = image->v;
210 :    
211 :     for (i = 0; i < EDGE_SIZE2; i++) {
212 :     memset(dst, *src, EDGE_SIZE2);
213 :     memcpy(dst + EDGE_SIZE2, src, width2);
214 :     memset(dst + edged_width2 - EDGE_SIZE2, *(src + width2 - 1),
215 :     EDGE_SIZE2);
216 :     dst += edged_width2;
217 :     }
218 :    
219 :     for (i = 0; i < height / 2; i++) {
220 :     memset(dst, *src, EDGE_SIZE2);
221 :     memset(dst + edged_width2 - EDGE_SIZE2, src[width2 - 1], EDGE_SIZE2);
222 :     dst += edged_width2;
223 :     src += edged_width2;
224 :     }
225 :     src -= edged_width2;
226 :     for (i = 0; i < EDGE_SIZE2; i++) {
227 :     memset(dst, *src, EDGE_SIZE2);
228 :     memcpy(dst + EDGE_SIZE2, src, width2);
229 :     memset(dst + edged_width2 - EDGE_SIZE2, *(src + width2 - 1),
230 :     EDGE_SIZE2);
231 :     dst += edged_width2;
232 :     }
233 :     }
234 :    
235 : edgomez 1053 /* bframe encoding requires image-based u,v interpolation */
236 : albeu 315 void
237 :     image_interpolate(const IMAGE * refn,
238 :     IMAGE * refh,
239 :     IMAGE * refv,
240 :     IMAGE * refhv,
241 :     uint32_t edged_width,
242 :     uint32_t edged_height,
243 : edgomez 851 uint32_t quarterpel,
244 : albeu 315 uint32_t rounding)
245 :     {
246 : edgomez 1053 const uint32_t offset = EDGE_SIZE2 * (edged_width + 1); /* we only interpolate half of the edge area */
247 : albeu 315 const uint32_t stride_add = 7 * edged_width;
248 : edgomez 1053 #if 0
249 : edgomez 851 const uint32_t edged_width2 = edged_width / 2;
250 :     const uint32_t edged_height2 = edged_height / 2;
251 :     const uint32_t offset2 = EDGE_SIZE2 * (edged_width2 + 1);
252 :     const uint32_t stride_add2 = 7 * edged_width2;
253 :     #endif
254 : albeu 315 uint8_t *n_ptr, *h_ptr, *v_ptr, *hv_ptr;
255 :     uint32_t x, y;
256 :    
257 :    
258 :     n_ptr = refn->y;
259 :     h_ptr = refh->y;
260 :     v_ptr = refv->y;
261 :     hv_ptr = refhv->y;
262 :    
263 :     n_ptr -= offset;
264 :     h_ptr -= offset;
265 :     v_ptr -= offset;
266 :     hv_ptr -= offset;
267 :    
268 : edgomez 851 if(quarterpel) {
269 : edgomez 1161
270 : edgomez 851 for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {
271 :     for (x = 0; x < (edged_width - EDGE_SIZE); x += 8) {
272 :     interpolate8x8_6tap_lowpass_h(h_ptr, n_ptr, edged_width, rounding);
273 :     interpolate8x8_6tap_lowpass_v(v_ptr, n_ptr, edged_width, rounding);
274 : albeu 315
275 : edgomez 851 n_ptr += 8;
276 :     h_ptr += 8;
277 :     v_ptr += 8;
278 :     }
279 : edgomez 1161
280 : edgomez 851 n_ptr += EDGE_SIZE;
281 :     h_ptr += EDGE_SIZE;
282 :     v_ptr += EDGE_SIZE;
283 :    
284 :     h_ptr += stride_add;
285 :     v_ptr += stride_add;
286 :     n_ptr += stride_add;
287 :     }
288 :    
289 :     h_ptr = refh->y;
290 :     h_ptr -= offset;
291 :    
292 :     for (y = 0; y < (edged_height - EDGE_SIZE); y = y + 8) {
293 :     for (x = 0; x < (edged_width - EDGE_SIZE); x = x + 8) {
294 :     interpolate8x8_6tap_lowpass_v(hv_ptr, h_ptr, edged_width, rounding);
295 :     hv_ptr += 8;
296 :     h_ptr += 8;
297 :     }
298 :    
299 :     hv_ptr += EDGE_SIZE;
300 :     h_ptr += EDGE_SIZE;
301 :    
302 :     hv_ptr += stride_add;
303 :     h_ptr += stride_add;
304 :     }
305 :     }
306 :     else {
307 :    
308 :     for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {
309 :     for (x = 0; x < (edged_width - EDGE_SIZE); x += 8) {
310 :     interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width, rounding);
311 :     interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width, rounding);
312 :     interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width, rounding);
313 :    
314 :     n_ptr += 8;
315 :     h_ptr += 8;
316 :     v_ptr += 8;
317 :     hv_ptr += 8;
318 :     }
319 : edgomez 1161
320 : edgomez 851 h_ptr += EDGE_SIZE;
321 :     v_ptr += EDGE_SIZE;
322 :     hv_ptr += EDGE_SIZE;
323 :     n_ptr += EDGE_SIZE;
324 :    
325 :     h_ptr += stride_add;
326 :     v_ptr += stride_add;
327 :     hv_ptr += stride_add;
328 :     n_ptr += stride_add;
329 :     }
330 :     }
331 :     /*
332 :     #ifdef BFRAMES
333 :     n_ptr = refn->u;
334 :     h_ptr = refh->u;
335 :     v_ptr = refv->u;
336 :     hv_ptr = refhv->u;
337 :    
338 :     n_ptr -= offset2;
339 :     h_ptr -= offset2;
340 :     v_ptr -= offset2;
341 :     hv_ptr -= offset2;
342 :    
343 :     for (y = 0; y < edged_height2; y += 8) {
344 :     for (x = 0; x < edged_width2; x += 8) {
345 :     interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width2, rounding);
346 :     interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width2, rounding);
347 :     interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width2, rounding);
348 :    
349 : albeu 315 n_ptr += 8;
350 :     h_ptr += 8;
351 :     v_ptr += 8;
352 :     hv_ptr += 8;
353 :     }
354 : edgomez 851 h_ptr += stride_add2;
355 :     v_ptr += stride_add2;
356 :     hv_ptr += stride_add2;
357 :     n_ptr += stride_add2;
358 : albeu 315 }
359 :    
360 : edgomez 851 n_ptr = refn->v;
361 :     h_ptr = refh->v;
362 :     v_ptr = refv->v;
363 :     hv_ptr = refhv->v;
364 :    
365 :     n_ptr -= offset2;
366 :     h_ptr -= offset2;
367 :     v_ptr -= offset2;
368 :     hv_ptr -= offset2;
369 :    
370 :     for (y = 0; y < edged_height2; y = y + 8) {
371 :     for (x = 0; x < edged_width2; x = x + 8) {
372 :     interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width2, rounding);
373 :     interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width2, rounding);
374 :     interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width2, rounding);
375 :    
376 :     n_ptr += 8;
377 :     h_ptr += 8;
378 :     v_ptr += 8;
379 :     hv_ptr += 8;
380 :     }
381 :     h_ptr += stride_add2;
382 :     v_ptr += stride_add2;
383 :     hv_ptr += stride_add2;
384 :     n_ptr += stride_add2;
385 :     }
386 :     #endif
387 :     */
388 : albeu 315 /*
389 :     interpolate_halfpel_h(
390 :     refh->y - offset,
391 : edgomez 1161 refn->y - offset,
392 : albeu 315 edged_width, edged_height,
393 :     rounding);
394 :    
395 :     interpolate_halfpel_v(
396 :     refv->y - offset,
397 : edgomez 1161 refn->y - offset,
398 : albeu 315 edged_width, edged_height,
399 :     rounding);
400 :    
401 :     interpolate_halfpel_hv(
402 :     refhv->y - offset,
403 :     refn->y - offset,
404 :     edged_width, edged_height,
405 :     rounding);
406 :     */
407 :    
408 :     /* uv-image-based compensation
409 :     offset = EDGE_SIZE2 * (edged_width / 2 + 1);
410 :    
411 :     interpolate_halfpel_h(
412 :     refh->u - offset,
413 : edgomez 1161 refn->u - offset,
414 : albeu 315 edged_width / 2, edged_height / 2,
415 :     rounding);
416 :    
417 :     interpolate_halfpel_v(
418 :     refv->u - offset,
419 : edgomez 1161 refn->u - offset,
420 : albeu 315 edged_width / 2, edged_height / 2,
421 :     rounding);
422 :    
423 :     interpolate_halfpel_hv(
424 :     refhv->u - offset,
425 : edgomez 1161 refn->u - offset,
426 : albeu 315 edged_width / 2, edged_height / 2,
427 :     rounding);
428 :    
429 :    
430 :     interpolate_halfpel_h(
431 :     refh->v - offset,
432 : edgomez 1161 refn->v - offset,
433 : albeu 315 edged_width / 2, edged_height / 2,
434 :     rounding);
435 :    
436 :     interpolate_halfpel_v(
437 :     refv->v - offset,
438 : edgomez 1161 refn->v - offset,
439 : albeu 315 edged_width / 2, edged_height / 2,
440 :     rounding);
441 :    
442 :     interpolate_halfpel_hv(
443 :     refhv->v - offset,
444 : edgomez 1161 refn->v - offset,
445 : albeu 315 edged_width / 2, edged_height / 2,
446 :     rounding);
447 :     */
448 :     }
449 :    
450 :    
451 : edgomez 851 /*
452 :     chroma optimize filter, invented by mf
453 :     a chroma pixel is average from the surrounding pixels, when the
454 :     correpsonding luma pixels are pure black or white.
455 :     */
456 :    
457 :     void
458 :     image_chroma_optimize(IMAGE * img, int width, int height, int edged_width)
459 :     {
460 :     int x,y;
461 :     int pixels = 0;
462 :    
463 :     for (y = 1; y < height/2 - 1; y++)
464 :     for (x = 1; x < width/2 - 1; x++)
465 :     {
466 :     #define IS_PURE(a) ((a)<=16||(a)>=235)
467 :     #define IMG_Y(Y,X) img->y[(Y)*edged_width + (X)]
468 :     #define IMG_U(Y,X) img->u[(Y)*edged_width/2 + (X)]
469 :     #define IMG_V(Y,X) img->v[(Y)*edged_width/2 + (X)]
470 :    
471 : edgomez 1161 if (IS_PURE(IMG_Y(y*2 ,x*2 )) &&
472 : edgomez 851 IS_PURE(IMG_Y(y*2 ,x*2+1)) &&
473 : edgomez 1161 IS_PURE(IMG_Y(y*2+1,x*2 )) &&
474 : edgomez 851 IS_PURE(IMG_Y(y*2+1,x*2+1)))
475 :     {
476 :     IMG_U(y,x) = (IMG_U(y,x-1) + IMG_U(y-1, x) + IMG_U(y, x+1) + IMG_U(y+1, x)) / 4;
477 :     IMG_V(y,x) = (IMG_V(y,x-1) + IMG_V(y-1, x) + IMG_V(y, x+1) + IMG_V(y+1, x)) / 4;
478 :     pixels++;
479 :     }
480 :    
481 :     #undef IS_PURE
482 :     #undef IMG_Y
483 :     #undef IMG_U
484 :     #undef IMG_V
485 :     }
486 : edgomez 1161
487 : edgomez 1038 DPRINTF(XVID_DEBUG_DEBUG,"chroma_optimized_pixels = %i/%i\n", pixels, width*height/4);
488 : edgomez 851 }
489 :    
490 :    
491 :    
492 :    
493 :    
494 :     /*
495 :     perform safe packed colorspace conversion, by splitting
496 :     the image up into an optimized area (pixel width divisible by 16),
497 :     and two unoptimized/plain-c areas (pixel width divisible by 2)
498 :     */
499 :    
500 : edgomez 1161 static void
501 : edgomez 851 safe_packed_conv(uint8_t * x_ptr, int x_stride,
502 :     uint8_t * y_ptr, uint8_t * u_ptr, uint8_t * v_ptr,
503 :     int y_stride, int uv_stride,
504 :     int width, int height, int vflip,
505 :     packedFunc * func_opt, packedFunc func_c, int size)
506 :     {
507 :     int width_opt, width_c;
508 :    
509 :     if (func_opt != func_c && x_stride < size*((width+15)/16)*16)
510 :     {
511 :     width_opt = width & (~15);
512 :     width_c = width - width_opt;
513 :     }
514 :     else
515 :     {
516 :     width_opt = width;
517 :     width_c = 0;
518 :     }
519 :    
520 :     func_opt(x_ptr, x_stride,
521 :     y_ptr, u_ptr, v_ptr, y_stride, uv_stride,
522 :     width_opt, height, vflip);
523 :    
524 :     if (width_c)
525 :     {
526 :     func_c(x_ptr + size*width_opt, x_stride,
527 :     y_ptr + width_opt, u_ptr + width_opt/2, v_ptr + width_opt/2,
528 :     y_stride, uv_stride, width_c, height, vflip);
529 :     }
530 :     }
531 :    
532 :    
533 :    
534 : albeu 315 int
535 :     image_input(IMAGE * image,
536 :     uint32_t width,
537 :     int height,
538 :     uint32_t edged_width,
539 : suxen_drol 890 uint8_t * src[4],
540 :     int src_stride[4],
541 : edgomez 851 int csp,
542 :     int interlacing)
543 : albeu 315 {
544 : edgomez 851 const int edged_width2 = edged_width/2;
545 :     const int width2 = width/2;
546 :     const int height2 = height/2;
547 : edgomez 1053 #if 0
548 :     const int height_signed = (csp & XVID_CSP_VFLIP) ? -height : height;
549 :     #endif
550 : albeu 315
551 :     switch (csp & ~XVID_CSP_VFLIP) {
552 :     case XVID_CSP_RGB555:
553 : edgomez 851 safe_packed_conv(
554 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
555 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
556 :     interlacing?rgb555i_to_yv12 :rgb555_to_yv12,
557 :     interlacing?rgb555i_to_yv12_c:rgb555_to_yv12_c, 2);
558 :     break;
559 : albeu 315
560 :     case XVID_CSP_RGB565:
561 : edgomez 851 safe_packed_conv(
562 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
563 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
564 :     interlacing?rgb565i_to_yv12 :rgb565_to_yv12,
565 :     interlacing?rgb565i_to_yv12_c:rgb565_to_yv12_c, 2);
566 :     break;
567 : albeu 315
568 :    
569 : suxen_drol 890 case XVID_CSP_BGR:
570 : edgomez 851 safe_packed_conv(
571 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
572 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
573 :     interlacing?bgri_to_yv12 :bgr_to_yv12,
574 :     interlacing?bgri_to_yv12_c:bgr_to_yv12_c, 3);
575 :     break;
576 : albeu 315
577 : suxen_drol 890 case XVID_CSP_BGRA:
578 : edgomez 851 safe_packed_conv(
579 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
580 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
581 :     interlacing?bgrai_to_yv12 :bgra_to_yv12,
582 :     interlacing?bgrai_to_yv12_c:bgra_to_yv12_c, 4);
583 :     break;
584 : albeu 315
585 : edgomez 851 case XVID_CSP_ABGR :
586 :     safe_packed_conv(
587 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
588 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
589 :     interlacing?abgri_to_yv12 :abgr_to_yv12,
590 :     interlacing?abgri_to_yv12_c:abgr_to_yv12_c, 4);
591 :     break;
592 : albeu 315
593 : edgomez 851 case XVID_CSP_RGBA :
594 :     safe_packed_conv(
595 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
596 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
597 :     interlacing?rgbai_to_yv12 :rgba_to_yv12,
598 :     interlacing?rgbai_to_yv12_c:rgba_to_yv12_c, 4);
599 :     break;
600 : albeu 315
601 :     case XVID_CSP_YUY2:
602 : edgomez 851 safe_packed_conv(
603 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
604 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
605 :     interlacing?yuyvi_to_yv12 :yuyv_to_yv12,
606 :     interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);
607 :     break;
608 : albeu 315
609 :     case XVID_CSP_YVYU: /* u/v swapped */
610 : edgomez 851 safe_packed_conv(
611 : edgomez 1161 src[0], src_stride[0], image->y, image->v, image->y,
612 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
613 :     interlacing?yuyvi_to_yv12 :yuyv_to_yv12,
614 :     interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);
615 :     break;
616 : albeu 315
617 :     case XVID_CSP_UYVY:
618 : edgomez 851 safe_packed_conv(
619 : edgomez 1161 src[0], src_stride[0], image->y, image->u, image->v,
620 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
621 :     interlacing?uyvyi_to_yv12 :uyvy_to_yv12,
622 :     interlacing?uyvyi_to_yv12_c:uyvy_to_yv12_c, 2);
623 :     break;
624 : albeu 315
625 : edgomez 851 case XVID_CSP_I420:
626 :     yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,
627 : suxen_drol 890 src[0], src[0] + src_stride[0]*height, src[0] + src_stride[0]*height + (src_stride[0]/2)*height2,
628 :     src_stride[0], src_stride[0]/2, width, height, (csp & XVID_CSP_VFLIP));
629 : edgomez 851 break
630 :     ;
631 :     case XVID_CSP_YV12: /* u/v swapped */
632 :     yv12_to_yv12(image->y, image->v, image->u, edged_width, edged_width2,
633 : suxen_drol 890 src[0], src[0] + src_stride[0]*height, src[0] + src_stride[0]*height + (src_stride[0]/2)*height2,
634 :     src_stride[0], src_stride[0]/2, width, height, (csp & XVID_CSP_VFLIP));
635 : edgomez 851 break;
636 :    
637 : albeu 315 case XVID_CSP_USER:
638 : suxen_drol 890 /*XXX: support for different u & v strides */
639 :     yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,
640 :     src[0], src[1], src[2], src_stride[0], src_stride[1],
641 :     width, height, (csp & XVID_CSP_VFLIP));
642 : edgomez 851 break;
643 : albeu 315
644 :     case XVID_CSP_NULL:
645 :     break;
646 :    
647 : edgomez 851 default :
648 :     return -1;
649 : albeu 315 }
650 :    
651 : edgomez 851
652 :     /* pad out image when the width and/or height is not a multiple of 16 */
653 :    
654 :     if (width & 15)
655 :     {
656 :     int i;
657 :     int pad_width = 16 - (width&15);
658 :     for (i = 0; i < height; i++)
659 :     {
660 : edgomez 1161 memset(image->y + i*edged_width + width,
661 : edgomez 851 *(image->y + i*edged_width + width - 1), pad_width);
662 :     }
663 :     for (i = 0; i < height/2; i++)
664 :     {
665 : edgomez 1161 memset(image->u + i*edged_width2 + width2,
666 : edgomez 851 *(image->u + i*edged_width2 + width2 - 1),pad_width/2);
667 : edgomez 1161 memset(image->v + i*edged_width2 + width2,
668 : edgomez 851 *(image->v + i*edged_width2 + width2 - 1),pad_width/2);
669 :     }
670 :     }
671 :    
672 :     if (height & 15)
673 :     {
674 : edgomez 1161 int pad_height = 16 - (height&15);
675 : edgomez 851 int length = ((width+15)/16)*16;
676 :     int i;
677 :     for (i = 0; i < pad_height; i++)
678 :     {
679 :     memcpy(image->y + (height+i)*edged_width,
680 :     image->y + (height-1)*edged_width,length);
681 :     }
682 :    
683 :     for (i = 0; i < pad_height/2; i++)
684 :     {
685 :     memcpy(image->u + (height2+i)*edged_width2,
686 :     image->u + (height2-1)*edged_width2,length/2);
687 :     memcpy(image->v + (height2+i)*edged_width2,
688 :     image->v + (height2-1)*edged_width2,length/2);
689 :     }
690 :     }
691 :    
692 :     /*
693 :     if (interlacing)
694 :     image_printf(image, edged_width, height, 5,5, "[i]");
695 :     image_dump_yuvpgm(image, edged_width, ((width+15)/16)*16, ((height+15)/16)*16, "\\encode.pgm");
696 :     */
697 :     return 0;
698 : albeu 315 }
699 :    
700 :    
701 :    
702 :     int
703 :     image_output(IMAGE * image,
704 :     uint32_t width,
705 :     int height,
706 :     uint32_t edged_width,
707 : suxen_drol 890 uint8_t * dst[4],
708 :     uint32_t dst_stride[4],
709 : edgomez 851 int csp,
710 :     int interlacing)
711 : albeu 315 {
712 : edgomez 851 const int edged_width2 = edged_width/2;
713 :     int height2 = height/2;
714 :    
715 :     /*
716 :     if (interlacing)
717 :     image_printf(image, edged_width, height, 5,100, "[i]=%i,%i",width,height);
718 :     image_dump_yuvpgm(image, edged_width, width, height, "\\decode.pgm");
719 :     */
720 :    
721 : albeu 315 switch (csp & ~XVID_CSP_VFLIP) {
722 :     case XVID_CSP_RGB555:
723 : edgomez 851 safe_packed_conv(
724 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
725 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
726 :     interlacing?yv12_to_rgb555i :yv12_to_rgb555,
727 :     interlacing?yv12_to_rgb555i_c:yv12_to_rgb555_c, 2);
728 : albeu 315 return 0;
729 :    
730 :     case XVID_CSP_RGB565:
731 : edgomez 851 safe_packed_conv(
732 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
733 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
734 :     interlacing?yv12_to_rgb565i :yv12_to_rgb565,
735 :     interlacing?yv12_to_rgb565i_c:yv12_to_rgb565_c, 2);
736 : albeu 315 return 0;
737 :    
738 : suxen_drol 890 case XVID_CSP_BGR:
739 : edgomez 851 safe_packed_conv(
740 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
741 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
742 :     interlacing?yv12_to_bgri :yv12_to_bgr,
743 :     interlacing?yv12_to_bgri_c:yv12_to_bgr_c, 3);
744 : albeu 315 return 0;
745 :    
746 : suxen_drol 890 case XVID_CSP_BGRA:
747 : edgomez 851 safe_packed_conv(
748 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
749 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
750 :     interlacing?yv12_to_bgrai :yv12_to_bgra,
751 :     interlacing?yv12_to_bgrai_c:yv12_to_bgra_c, 4);
752 : albeu 315 return 0;
753 :    
754 : edgomez 851 case XVID_CSP_ABGR:
755 :     safe_packed_conv(
756 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
757 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
758 :     interlacing?yv12_to_abgri :yv12_to_abgr,
759 :     interlacing?yv12_to_abgri_c:yv12_to_abgr_c, 4);
760 : albeu 315 return 0;
761 :    
762 : edgomez 851 case XVID_CSP_RGBA:
763 :     safe_packed_conv(
764 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
765 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
766 :     interlacing?yv12_to_rgbai :yv12_to_rgba,
767 :     interlacing?yv12_to_rgbai_c:yv12_to_rgba_c, 4);
768 : albeu 315 return 0;
769 :    
770 :     case XVID_CSP_YUY2:
771 : edgomez 851 safe_packed_conv(
772 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
773 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
774 :     interlacing?yv12_to_yuyvi :yv12_to_yuyv,
775 :     interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);
776 : albeu 315 return 0;
777 :    
778 : edgomez 1053 case XVID_CSP_YVYU: /* u,v swapped */
779 : edgomez 851 safe_packed_conv(
780 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->v, image->u,
781 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
782 :     interlacing?yv12_to_yuyvi :yv12_to_yuyv,
783 :     interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);
784 : albeu 315 return 0;
785 :    
786 :     case XVID_CSP_UYVY:
787 : edgomez 851 safe_packed_conv(
788 : suxen_drol 890 dst[0], dst_stride[0], image->y, image->u, image->v,
789 : edgomez 851 edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
790 :     interlacing?yv12_to_uyvyi :yv12_to_uyvy,
791 :     interlacing?yv12_to_uyvyi_c:yv12_to_uyvy_c, 2);
792 : albeu 315 return 0;
793 :    
794 : edgomez 851 case XVID_CSP_I420:
795 : suxen_drol 890 yv12_to_yv12(dst[0], dst[0] + dst_stride[0]*height, dst[0] + dst_stride[0]*height + (dst_stride[0]/2)*height2,
796 :     dst_stride[0], dst_stride[0]/2,
797 : edgomez 851 image->y, image->u, image->v, edged_width, edged_width2,
798 :     width, height, (csp & XVID_CSP_VFLIP));
799 :     return 0;
800 :    
801 : edgomez 1053 case XVID_CSP_YV12: /* u,v swapped */
802 : suxen_drol 890 yv12_to_yv12(dst[0], dst[0] + dst_stride[0]*height, dst[0] + dst_stride[0]*height + (dst_stride[0]/2)*height2,
803 :     dst_stride[0], dst_stride[0]/2,
804 : edgomez 851 image->y, image->v, image->u, edged_width, edged_width2,
805 :     width, height, (csp & XVID_CSP_VFLIP));
806 :     return 0;
807 :    
808 : edgomez 1053 case XVID_CSP_USER : /* u,v swapped */
809 : suxen_drol 890 yv12_to_yv12(dst[0], dst[1], dst[2],
810 :     dst_stride[0], dst_stride[1], /* v: dst_stride[2] */
811 :     image->y, image->v, image->u, edged_width, edged_width2,
812 :     width, height, (csp & XVID_CSP_VFLIP));
813 : albeu 315 return 0;
814 :    
815 : suxen_drol 890 case XVID_CSP_INTERNAL :
816 :     dst[0] = image->y;
817 :     dst[1] = image->u;
818 :     dst[2] = image->v;
819 :     dst_stride[0] = edged_width;
820 :     dst_stride[1] = edged_width/2;
821 :     dst_stride[2] = edged_width/2;
822 :     return 0;
823 :    
824 : albeu 315 case XVID_CSP_NULL:
825 : suxen_drol 890 case XVID_CSP_SLICE:
826 : albeu 315 return 0;
827 :    
828 :     }
829 :    
830 :     return -1;
831 :     }
832 :    
833 :     float
834 :     image_psnr(IMAGE * orig_image,
835 :     IMAGE * recon_image,
836 :     uint16_t stride,
837 :     uint16_t width,
838 :     uint16_t height)
839 :     {
840 :     int32_t diff, x, y, quad = 0;
841 :     uint8_t *orig = orig_image->y;
842 :     uint8_t *recon = recon_image->y;
843 :     float psnr_y;
844 :    
845 :     for (y = 0; y < height; y++) {
846 :     for (x = 0; x < width; x++) {
847 :     diff = *(orig + x) - *(recon + x);
848 :     quad += diff * diff;
849 :     }
850 :     orig += stride;
851 :     recon += stride;
852 :     }
853 :    
854 :     psnr_y = (float) quad / (float) (width * height);
855 :    
856 :     if (psnr_y) {
857 :     psnr_y = (float) (255 * 255) / psnr_y;
858 :     psnr_y = 10 * (float) log10(psnr_y);
859 :     } else
860 :     psnr_y = (float) 99.99;
861 :    
862 :     return psnr_y;
863 :     }
864 :    
865 :    
866 : edgomez 851 float sse_to_PSNR(long sse, int pixels)
867 :     {
868 :     if (sse==0)
869 :     return 99.99F;
870 :    
871 : edgomez 1053 return 48.131F - 10*(float)log10((float)sse/(float)(pixels)); /* log10(255*255)=4.8131 */
872 : edgomez 851
873 :     }
874 :    
875 :     long plane_sse(uint8_t * orig,
876 :     uint8_t * recon,
877 :     uint16_t stride,
878 :     uint16_t width,
879 :     uint16_t height)
880 :     {
881 :     int diff, x, y;
882 :     long sse=0;
883 :    
884 :     for (y = 0; y < height; y++) {
885 :     for (x = 0; x < width; x++) {
886 :     diff = *(orig + x) - *(recon + x);
887 :     sse += diff * diff;
888 :     }
889 :     orig += stride;
890 :     recon += stride;
891 :     }
892 :     return sse;
893 :     }
894 :    
895 : edgomez 1053 #if 0
896 : edgomez 851
897 : albeu 315 #include <stdio.h>
898 :     #include <string.h>
899 :    
900 :     int image_dump_pgm(uint8_t * bmp, uint32_t width, uint32_t height, char * filename)
901 :     {
902 :     FILE * f;
903 :     char hdr[1024];
904 : edgomez 1161
905 : albeu 315 f = fopen(filename, "wb");
906 :     if ( f == NULL)
907 :     {
908 :     return -1;
909 :     }
910 :     sprintf(hdr, "P5\n#xvid\n%i %i\n255\n", width, height);
911 :     fwrite(hdr, strlen(hdr), 1, f);
912 :     fwrite(bmp, width, height, f);
913 :     fclose(f);
914 :    
915 :     return 0;
916 :     }
917 :    
918 :    
919 : edgomez 1053 /* dump image+edges to yuv pgm files */
920 : albeu 315
921 :     int image_dump(IMAGE * image, uint32_t edged_width, uint32_t edged_height, char * path, int number)
922 :     {
923 :     char filename[1024];
924 :    
925 :     sprintf(filename, "%s_%i_%c.pgm", path, number, 'y');
926 :     image_dump_pgm(
927 :     image->y - (EDGE_SIZE * edged_width + EDGE_SIZE),
928 :     edged_width, edged_height, filename);
929 :    
930 :     sprintf(filename, "%s_%i_%c.pgm", path, number, 'u');
931 :     image_dump_pgm(
932 :     image->u - (EDGE_SIZE2 * edged_width / 2 + EDGE_SIZE2),
933 :     edged_width / 2, edged_height / 2, filename);
934 :    
935 :     sprintf(filename, "%s_%i_%c.pgm", path, number, 'v');
936 :     image_dump_pgm(
937 :     image->v - (EDGE_SIZE2 * edged_width / 2 + EDGE_SIZE2),
938 :     edged_width / 2, edged_height / 2, filename);
939 :    
940 :     return 0;
941 :     }
942 : edgomez 1053 #endif
943 : albeu 315
944 :    
945 :    
946 :     /* dump image to yuvpgm file */
947 :    
948 :     #include <stdio.h>
949 :    
950 :     int
951 :     image_dump_yuvpgm(const IMAGE * image,
952 :     const uint32_t edged_width,
953 :     const uint32_t width,
954 :     const uint32_t height,
955 :     char *filename)
956 :     {
957 :     FILE *f;
958 :     char hdr[1024];
959 :     uint32_t i;
960 :     uint8_t *bmp1;
961 :     uint8_t *bmp2;
962 :    
963 :    
964 :     f = fopen(filename, "wb");
965 :     if (f == NULL) {
966 :     return -1;
967 :     }
968 :     sprintf(hdr, "P5\n#xvid\n%i %i\n255\n", width, (3 * height) / 2);
969 :     fwrite(hdr, strlen(hdr), 1, f);
970 :    
971 :     bmp1 = image->y;
972 :     for (i = 0; i < height; i++) {
973 :     fwrite(bmp1, width, 1, f);
974 :     bmp1 += edged_width;
975 :     }
976 :    
977 :     bmp1 = image->u;
978 :     bmp2 = image->v;
979 :     for (i = 0; i < height / 2; i++) {
980 :     fwrite(bmp1, width / 2, 1, f);
981 :     fwrite(bmp2, width / 2, 1, f);
982 :     bmp1 += edged_width / 2;
983 :     bmp2 += edged_width / 2;
984 :     }
985 :    
986 :     fclose(f);
987 :     return 0;
988 :     }
989 :    
990 :    
991 :     float
992 :     image_mad(const IMAGE * img1,
993 :     const IMAGE * img2,
994 :     uint32_t stride,
995 :     uint32_t width,
996 :     uint32_t height)
997 :     {
998 :     const uint32_t stride2 = stride / 2;
999 :     const uint32_t width2 = width / 2;
1000 :     const uint32_t height2 = height / 2;
1001 :    
1002 :     uint32_t x, y;
1003 :     uint32_t sum = 0;
1004 :    
1005 :     for (y = 0; y < height; y++)
1006 :     for (x = 0; x < width; x++)
1007 : edgomez 982 sum += abs(img1->y[x + y * stride] - img2->y[x + y * stride]);
1008 : albeu 315
1009 :     for (y = 0; y < height2; y++)
1010 :     for (x = 0; x < width2; x++)
1011 : edgomez 982 sum += abs(img1->u[x + y * stride2] - img2->u[x + y * stride2]);
1012 : albeu 315
1013 :     for (y = 0; y < height2; y++)
1014 :     for (x = 0; x < width2; x++)
1015 : edgomez 982 sum += abs(img1->v[x + y * stride2] - img2->v[x + y * stride2]);
1016 : albeu 315
1017 :     return (float) sum / (width * height * 3 / 2);
1018 :     }
1019 :    
1020 :     void
1021 : suxen_drol 890 output_slice(IMAGE * cur, int std, int width, xvid_image_t* out_frm, int mbx, int mby,int mbl) {
1022 : albeu 315 uint8_t *dY,*dU,*dV,*sY,*sU,*sV;
1023 :     int std2 = std >> 1;
1024 :     int w = mbl << 4, w2,i;
1025 :    
1026 :     if(w > width)
1027 :     w = width;
1028 :     w2 = w >> 1;
1029 : suxen_drol 323
1030 : suxen_drol 890 dY = (uint8_t*)out_frm->plane[0] + (mby << 4) * out_frm->stride[0] + (mbx << 4);
1031 :     dU = (uint8_t*)out_frm->plane[1] + (mby << 3) * out_frm->stride[1] + (mbx << 3);
1032 :     dV = (uint8_t*)out_frm->plane[2] + (mby << 3) * out_frm->stride[2] + (mbx << 3);
1033 : albeu 315 sY = cur->y + (mby << 4) * std + (mbx << 4);
1034 :     sU = cur->u + (mby << 3) * std2 + (mbx << 3);
1035 :     sV = cur->v + (mby << 3) * std2 + (mbx << 3);
1036 :    
1037 :     for(i = 0 ; i < 16 ; i++) {
1038 :     memcpy(dY,sY,w);
1039 : suxen_drol 890 dY += out_frm->stride[0];
1040 : suxen_drol 323 sY += std;
1041 :     }
1042 : albeu 315 for(i = 0 ; i < 8 ; i++) {
1043 :     memcpy(dU,sU,w2);
1044 : suxen_drol 890 dU += out_frm->stride[1];
1045 : albeu 315 sU += std2;
1046 :     }
1047 :     for(i = 0 ; i < 8 ; i++) {
1048 :     memcpy(dV,sV,w2);
1049 : suxen_drol 890 dV += out_frm->stride[2];
1050 : albeu 315 sV += std2;
1051 :     }
1052 :     }
1053 : edgomez 851
1054 :    
1055 :     void
1056 :     image_clear(IMAGE * img, int width, int height, int edged_width,
1057 :     int y, int u, int v)
1058 :     {
1059 :     uint8_t * p;
1060 :     int i;
1061 :    
1062 :     p = img->y;
1063 :     for (i = 0; i < height; i++) {
1064 :     memset(p, y, width);
1065 :     p += edged_width;
1066 :     }
1067 :    
1068 :     p = img->u;
1069 :     for (i = 0; i < height/2; i++) {
1070 :     memset(p, u, width/2);
1071 :     p += edged_width/2;
1072 :     }
1073 :    
1074 :     p = img->v;
1075 :     for (i = 0; i < height/2; i++) {
1076 :     memset(p, v, width/2);
1077 :     p += edged_width/2;
1078 :     }
1079 :     }
1080 :    
1081 :    
1082 : edgomez 1161 /* reduced resolution deblocking filter
1083 : edgomez 851 block = block size (16=rrv, 8=full resolution)
1084 :     flags = XVID_DEC_YDEBLOCK|XVID_DEC_UVDEBLOCK
1085 :     */
1086 :     void
1087 :     image_deblock_rrv(IMAGE * img, int edged_width,
1088 :     const MACROBLOCK * mbs, int mb_width, int mb_height, int mb_stride,
1089 :     int block, int flags)
1090 :     {
1091 :     const int edged_width2 = edged_width /2;
1092 :     const int nblocks = block / 8; /* skals code uses 8pixel block uints */
1093 :     int i,j;
1094 :    
1095 :     /* luma: j,i in block units */
1096 : suxen_drol 890
1097 : edgomez 851 for (j = 1; j < mb_height*2; j++) /* horizontal deblocking */
1098 :     for (i = 0; i < mb_width*2; i++)
1099 :     {
1100 :     if (mbs[(j-1)/2*mb_stride + (i/2)].mode != MODE_NOT_CODED ||
1101 :     mbs[(j+0)/2*mb_stride + (i/2)].mode != MODE_NOT_CODED)
1102 :     {
1103 :     hfilter_31(img->y + (j*block - 1)*edged_width + i*block,
1104 :     img->y + (j*block + 0)*edged_width + i*block, nblocks);
1105 :     }
1106 :     }
1107 :    
1108 :     for (j = 0; j < mb_height*2; j++) /* vertical deblocking */
1109 :     for (i = 1; i < mb_width*2; i++)
1110 :     {
1111 :     if (mbs[(j/2)*mb_stride + (i-1)/2].mode != MODE_NOT_CODED ||
1112 :     mbs[(j/2)*mb_stride + (i+0)/2].mode != MODE_NOT_CODED)
1113 :     {
1114 :     vfilter_31(img->y + (j*block)*edged_width + i*block - 1,
1115 :     img->y + (j*block)*edged_width + i*block + 0,
1116 :     edged_width, nblocks);
1117 :     }
1118 :     }
1119 :    
1120 :    
1121 : suxen_drol 890
1122 : edgomez 851 /* chroma */
1123 : suxen_drol 890
1124 : edgomez 851 for (j = 1; j < mb_height; j++) /* horizontal deblocking */
1125 :     for (i = 0; i < mb_width; i++)
1126 :     {
1127 : edgomez 1161 if (mbs[(j-1)*mb_stride + i].mode != MODE_NOT_CODED ||
1128 : edgomez 851 mbs[(j+0)*mb_stride + i].mode != MODE_NOT_CODED)
1129 :     {
1130 :     hfilter_31(img->u + (j*block - 1)*edged_width2 + i*block,
1131 :     img->u + (j*block + 0)*edged_width2 + i*block, nblocks);
1132 :     hfilter_31(img->v + (j*block - 1)*edged_width2 + i*block,
1133 :     img->v + (j*block + 0)*edged_width2 + i*block, nblocks);
1134 :     }
1135 :     }
1136 :    
1137 : edgomez 1161 for (j = 0; j < mb_height; j++) /* vertical deblocking */
1138 : edgomez 851 for (i = 1; i < mb_width; i++)
1139 :     {
1140 :     if (mbs[j*mb_stride + i - 1].mode != MODE_NOT_CODED ||
1141 : edgomez 1161 mbs[j*mb_stride + i + 0].mode != MODE_NOT_CODED)
1142 : edgomez 851 {
1143 :     vfilter_31(img->u + (j*block)*edged_width2 + i*block - 1,
1144 :     img->u + (j*block)*edged_width2 + i*block + 0,
1145 :     edged_width2, nblocks);
1146 :     vfilter_31(img->v + (j*block)*edged_width2 + i*block - 1,
1147 :     img->v + (j*block)*edged_width2 + i*block + 0,
1148 :     edged_width2, nblocks);
1149 :     }
1150 :     }
1151 :    
1152 : suxen_drol 890
1153 : edgomez 851 }
1154 :    

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4