[cvs] / xvidcore / src / image / image.c Repository:
ViewVC logotype

Diff of /xvidcore/src/image/image.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.20, Wed Sep 4 03:45:45 2002 UTC revision 1.26.2.15, Sun Feb 1 11:32:33 2004 UTC
# Line 1  Line 1 
1  /**************************************************************************  /**************************************************************************
2   *   *
3   *      XVID MPEG-4 VIDEO CODEC   *      XVID MPEG-4 VIDEO CODEC
4   *      image stuff   *  - Image management functions -
5     *
6     *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
7   *   *
8   *      This program is free software; you can redistribute it and/or modify   *      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   *      it under the terms of the GNU General Public License as published by
# Line 15  Line 17 
17   *   *
18   *      You should have received a copy of the GNU General Public License   *      You should have received a copy of the GNU General Public License
19   *      along with this program; if not, write to the Free Software   *      along with this program; if not, write to the Free Software
20   *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  *  
  *************************************************************************/  
   
 /**************************************************************************  
21   *   *
22   *      History:   * $Id$
23   *   *
24   *      01.05.2002      BFRAME image-based u,v interpolation   ****************************************************************************/
  *  22.04.2002  added some B-frame support  
  *      14.04.2002      added image_dump_yuvpgm(), added image_mad()  
  *              XVID_CSP_USER input support  
  *  09.04.2002  PSNR calculations  
  *      06.04.2002      removed interlaced edging from U,V blocks (as per spec)  
  *  26.03.2002  interlacing support (field-based edging in set_edges)  
  *      26.01.2002      rgb555, rgb565  
  *      07.01.2001      commented u,v interpolation (not required for uv-block-based)  
  *  23.12.2001  removed #ifdefs, added function pointers + init_common()  
  *      22.12.2001      cpu #ifdefs  
  *  19.12.2001  image_dump(); useful for debugging  
  *       6.12.2001      inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>  
  *  
  *************************************************************************/  
25    
26  #include <stdlib.h>  #include <stdlib.h>
27  #include <string.h>                             // memcpy, memset  #include <string.h>                             /* memcpy, memset */
28  #include <math.h>  #include <math.h>
29    
30  #include "../portab.h"  #include "../portab.h"
31  #include "../xvid.h"                    // XVID_CSP_XXX's  #include "../global.h"                  /* XVID_CSP_XXX's */
32    #include "../xvid.h"                    /* XVID_CSP_XXX's */
33  #include "image.h"  #include "image.h"
34  #include "colorspace.h"  #include "colorspace.h"
35  #include "interpolate8x8.h"  #include "interpolate8x8.h"
36  #include "../divx4.h"  #include "reduced.h"
37  #include "../utils/mem_align.h"  #include "../utils/mem_align.h"
38    
39    #include "font.h"               /* XXX: remove later */
40    
41  #define SAFETY  64  #define SAFETY  64
42  #define EDGE_SIZE2  (EDGE_SIZE/2)  #define EDGE_SIZE2  (EDGE_SIZE/2)
43    
# Line 62  Line 49 
49  {  {
50          const uint32_t edged_width2 = edged_width / 2;          const uint32_t edged_width2 = edged_width / 2;
51          const uint32_t edged_height2 = edged_height / 2;          const uint32_t edged_height2 = edged_height / 2;
         uint32_t i;  
52    
53          image->y =          image->y =
54                  xvid_malloc(edged_width * (edged_height + 1) + SAFETY, CACHE_LINE);                  xvid_malloc(edged_width * (edged_height + 1) + SAFETY, CACHE_LINE);
55          if (image->y == NULL) {          if (image->y == NULL) {
56                  return -1;                  return -1;
57          }          }
58            memset(image->y, 0, edged_width * (edged_height + 1) + SAFETY);
         for (i = 0; i < edged_width * edged_height + SAFETY; i++) {  
                 image->y[i] = 0;  
         }  
59    
60          image->u = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);          image->u = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);
61          if (image->u == NULL) {          if (image->u == NULL) {
62                  xvid_free(image->y);                  xvid_free(image->y);
63                    image->y = NULL;
64                  return -1;                  return -1;
65          }          }
66            memset(image->u, 0, edged_width2 * edged_height2 + SAFETY);
67    
68          image->v = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);          image->v = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);
69          if (image->v == NULL) {          if (image->v == NULL) {
70                  xvid_free(image->u);                  xvid_free(image->u);
71                    image->u = NULL;
72                  xvid_free(image->y);                  xvid_free(image->y);
73                    image->y = NULL;
74                  return -1;                  return -1;
75          }          }
76            memset(image->v, 0, edged_width2 * edged_height2 + SAFETY);
77    
78          image->y += EDGE_SIZE * edged_width + EDGE_SIZE;          image->y += EDGE_SIZE * edged_width + EDGE_SIZE;
79          image->u += EDGE_SIZE2 * edged_width2 + EDGE_SIZE2;          image->u += EDGE_SIZE2 * edged_width2 + EDGE_SIZE2;
# Line 104  Line 93 
93    
94          if (image->y) {          if (image->y) {
95                  xvid_free(image->y - (EDGE_SIZE * edged_width + EDGE_SIZE));                  xvid_free(image->y - (EDGE_SIZE * edged_width + EDGE_SIZE));
96                    image->y = NULL;
97          }          }
98          if (image->u) {          if (image->u) {
99                  xvid_free(image->u - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));                  xvid_free(image->u - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));
100                    image->u = NULL;
101          }          }
102          if (image->v) {          if (image->v) {
103                  xvid_free(image->v - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));                  xvid_free(image->v - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));
104                    image->v = NULL;
105          }          }
106  }  }
107    
# Line 118  Line 110 
110  image_swap(IMAGE * image1,  image_swap(IMAGE * image1,
111                     IMAGE * image2)                     IMAGE * image2)
112  {  {
113          uint8_t *tmp;      SWAP(uint8_t*, image1->y, image2->y);
114        SWAP(uint8_t*, image1->u, image2->u);
115          tmp = image1->y;      SWAP(uint8_t*, image1->v, image2->v);
         image1->y = image2->y;  
         image2->y = tmp;  
   
         tmp = image1->u;  
         image1->u = image2->u;  
         image2->u = tmp;  
   
         tmp = image1->v;  
         image1->v = image2->v;  
         image2->v = tmp;  
116  }  }
117    
118    
# Line 151  Line 133 
133                             uint32_t edged_width,                             uint32_t edged_width,
134                             uint32_t edged_height,                             uint32_t edged_height,
135                             uint32_t width,                             uint32_t width,
136                             uint32_t height,                             uint32_t height)
                            uint32_t interlacing)  
137  {  {
138          const uint32_t edged_width2 = edged_width / 2;          const uint32_t edged_width2 = edged_width / 2;
139          const uint32_t width2 = width / 2;          uint32_t width2;
140          uint32_t i;          uint32_t i;
141          uint8_t *dst;          uint8_t *dst;
142          uint8_t *src;          uint8_t *src;
# Line 164  Line 145 
145          dst = image->y - (EDGE_SIZE + EDGE_SIZE * edged_width);          dst = image->y - (EDGE_SIZE + EDGE_SIZE * edged_width);
146          src = image->y;          src = image->y;
147    
148            /* 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          for (i = 0; i < EDGE_SIZE; i++) {          for (i = 0; i < EDGE_SIZE; i++) {
 /*              // if interlacing, edges contain top-most data from each field  
                 if (interlacing && (i & 1)) {  
                         memset(dst, *(src + edged_width), EDGE_SIZE);  
                         memcpy(dst + EDGE_SIZE, src + edged_width, width);  
                         memset(dst + edged_width - EDGE_SIZE,  
                                    *(src + edged_width + width - 1), EDGE_SIZE);  
                 } else {*/  
155                          memset(dst, *src, EDGE_SIZE);                          memset(dst, *src, EDGE_SIZE);
156                          memcpy(dst + EDGE_SIZE, src, width);                          memcpy(dst + EDGE_SIZE, src, width);
157                          memset(dst + edged_width - EDGE_SIZE, *(src + width - 1),                          memset(dst + edged_width - EDGE_SIZE, *(src + width - 1),
158                                     EDGE_SIZE);                                     EDGE_SIZE);
                 /*}*/  
159                  dst += edged_width;                  dst += edged_width;
160          }          }
161    
# Line 189  Line 168 
168    
169          src -= edged_width;          src -= edged_width;
170          for (i = 0; i < EDGE_SIZE; i++) {          for (i = 0; i < EDGE_SIZE; i++) {
 /*              // if interlacing, edges contain bottom-most data from each field  
                 if (interlacing && !(i & 1)) {  
                         memset(dst, *(src - edged_width), EDGE_SIZE);  
                         memcpy(dst + EDGE_SIZE, src - edged_width, width);  
                         memset(dst + edged_width - EDGE_SIZE,  
                                    *(src - edged_width + width - 1), EDGE_SIZE);  
                 } else {*/  
171                          memset(dst, *src, EDGE_SIZE);                          memset(dst, *src, EDGE_SIZE);
172                          memcpy(dst + EDGE_SIZE, src, width);                          memcpy(dst + EDGE_SIZE, src, width);
173                          memset(dst + edged_width - EDGE_SIZE, *(src + width - 1),                          memset(dst + edged_width - EDGE_SIZE, *(src + width - 1),
174                                     EDGE_SIZE);                                     EDGE_SIZE);
                 /*}*/  
175                  dst += edged_width;                  dst += edged_width;
176          }          }
177    
178    
179  //U          /* U */
180          dst = image->u - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);          dst = image->u - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);
181          src = image->u;          src = image->u;
182    
# Line 233  Line 204 
204          }          }
205    
206    
207  // V          /* V */
208          dst = image->v - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);          dst = image->v - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);
209          src = image->v;          src = image->v;
210    
# Line 261  Line 232 
232          }          }
233  }  }
234    
235  // bframe encoding requires image-based u,v interpolation  /* bframe encoding requires image-based u,v interpolation */
236  void  void
237  image_interpolate(const IMAGE * refn,  image_interpolate(const IMAGE * refn,
238                                    IMAGE * refh,                                    IMAGE * refh,
# Line 269  Line 240 
240                                    IMAGE * refhv,                                    IMAGE * refhv,
241                                    uint32_t edged_width,                                    uint32_t edged_width,
242                                    uint32_t edged_height,                                    uint32_t edged_height,
243                                      uint32_t quarterpel,
244                                    uint32_t rounding)                                    uint32_t rounding)
245  {  {
246          const uint32_t offset = EDGE_SIZE * (edged_width + 1);          const uint32_t offset = EDGE_SIZE2 * (edged_width + 1); /* we only interpolate half of the edge area */
247          const uint32_t stride_add = 7 * edged_width;          const uint32_t stride_add = 7 * edged_width;
248    #if 0
 #ifdef BFRAMES  
249          const uint32_t edged_width2 = edged_width / 2;          const uint32_t edged_width2 = edged_width / 2;
250          const uint32_t edged_height2 = edged_height / 2;          const uint32_t edged_height2 = edged_height / 2;
251          const uint32_t offset2 = EDGE_SIZE2 * (edged_width2 + 1);          const uint32_t offset2 = EDGE_SIZE2 * (edged_width2 + 1);
252          const uint32_t stride_add2 = 7 * edged_width2;          const uint32_t stride_add2 = 7 * edged_width2;
253  #endif  #endif
   
254          uint8_t *n_ptr, *h_ptr, *v_ptr, *hv_ptr;          uint8_t *n_ptr, *h_ptr, *v_ptr, *hv_ptr;
255          uint32_t x, y;          uint32_t x, y;
256    
# Line 288  Line 258 
258          n_ptr = refn->y;          n_ptr = refn->y;
259          h_ptr = refh->y;          h_ptr = refh->y;
260          v_ptr = refv->y;          v_ptr = refv->y;
         hv_ptr = refhv->y;  
261    
262          n_ptr -= offset;          n_ptr -= offset;
263          h_ptr -= offset;          h_ptr -= offset;
264          v_ptr -= offset;          v_ptr -= offset;
265    
266            /* Note we initialize the hv pointer later, as we can optimize code a bit
267             * doing it down to up in quarterpel and up to down in halfpel */
268            if(quarterpel) {
269    
270                    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    
275                                    n_ptr += 8;
276                                    h_ptr += 8;
277                                    v_ptr += 8;
278                            }
279    
280                            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 + (edged_height - EDGE_SIZE - EDGE_SIZE2)*edged_width - EDGE_SIZE2;
290                    hv_ptr = refhv->y + (edged_height - EDGE_SIZE - EDGE_SIZE2)*edged_width - EDGE_SIZE2;
291    
292                    for (y = 0; y < (edged_height - EDGE_SIZE); y = y + 8) {
293                            hv_ptr -= stride_add;
294                            h_ptr -= stride_add;
295                            hv_ptr -= EDGE_SIZE;
296                            h_ptr -= EDGE_SIZE;
297    
298                            for (x = 0; x < (edged_width - EDGE_SIZE); x = x + 8) {
299                                    hv_ptr -= 8;
300                                    h_ptr -= 8;
301                                    interpolate8x8_6tap_lowpass_v(hv_ptr, h_ptr, edged_width, rounding);
302                            }
303                    }
304            } else {
305    
306                    hv_ptr = refhv->y;
307          hv_ptr -= offset;          hv_ptr -= offset;
308    
309          for (y = 0; y < edged_height; y = y + 8) {                  for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {
310                  for (x = 0; x < edged_width; x = x + 8) {                          for (x = 0; x < (edged_width - EDGE_SIZE); x += 8) {
311                          interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width, rounding);                          interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width, rounding);
312                          interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width, rounding);                          interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width, rounding);
313                          interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width, rounding);                          interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width, rounding);
# Line 306  Line 317 
317                          v_ptr += 8;                          v_ptr += 8;
318                          hv_ptr += 8;                          hv_ptr += 8;
319                  }                  }
320    
321                            h_ptr += EDGE_SIZE;
322                            v_ptr += EDGE_SIZE;
323                            hv_ptr += EDGE_SIZE;
324                            n_ptr += EDGE_SIZE;
325    
326                  h_ptr += stride_add;                  h_ptr += stride_add;
327                  v_ptr += stride_add;                  v_ptr += stride_add;
328                  hv_ptr += stride_add;                  hv_ptr += stride_add;
329                  n_ptr += stride_add;                  n_ptr += stride_add;
330          }          }
331            }
332    /*
333  #ifdef BFRAMES  #ifdef BFRAMES
334          n_ptr = refn->u;          n_ptr = refn->u;
335          h_ptr = refh->u;          h_ptr = refh->u;
# Line 323  Line 341 
341          v_ptr -= offset2;          v_ptr -= offset2;
342          hv_ptr -= offset2;          hv_ptr -= offset2;
343    
344          for (y = 0; y < edged_height2; y = y + 8) {          for (y = 0; y < edged_height2; y += 8) {
345                  for (x = 0; x < edged_width2; x = x + 8) {                  for (x = 0; x < edged_width2; x += 8) {
346                          interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width2, rounding);                          interpolate8x8_halfpel_h(h_ptr, n_ptr, edged_width2, rounding);
347                          interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width2, rounding);                          interpolate8x8_halfpel_v(v_ptr, n_ptr, edged_width2, rounding);
348                          interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width2, rounding);                          interpolate8x8_halfpel_hv(hv_ptr, n_ptr, edged_width2, rounding);
# Line 367  Line 385 
385                  n_ptr += stride_add2;                  n_ptr += stride_add2;
386          }          }
387  #endif  #endif
388    */
389          /*          /*
390             interpolate_halfpel_h(             interpolate_halfpel_h(
391             refh->y - offset,             refh->y - offset,
# Line 431  Line 449 
449  }  }
450    
451    
452    /*
453    chroma optimize filter, invented by mf
454    a chroma pixel is average from the surrounding pixels, when the
455    correpsonding luma pixels are pure black or white.
456    */
457    
458    void
459    image_chroma_optimize(IMAGE * img, int width, int height, int edged_width)
460    {
461            int x,y;
462            int pixels = 0;
463    
464            for (y = 1; y < height/2 - 1; y++)
465            for (x = 1; x < width/2 - 1; x++)
466            {
467    #define IS_PURE(a)  ((a)<=16||(a)>=235)
468    #define IMG_Y(Y,X)      img->y[(Y)*edged_width + (X)]
469    #define IMG_U(Y,X)      img->u[(Y)*edged_width/2 + (X)]
470    #define IMG_V(Y,X)      img->v[(Y)*edged_width/2 + (X)]
471    
472                    if (IS_PURE(IMG_Y(y*2  ,x*2  )) &&
473                            IS_PURE(IMG_Y(y*2  ,x*2+1)) &&
474                            IS_PURE(IMG_Y(y*2+1,x*2  )) &&
475                            IS_PURE(IMG_Y(y*2+1,x*2+1)))
476                    {
477                            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;
478                            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;
479                            pixels++;
480                    }
481    
482    #undef IS_PURE
483    #undef IMG_Y
484    #undef IMG_U
485    #undef IMG_V
486            }
487    
488            DPRINTF(XVID_DEBUG_DEBUG,"chroma_optimized_pixels = %i/%i\n", pixels, width*height/4);
489    }
490    
491    
492    
493    
494    
495    /*
496      perform safe packed colorspace conversion, by splitting
497      the image up into an optimized area (pixel width divisible by 16),
498      and two unoptimized/plain-c areas (pixel width divisible by 2)
499    */
500    
501    static void
502    safe_packed_conv(uint8_t * x_ptr, int x_stride,
503                                     uint8_t * y_ptr, uint8_t * u_ptr, uint8_t * v_ptr,
504                                     int y_stride, int uv_stride,
505                                     int width, int height, int vflip,
506                                     packedFunc * func_opt, packedFunc func_c, int size)
507    {
508            int width_opt, width_c;
509    
510            if (func_opt != func_c && x_stride < size*((width+15)/16)*16)
511            {
512                    width_opt = width & (~15);
513                    width_c = width - width_opt;
514            }
515            else
516            {
517                    width_opt = width;
518                    width_c = 0;
519            }
520    
521            func_opt(x_ptr, x_stride,
522                            y_ptr, u_ptr, v_ptr, y_stride, uv_stride,
523                            width_opt, height, vflip);
524    
525            if (width_c)
526            {
527                    func_c(x_ptr + size*width_opt, x_stride,
528                            y_ptr + width_opt, u_ptr + width_opt/2, v_ptr + width_opt/2,
529                            y_stride, uv_stride, width_c, height, vflip);
530            }
531    }
532    
533    
534    
535  int  int
536  image_input(IMAGE * image,  image_input(IMAGE * image,
537                          uint32_t width,                          uint32_t width,
538                          int height,                          int height,
539                          uint32_t edged_width,                          uint32_t edged_width,
540                          uint8_t * src,                          uint8_t * src[4],
541                          int csp)                          int src_stride[4],
542  {                          int csp,
543                            int interlacing)
 /*      if (csp & XVID_CSP_VFLIP)  
544          {          {
545                  height = -height;          const int edged_width2 = edged_width/2;
546          }          const int width2 = width/2;
547  */          const int height2 = height/2;
548    #if 0
549            const int height_signed = (csp & XVID_CSP_VFLIP) ? -height : height;
550    #endif
551    
552          switch (csp & ~XVID_CSP_VFLIP) {          switch (csp & ~XVID_CSP_VFLIP) {
553          case XVID_CSP_RGB555:          case XVID_CSP_RGB555:
554                  rgb555_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
555                                             edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
556                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
557                            interlacing?rgb555i_to_yv12  :rgb555_to_yv12,
558                            interlacing?rgb555i_to_yv12_c:rgb555_to_yv12_c, 2);
559                    break;
560    
561          case XVID_CSP_RGB565:          case XVID_CSP_RGB565:
562                  rgb565_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
563                                             edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
564                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
565                            interlacing?rgb565i_to_yv12  :rgb565_to_yv12,
566                            interlacing?rgb565i_to_yv12_c:rgb565_to_yv12_c, 2);
567                    break;
568    
569    
570          case XVID_CSP_RGB24:          case XVID_CSP_BGR:
571                  rgb24_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
572                                            edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
573                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
574                            interlacing?bgri_to_yv12  :bgr_to_yv12,
575                            interlacing?bgri_to_yv12_c:bgr_to_yv12_c, 3);
576                    break;
577    
578          case XVID_CSP_RGB32:          case XVID_CSP_BGRA:
579                  rgb32_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
580                                            edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
581                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
582                            interlacing?bgrai_to_yv12  :bgra_to_yv12,
583                            interlacing?bgrai_to_yv12_c:bgra_to_yv12_c, 4);
584                    break;
585    
586          case XVID_CSP_I420:          case XVID_CSP_ABGR :
587                  yuv_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
588                                          edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
589                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
590                            interlacing?abgri_to_yv12  :abgr_to_yv12,
591                            interlacing?abgri_to_yv12_c:abgr_to_yv12_c, 4);
592                    break;
593    
594          case XVID_CSP_YV12:             /* u/v swapped */          case XVID_CSP_RGBA :
595                  yuv_to_yv12(image->y, image->v, image->u, src, width, height,                  safe_packed_conv(
596                                          edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
597                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
598                            interlacing?rgbai_to_yv12  :rgba_to_yv12,
599                            interlacing?rgbai_to_yv12_c:rgba_to_yv12_c, 4);
600                    break;
601    
602            case XVID_CSP_ARGB:
603                    safe_packed_conv(
604                            src[0], src_stride[0], image->y, image->u, image->v,
605                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
606                            interlacing?argbi_to_yv12  : argb_to_yv12,
607                            interlacing?argbi_to_yv12_c: argb_to_yv12_c, 4);
608                    break;
609    
610          case XVID_CSP_YUY2:          case XVID_CSP_YUY2:
611                  yuyv_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
612                                           edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
613                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
614                            interlacing?yuyvi_to_yv12  :yuyv_to_yv12,
615                            interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);
616                    break;
617    
618          case XVID_CSP_YVYU:             /* u/v swapped */          case XVID_CSP_YVYU:             /* u/v swapped */
619                  yuyv_to_yv12(image->y, image->v, image->u, src, width, height,                  safe_packed_conv(
620                                           edged_width);                          src[0], src_stride[0], image->y, image->v, image->y,
621                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
622                            interlacing?yuyvi_to_yv12  :yuyv_to_yv12,
623                            interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);
624                    break;
625    
626          case XVID_CSP_UYVY:          case XVID_CSP_UYVY:
627                  uyvy_to_yv12(image->y, image->u, image->v, src, width, height,                  safe_packed_conv(
628                                           edged_width);                          src[0], src_stride[0], image->y, image->u, image->v,
629                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
630                            interlacing?uyvyi_to_yv12  :uyvy_to_yv12,
631                            interlacing?uyvyi_to_yv12_c:uyvy_to_yv12_c, 2);
632                    break;
633    
634          case XVID_CSP_USER:          case XVID_CSP_I420:     /* YCbCr == YUV == internal colorspace for MPEG */
635                  user_to_yuv_c(image->y, image->u, image->v, edged_width,                  yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,
636                                            (DEC_PICTURE *) src, width, height);                          src[0], src[0] + src_stride[0]*height, src[0] + src_stride[0]*height + (src_stride[0]/2)*height2,
637                  return 0;                          src_stride[0], src_stride[0]/2, width, height, (csp & XVID_CSP_VFLIP));
638                    break;
639    
640            case XVID_CSP_YV12: /* YCrCb == YVA == U and V plane swapped */
641                    yv12_to_yv12(image->y, image->v, image->u, edged_width, edged_width2,
642                            src[0], src[0] + src_stride[0]*height, src[0] + src_stride[0]*height + (src_stride[0]/2)*height2,
643                            src_stride[0], src_stride[0]/2, width, height, (csp & XVID_CSP_VFLIP));
644                    break;
645    
646            case XVID_CSP_PLANAR:  /* YCbCr with arbitrary pointers and different strides for Y and UV */
647                    yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,
648                            src[0], src[1], src[2], src_stride[0], src_stride[1],  /* v: dst_stride[2] not yet supported */
649                            width, height, (csp & XVID_CSP_VFLIP));
650                    break;
651    
652          case XVID_CSP_NULL:          case XVID_CSP_NULL:
653                  break;                  break;
654    
655            default :
656                    return -1;
657          }          }
658    
659          return -1;  
660            /* pad out image when the width and/or height is not a multiple of 16 */
661    
662            if (width & 15)
663            {
664                    int i;
665                    int pad_width = 16 - (width&15);
666                    for (i = 0; i < height; i++)
667                    {
668                            memset(image->y + i*edged_width + width,
669                                     *(image->y + i*edged_width + width - 1), pad_width);
670                    }
671                    for (i = 0; i < height/2; i++)
672                    {
673                            memset(image->u + i*edged_width2 + width2,
674                                     *(image->u + i*edged_width2 + width2 - 1),pad_width/2);
675                            memset(image->v + i*edged_width2 + width2,
676                                     *(image->v + i*edged_width2 + width2 - 1),pad_width/2);
677                    }
678            }
679    
680            if (height & 15)
681            {
682                    int pad_height = 16 - (height&15);
683                    int length = ((width+15)/16)*16;
684                    int i;
685                    for (i = 0; i < pad_height; i++)
686                    {
687                            memcpy(image->y + (height+i)*edged_width,
688                                       image->y + (height-1)*edged_width,length);
689                    }
690    
691                    for (i = 0; i < pad_height/2; i++)
692                    {
693                            memcpy(image->u + (height2+i)*edged_width2,
694                                       image->u + (height2-1)*edged_width2,length/2);
695                            memcpy(image->v + (height2+i)*edged_width2,
696                                       image->v + (height2-1)*edged_width2,length/2);
697                    }
698            }
699    
700    /*
701            if (interlacing)
702                    image_printf(image, edged_width, height, 5,5, "[i]");
703            image_dump_yuvpgm(image, edged_width, ((width+15)/16)*16, ((height+15)/16)*16, "\\encode.pgm");
704    */
705            return 0;
706  }  }
707    
708    
# Line 513  Line 712 
712                           uint32_t width,                           uint32_t width,
713                           int height,                           int height,
714                           uint32_t edged_width,                           uint32_t edged_width,
715                           uint8_t * dst,                           uint8_t * dst[4],
716                           uint32_t dst_stride,                           uint32_t dst_stride[4],
717                           int csp)                           int csp,
718                             int interlacing)
719  {  {
720          if (csp & XVID_CSP_VFLIP) {          const int edged_width2 = edged_width/2;
721                  height = -height;          int height2 = height/2;
722          }  
723    /*
724            if (interlacing)
725                    image_printf(image, edged_width, height, 5,100, "[i]=%i,%i",width,height);
726            image_dump_yuvpgm(image, edged_width, width, height, "\\decode.pgm");
727    */
728    
729          switch (csp & ~XVID_CSP_VFLIP) {          switch (csp & ~XVID_CSP_VFLIP) {
730          case XVID_CSP_RGB555:          case XVID_CSP_RGB555:
731                  yv12_to_rgb555(dst, dst_stride, image->y, image->u, image->v,                  safe_packed_conv(
732                                             edged_width, edged_width / 2, width, height);                          dst[0], dst_stride[0], image->y, image->u, image->v,
733                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
734                            interlacing?yv12_to_rgb555i  :yv12_to_rgb555,
735                            interlacing?yv12_to_rgb555i_c:yv12_to_rgb555_c, 2);
736                  return 0;                  return 0;
737    
738          case XVID_CSP_RGB565:          case XVID_CSP_RGB565:
739                  yv12_to_rgb565(dst, dst_stride, image->y, image->u, image->v,                  safe_packed_conv(
740                                             edged_width, edged_width / 2, width, height);                          dst[0], dst_stride[0], image->y, image->u, image->v,
741                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
742                            interlacing?yv12_to_rgb565i  :yv12_to_rgb565,
743          case XVID_CSP_RGB24:                          interlacing?yv12_to_rgb565i_c:yv12_to_rgb565_c, 2);
744                  yv12_to_rgb24(dst, dst_stride, image->y, image->u, image->v,                  return 0;
745                                            edged_width, edged_width / 2, width, height);  
746                  return 0;      case XVID_CSP_BGR:
747                    safe_packed_conv(
748          case XVID_CSP_RGB32:                          dst[0], dst_stride[0], image->y, image->u, image->v,
749                  yv12_to_rgb32(dst, dst_stride, image->y, image->u, image->v,                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
750                                            edged_width, edged_width / 2, width, height);                          interlacing?yv12_to_bgri  :yv12_to_bgr,
751                  return 0;                          interlacing?yv12_to_bgri_c:yv12_to_bgr_c, 3);
752                    return 0;
753          case XVID_CSP_I420:  
754                  yv12_to_yuv(dst, dst_stride, image->y, image->u, image->v, edged_width,          case XVID_CSP_BGRA:
755                                          edged_width / 2, width, height);                  safe_packed_conv(
756                  return 0;                          dst[0], dst_stride[0], image->y, image->u, image->v,
757                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
758          case XVID_CSP_YV12:             // u,v swapped                          interlacing?yv12_to_bgrai  :yv12_to_bgra,
759                  yv12_to_yuv(dst, dst_stride, image->y, image->v, image->u, edged_width,                          interlacing?yv12_to_bgrai_c:yv12_to_bgra_c, 4);
760                                          edged_width / 2, width, height);                  return 0;
761    
762            case XVID_CSP_ABGR:
763                    safe_packed_conv(
764                            dst[0], dst_stride[0], image->y, image->u, image->v,
765                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
766                            interlacing?yv12_to_abgri  :yv12_to_abgr,
767                            interlacing?yv12_to_abgri_c:yv12_to_abgr_c, 4);
768                    return 0;
769    
770            case XVID_CSP_RGBA:
771                    safe_packed_conv(
772                            dst[0], dst_stride[0], image->y, image->u, image->v,
773                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
774                            interlacing?yv12_to_rgbai  :yv12_to_rgba,
775                            interlacing?yv12_to_rgbai_c:yv12_to_rgba_c, 4);
776                    return 0;
777    
778            case XVID_CSP_ARGB:
779                    safe_packed_conv(
780                            dst[0], dst_stride[0], image->y, image->u, image->v,
781                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
782                            interlacing?yv12_to_argbi  :yv12_to_argb,
783                            interlacing?yv12_to_argbi_c:yv12_to_argb_c, 4);
784                  return 0;                  return 0;
785    
786          case XVID_CSP_YUY2:          case XVID_CSP_YUY2:
787                  yv12_to_yuyv(dst, dst_stride, image->y, image->u, image->v,                  safe_packed_conv(
788                                           edged_width, edged_width / 2, width, height);                          dst[0], dst_stride[0], image->y, image->u, image->v,
789                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
790                            interlacing?yv12_to_yuyvi  :yv12_to_yuyv,
791                            interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);
792                  return 0;                  return 0;
793    
794          case XVID_CSP_YVYU:             // u,v swapped          case XVID_CSP_YVYU:             /* u,v swapped */
795                  yv12_to_yuyv(dst, dst_stride, image->y, image->v, image->u,                  safe_packed_conv(
796                                           edged_width, edged_width / 2, width, height);                          dst[0], dst_stride[0], image->y, image->v, image->u,
797                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
798                            interlacing?yv12_to_yuyvi  :yv12_to_yuyv,
799                            interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);
800                  return 0;                  return 0;
801    
802          case XVID_CSP_UYVY:          case XVID_CSP_UYVY:
803                  yv12_to_uyvy(dst, dst_stride, image->y, image->u, image->v,                  safe_packed_conv(
804                                           edged_width, edged_width / 2, width, height);                          dst[0], dst_stride[0], image->y, image->u, image->v,
805                  return 0;                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
806                            interlacing?yv12_to_uyvyi  :yv12_to_uyvy,
807          case XVID_CSP_USER:                          interlacing?yv12_to_uyvyi_c:yv12_to_uyvy_c, 2);
808                  ((DEC_PICTURE *) dst)->y = image->y;                  return 0;
809                  ((DEC_PICTURE *) dst)->u = image->u;  
810                  ((DEC_PICTURE *) dst)->v = image->v;          case XVID_CSP_I420: /* YCbCr == YUV == internal colorspace for MPEG */
811                  ((DEC_PICTURE *) dst)->stride_y = edged_width;                  yv12_to_yv12(dst[0], dst[0] + dst_stride[0]*height, dst[0] + dst_stride[0]*height + (dst_stride[0]/2)*height2,
812                  ((DEC_PICTURE *) dst)->stride_uv = edged_width / 2;                          dst_stride[0], dst_stride[0]/2,
813                            image->y, image->u, image->v, edged_width, edged_width2,
814                            width, height, (csp & XVID_CSP_VFLIP));
815                    return 0;
816    
817            case XVID_CSP_YV12:     /* YCrCb == YVU == U and V plane swapped */
818                    yv12_to_yv12(dst[0], dst[0] + dst_stride[0]*height, dst[0] + dst_stride[0]*height + (dst_stride[0]/2)*height2,
819                            dst_stride[0], dst_stride[0]/2,
820                            image->y, image->v, image->u, edged_width, edged_width2,
821                            width, height, (csp & XVID_CSP_VFLIP));
822                    return 0;
823    
824            case XVID_CSP_PLANAR:  /* YCbCr with arbitrary pointers and different strides for Y and UV */
825                    yv12_to_yv12(dst[0], dst[1], dst[2],
826                            dst_stride[0], dst_stride[1],   /* v: dst_stride[2] not yet supported */
827                            image->y, image->u, image->v, edged_width, edged_width2,
828                            width, height, (csp & XVID_CSP_VFLIP));
829                    return 0;
830    
831            case XVID_CSP_INTERNAL :
832                    dst[0] = image->y;
833                    dst[1] = image->u;
834                    dst[2] = image->v;
835                    dst_stride[0] = edged_width;
836                    dst_stride[1] = edged_width/2;
837                    dst_stride[2] = edged_width/2;
838                  return 0;                  return 0;
839    
840          case XVID_CSP_NULL:          case XVID_CSP_NULL:
841          case XVID_CSP_EXTERN:          case XVID_CSP_SLICE:
842                  return 0;                  return 0;
843    
844          }          }
# Line 616  Line 878 
878          return psnr_y;          return psnr_y;
879  }  }
880    
881  /*  
882    float sse_to_PSNR(long sse, int pixels)
883    {
884            if (sse==0)
885                    return 99.99F;
886    
887            return 48.131F - 10*(float)log10((float)sse/(float)(pixels));   /* log10(255*255)=4.8131 */
888    
889    }
890    
891    long plane_sse(uint8_t * orig,
892                       uint8_t * recon,
893                       uint16_t stride,
894                       uint16_t width,
895                       uint16_t height)
896    {
897            int diff, x, y;
898            long sse=0;
899    
900            for (y = 0; y < height; y++) {
901                    for (x = 0; x < width; x++) {
902                            diff = *(orig + x) - *(recon + x);
903                            sse += diff * diff;
904                    }
905                    orig += stride;
906                    recon += stride;
907            }
908            return sse;
909    }
910    
911    #if 0
912    
913  #include <stdio.h>  #include <stdio.h>
914  #include <string.h>  #include <string.h>
# Line 640  Line 932 
932  }  }
933    
934    
935  // dump image+edges to yuv pgm files  /* dump image+edges to yuv pgm files */
936    
937  int image_dump(IMAGE * image, uint32_t edged_width, uint32_t edged_height, char * path, int number)  int image_dump(IMAGE * image, uint32_t edged_width, uint32_t edged_height, char * path, int number)
938  {  {
# Line 663  Line 955 
955    
956          return 0;          return 0;
957  }  }
958  */  #endif
959    
960    
961    
# Line 712  Line 1004 
1004  }  }
1005    
1006    
 #define ABS(X)    (((X)>0)?(X):-(X))  
1007  float  float
1008  image_mad(const IMAGE * img1,  image_mad(const IMAGE * img1,
1009                    const IMAGE * img2,                    const IMAGE * img2,
# Line 729  Line 1020 
1020    
1021          for (y = 0; y < height; y++)          for (y = 0; y < height; y++)
1022                  for (x = 0; x < width; x++)                  for (x = 0; x < width; x++)
1023                          sum += ABS(img1->y[x + y * stride] - img2->y[x + y * stride]);                          sum += abs(img1->y[x + y * stride] - img2->y[x + y * stride]);
1024    
1025          for (y = 0; y < height2; y++)          for (y = 0; y < height2; y++)
1026                  for (x = 0; x < width2; x++)                  for (x = 0; x < width2; x++)
1027                          sum += ABS(img1->u[x + y * stride2] - img2->u[x + y * stride2]);                          sum += abs(img1->u[x + y * stride2] - img2->u[x + y * stride2]);
1028    
1029          for (y = 0; y < height2; y++)          for (y = 0; y < height2; y++)
1030                  for (x = 0; x < width2; x++)                  for (x = 0; x < width2; x++)
1031                          sum += ABS(img1->v[x + y * stride2] - img2->v[x + y * stride2]);                          sum += abs(img1->v[x + y * stride2] - img2->v[x + y * stride2]);
1032    
1033          return (float) sum / (width * height * 3 / 2);          return (float) sum / (width * height * 3 / 2);
1034  }  }
1035    
1036  void  void
1037  output_slice(IMAGE * cur, int std, int width, XVID_DEC_PICTURE* out_frm, int mbx, int mby,int mbl) {  output_slice(IMAGE * cur, int std, int width, xvid_image_t* out_frm, int mbx, int mby,int mbl) {
1038    uint8_t *dY,*dU,*dV,*sY,*sU,*sV;    uint8_t *dY,*dU,*dV,*sY,*sU,*sV;
1039    int std2 = std >> 1;    int std2 = std >> 1;
1040    int w = mbl << 4, w2,i;    int w = mbl << 4, w2,i;
# Line 752  Line 1043 
1043      w = width;      w = width;
1044    w2 = w >> 1;    w2 = w >> 1;
1045    
1046    dY = (uint8_t*)out_frm->y + (mby << 4) * out_frm->stride_y + (mbx << 4);    dY = (uint8_t*)out_frm->plane[0] + (mby << 4) * out_frm->stride[0] + (mbx << 4);
1047    dU = (uint8_t*)out_frm->u + (mby << 3) * out_frm->stride_u + (mbx << 3);    dU = (uint8_t*)out_frm->plane[1] + (mby << 3) * out_frm->stride[1] + (mbx << 3);
1048    dV = (uint8_t*)out_frm->v + (mby << 3) * out_frm->stride_v + (mbx << 3);    dV = (uint8_t*)out_frm->plane[2] + (mby << 3) * out_frm->stride[2] + (mbx << 3);
1049    sY = cur->y + (mby << 4) * std + (mbx << 4);    sY = cur->y + (mby << 4) * std + (mbx << 4);
1050    sU = cur->u + (mby << 3) * std2 + (mbx << 3);    sU = cur->u + (mby << 3) * std2 + (mbx << 3);
1051    sV = cur->v + (mby << 3) * std2 + (mbx << 3);    sV = cur->v + (mby << 3) * std2 + (mbx << 3);
1052    
1053    for(i = 0 ; i < 16 ; i++) {    for(i = 0 ; i < 16 ; i++) {
1054      memcpy(dY,sY,w);      memcpy(dY,sY,w);
1055      dY += out_frm->stride_y;      dY += out_frm->stride[0];
1056      sY += std;      sY += std;
1057    }    }
1058    for(i = 0 ; i < 8 ; i++) {    for(i = 0 ; i < 8 ; i++) {
1059      memcpy(dU,sU,w2);      memcpy(dU,sU,w2);
1060      dU += out_frm->stride_u;      dU += out_frm->stride[1];
1061      sU += std2;      sU += std2;
1062    }    }
1063    for(i = 0 ; i < 8 ; i++) {    for(i = 0 ; i < 8 ; i++) {
1064      memcpy(dV,sV,w2);      memcpy(dV,sV,w2);
1065      dV += out_frm->stride_v;      dV += out_frm->stride[2];
1066      sV += std2;      sV += std2;
1067    }    }
1068  }  }
1069    
1070    
1071    void
1072    image_clear(IMAGE * img, int width, int height, int edged_width,
1073                                            int y, int u, int v)
1074    {
1075            uint8_t * p;
1076            int i;
1077    
1078            p = img->y;
1079            for (i = 0; i < height; i++) {
1080                    memset(p, y, width);
1081                    p += edged_width;
1082            }
1083    
1084            p = img->u;
1085            for (i = 0; i < height/2; i++) {
1086                    memset(p, u, width/2);
1087                    p += edged_width/2;
1088            }
1089    
1090            p = img->v;
1091            for (i = 0; i < height/2; i++) {
1092                    memset(p, v, width/2);
1093                    p += edged_width/2;
1094            }
1095    }
1096    
1097    
1098    /* reduced resolution deblocking filter
1099            block = block size (16=rrv, 8=full resolution)
1100            flags = XVID_DEC_YDEBLOCK|XVID_DEC_UVDEBLOCK
1101    */
1102    void
1103    image_deblock_rrv(IMAGE * img, int edged_width,
1104                                    const MACROBLOCK * mbs, int mb_width, int mb_height, int mb_stride,
1105                                    int block, int flags)
1106    {
1107            const int edged_width2 = edged_width /2;
1108            const int nblocks = block / 8;  /* skals code uses 8pixel block uints */
1109            int i,j;
1110    
1111            /* luma: j,i in block units */
1112    
1113                    for (j = 1; j < mb_height*2; j++)               /* horizontal deblocking */
1114                    for (i = 0; i < mb_width*2; i++)
1115                    {
1116                            if (mbs[(j-1)/2*mb_stride + (i/2)].mode != MODE_NOT_CODED ||
1117                                    mbs[(j+0)/2*mb_stride + (i/2)].mode != MODE_NOT_CODED)
1118                            {
1119                                    hfilter_31(img->y + (j*block - 1)*edged_width + i*block,
1120                                                                      img->y + (j*block + 0)*edged_width + i*block, nblocks);
1121                            }
1122                    }
1123    
1124                    for (j = 0; j < mb_height*2; j++)               /* vertical deblocking */
1125                    for (i = 1; i < mb_width*2; i++)
1126                    {
1127                            if (mbs[(j/2)*mb_stride + (i-1)/2].mode != MODE_NOT_CODED ||
1128                                    mbs[(j/2)*mb_stride + (i+0)/2].mode != MODE_NOT_CODED)
1129                            {
1130                                    vfilter_31(img->y + (j*block)*edged_width + i*block - 1,
1131                                                       img->y + (j*block)*edged_width + i*block + 0,
1132                                                       edged_width, nblocks);
1133                            }
1134                    }
1135    
1136    
1137    
1138            /* chroma */
1139    
1140                    for (j = 1; j < mb_height; j++)         /* horizontal deblocking */
1141                    for (i = 0; i < mb_width; i++)
1142                    {
1143                            if (mbs[(j-1)*mb_stride + i].mode != MODE_NOT_CODED ||
1144                                    mbs[(j+0)*mb_stride + i].mode != MODE_NOT_CODED)
1145                            {
1146                                    hfilter_31(img->u + (j*block - 1)*edged_width2 + i*block,
1147                                                       img->u + (j*block + 0)*edged_width2 + i*block, nblocks);
1148                                    hfilter_31(img->v + (j*block - 1)*edged_width2 + i*block,
1149                                                       img->v + (j*block + 0)*edged_width2 + i*block, nblocks);
1150                            }
1151                    }
1152    
1153                    for (j = 0; j < mb_height; j++)         /* vertical deblocking */
1154                    for (i = 1; i < mb_width; i++)
1155                    {
1156                            if (mbs[j*mb_stride + i - 1].mode != MODE_NOT_CODED ||
1157                                    mbs[j*mb_stride + i + 0].mode != MODE_NOT_CODED)
1158                            {
1159                                    vfilter_31(img->u + (j*block)*edged_width2 + i*block - 1,
1160                                                       img->u + (j*block)*edged_width2 + i*block + 0,
1161                                                       edged_width2, nblocks);
1162                                    vfilter_31(img->v + (j*block)*edged_width2 + i*block - 1,
1163                                                       img->v + (j*block)*edged_width2 + i*block + 0,
1164                                                       edged_width2, nblocks);
1165                            }
1166                    }
1167    
1168    
1169    }
1170    

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.26.2.15

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