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

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

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

revision 851, Sat Feb 15 15:22:19 2003 UTC revision 1424, Mon Apr 12 15:49:56 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   *      This program is an implementation of a part of one or more MPEG-4   *  Copyright(C) 2001-2004 Peter Ross <pross@xvid.org>
  *      Video tools as specified in ISO/IEC 14496-2 standard.  Those intending  
  *      to use this software module in hardware or software products are  
  *      advised that its use may infringe existing patents or copyrights, and  
  *      any such use would be at such party's own risk.  The original  
  *      developer of this software module and his/her company, and subsequent  
  *      editors and their companies, will have no liability for use of this  
  *      software or modifications or derivatives thereof.  
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 24  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   *************************************************************************/   * $Id: image.c,v 1.29 2004-04-12 15:49:56 edgomez Exp $
   
 /**************************************************************************  
  *  
  *      History:  
  *  
  *  05.10.2002  support for interpolated images in qpel mode - Isibaar  
  *      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 - Isibaar  
  *      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>  
23   *   *
24   *************************************************************************/   ****************************************************************************/
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 "../global.h"                  // XVID_CSP_XXX's  #include "../global.h"                  /* XVID_CSP_XXX's */
32  #include "../xvid.h"                    // XVID_CSP_XXX's  #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 "reduced.h"  #include "reduced.h"
 #include "../divx4.h"  
37  #include "../utils/mem_align.h"  #include "../utils/mem_align.h"
38    #include "../motion/sad.h"
39    
40  #include "font.h"               // XXX: remove later  #include "font.h"               /* XXX: remove later */
41    
42  #define SAFETY  64  #define SAFETY  64
43  #define EDGE_SIZE2  (EDGE_SIZE/2)  #define EDGE_SIZE2  (EDGE_SIZE/2)
# Line 76  Line 50 
50  {  {
51          const uint32_t edged_width2 = edged_width / 2;          const uint32_t edged_width2 = edged_width / 2;
52          const uint32_t edged_height2 = edged_height / 2;          const uint32_t edged_height2 = edged_height / 2;
         uint32_t i;  
53    
54          image->y =          image->y =
55                  xvid_malloc(edged_width * (edged_height + 1) + SAFETY, CACHE_LINE);                  xvid_malloc(edged_width * (edged_height + 1) + SAFETY, CACHE_LINE);
56          if (image->y == NULL) {          if (image->y == NULL) {
57                  return -1;                  return -1;
58          }          }
59            memset(image->y, 0, edged_width * (edged_height + 1) + SAFETY);
         for (i = 0; i < edged_width * edged_height + SAFETY; i++) {  
                 image->y[i] = 0;  
         }  
60    
61          image->u = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);          image->u = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);
62          if (image->u == NULL) {          if (image->u == NULL) {
63                  xvid_free(image->y);                  xvid_free(image->y);
64                    image->y = NULL;
65                  return -1;                  return -1;
66          }          }
67            memset(image->u, 0, edged_width2 * edged_height2 + SAFETY);
68    
69          image->v = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);          image->v = xvid_malloc(edged_width2 * edged_height2 + SAFETY, CACHE_LINE);
70          if (image->v == NULL) {          if (image->v == NULL) {
71                  xvid_free(image->u);                  xvid_free(image->u);
72                    image->u = NULL;
73                  xvid_free(image->y);                  xvid_free(image->y);
74                    image->y = NULL;
75                  return -1;                  return -1;
76          }          }
77            memset(image->v, 0, edged_width2 * edged_height2 + SAFETY);
78    
79          image->y += EDGE_SIZE * edged_width + EDGE_SIZE;          image->y += EDGE_SIZE * edged_width + EDGE_SIZE;
80          image->u += EDGE_SIZE2 * edged_width2 + EDGE_SIZE2;          image->u += EDGE_SIZE2 * edged_width2 + EDGE_SIZE2;
# Line 118  Line 94 
94    
95          if (image->y) {          if (image->y) {
96                  xvid_free(image->y - (EDGE_SIZE * edged_width + EDGE_SIZE));                  xvid_free(image->y - (EDGE_SIZE * edged_width + EDGE_SIZE));
97                    image->y = NULL;
98          }          }
99          if (image->u) {          if (image->u) {
100                  xvid_free(image->u - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));                  xvid_free(image->u - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));
101                    image->u = NULL;
102          }          }
103          if (image->v) {          if (image->v) {
104                  xvid_free(image->v - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));                  xvid_free(image->v - (EDGE_SIZE2 * edged_width2 + EDGE_SIZE2));
105                    image->v = NULL;
106          }          }
107  }  }
108    
# Line 132  Line 111 
111  image_swap(IMAGE * image1,  image_swap(IMAGE * image1,
112                     IMAGE * image2)                     IMAGE * image2)
113  {  {
114          uint8_t *tmp;      SWAP(uint8_t*, image1->y, image2->y);
115        SWAP(uint8_t*, image1->u, image2->u);
116          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;  
117  }  }
118    
119    
# Line 159  Line 128 
128          memcpy(image1->v, image2->v, edged_width * height / 4);          memcpy(image1->v, image2->v, edged_width * height / 4);
129  }  }
130    
131    /* setedges bug was fixed in this BS version */
132    #define SETEDGES_BUG_BEFORE             18
133    
134  void  void
135  image_setedges(IMAGE * image,  image_setedges(IMAGE * image,
136                             uint32_t edged_width,                             uint32_t edged_width,
137                             uint32_t edged_height,                             uint32_t edged_height,
138                             uint32_t width,                             uint32_t width,
139                             uint32_t height)                             uint32_t height,
140                               int bs_version)
141  {  {
142          const uint32_t edged_width2 = edged_width / 2;          const uint32_t edged_width2 = edged_width / 2;
143          const uint32_t width2 = width / 2;          uint32_t width2;
144          uint32_t i;          uint32_t i;
145          uint8_t *dst;          uint8_t *dst;
146          uint8_t *src;          uint8_t *src;
147    
   
148          dst = image->y - (EDGE_SIZE + EDGE_SIZE * edged_width);          dst = image->y - (EDGE_SIZE + EDGE_SIZE * edged_width);
149          src = image->y;          src = image->y;
150    
151            /* According to the Standard Clause 7.6.4, padding is done starting at 16
152             * pixel width and height multiples. This was not respected in old xvids */
153            if (bs_version == 0 || bs_version >= SETEDGES_BUG_BEFORE) {
154                    width  = (width+15)&~15;
155                    height = (height+15)&~15;
156            }
157    
158            width2 = width/2;
159    
160          for (i = 0; i < EDGE_SIZE; i++) {          for (i = 0; i < EDGE_SIZE; i++) {
161                  memset(dst, *src, EDGE_SIZE);                  memset(dst, *src, EDGE_SIZE);
162                  memcpy(dst + EDGE_SIZE, src, width);                  memcpy(dst + EDGE_SIZE, src, width);
# Line 202  Line 182 
182          }          }
183    
184    
185  //U          /* U */
186          dst = image->u - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);          dst = image->u - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);
187          src = image->u;          src = image->u;
188    
# Line 230  Line 210 
210          }          }
211    
212    
213  // V          /* V */
214          dst = image->v - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);          dst = image->v - (EDGE_SIZE2 + EDGE_SIZE2 * edged_width2);
215          src = image->v;          src = image->v;
216    
# Line 258  Line 238 
238          }          }
239  }  }
240    
241  // bframe encoding requires image-based u,v interpolation  /* bframe encoding requires image-based u,v interpolation */
242  void  void
243  image_interpolate(const IMAGE * refn,  image_interpolate(const IMAGE * refn,
244                                    IMAGE * refh,                                    IMAGE * refh,
# Line 269  Line 249 
249                                    uint32_t quarterpel,                                    uint32_t quarterpel,
250                                    uint32_t rounding)                                    uint32_t rounding)
251  {  {
252          const uint32_t offset = EDGE_SIZE2 * (edged_width + 1); // we only interpolate half of the edge area          const uint32_t offset = EDGE_SIZE2 * (edged_width + 1); /* we only interpolate half of the edge area */
253          const uint32_t stride_add = 7 * edged_width;          const uint32_t stride_add = 7 * edged_width;
254  /*  #if 0
 #ifdef BFRAMES  
255          const uint32_t edged_width2 = edged_width / 2;          const uint32_t edged_width2 = edged_width / 2;
256          const uint32_t edged_height2 = edged_height / 2;          const uint32_t edged_height2 = edged_height / 2;
257          const uint32_t offset2 = EDGE_SIZE2 * (edged_width2 + 1);          const uint32_t offset2 = EDGE_SIZE2 * (edged_width2 + 1);
258          const uint32_t stride_add2 = 7 * edged_width2;          const uint32_t stride_add2 = 7 * edged_width2;
259  #endif  #endif
 */  
260          uint8_t *n_ptr, *h_ptr, *v_ptr, *hv_ptr;          uint8_t *n_ptr, *h_ptr, *v_ptr, *hv_ptr;
261          uint32_t x, y;          uint32_t x, y;
262    
# Line 286  Line 264 
264          n_ptr = refn->y;          n_ptr = refn->y;
265          h_ptr = refh->y;          h_ptr = refh->y;
266          v_ptr = refv->y;          v_ptr = refv->y;
         hv_ptr = refhv->y;  
267    
268          n_ptr -= offset;          n_ptr -= offset;
269          h_ptr -= offset;          h_ptr -= offset;
270          v_ptr -= offset;          v_ptr -= offset;
         hv_ptr -= offset;  
271    
272            /* Note we initialize the hv pointer later, as we can optimize code a bit
273             * doing it down to up in quarterpel and up to down in halfpel */
274          if(quarterpel) {          if(quarterpel) {
275    
276                  for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {                  for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {
# Line 314  Line 292 
292                          n_ptr += stride_add;                          n_ptr += stride_add;
293                  }                  }
294    
295                  h_ptr = refh->y;                  h_ptr = refh->y + (edged_height - EDGE_SIZE - EDGE_SIZE2)*edged_width - EDGE_SIZE2;
296                  h_ptr -= offset;                  hv_ptr = refhv->y + (edged_height - EDGE_SIZE - EDGE_SIZE2)*edged_width - EDGE_SIZE2;
297    
298                  for (y = 0; y < (edged_height - EDGE_SIZE); y = y + 8) {                  for (y = 0; y < (edged_height - EDGE_SIZE); y = y + 8) {
299                            hv_ptr -= stride_add;
300                            h_ptr -= stride_add;
301                            hv_ptr -= EDGE_SIZE;
302                            h_ptr -= EDGE_SIZE;
303    
304                          for (x = 0; x < (edged_width - EDGE_SIZE); x = x + 8) {                          for (x = 0; x < (edged_width - EDGE_SIZE); x = x + 8) {
305                                    hv_ptr -= 8;
306                                    h_ptr -= 8;
307                                  interpolate8x8_6tap_lowpass_v(hv_ptr, h_ptr, edged_width, rounding);                                  interpolate8x8_6tap_lowpass_v(hv_ptr, h_ptr, edged_width, rounding);
                                 hv_ptr += 8;  
                                 h_ptr += 8;  
                         }  
   
                         hv_ptr += EDGE_SIZE;  
                         h_ptr += EDGE_SIZE;  
   
                         hv_ptr += stride_add;  
                         h_ptr += stride_add;  
308                  }                  }
309          }          }
310          else {          } else {
311    
312                    hv_ptr = refhv->y;
313                    hv_ptr -= offset;
314    
315                  for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {                  for (y = 0; y < (edged_height - EDGE_SIZE); y += 8) {
316                          for (x = 0; x < (edged_width - EDGE_SIZE); x += 8) {                          for (x = 0; x < (edged_width - EDGE_SIZE); x += 8) {
# Line 512  Line 491 
491  #undef IMG_V  #undef IMG_V
492          }          }
493    
494          DPRINTF(DPRINTF_DEBUG,"chroma_optimized_pixels = %i/%i", pixels, width*height/4);          DPRINTF(XVID_DEBUG_DEBUG,"chroma_optimized_pixels = %i/%i\n", pixels, width*height/4);
495  }  }
496    
497    
# Line 564  Line 543 
543                          uint32_t width,                          uint32_t width,
544                          int height,                          int height,
545                          uint32_t edged_width,                          uint32_t edged_width,
546                          uint8_t * src,                          uint8_t * src[4],
547                          int src_stride,                          int src_stride[4],
548                          int csp,                          int csp,
549                          int interlacing)                          int interlacing)
550  {  {
551          const int edged_width2 = edged_width/2;          const int edged_width2 = edged_width/2;
552          const int width2 = width/2;          const int width2 = width/2;
553          const int height2 = height/2;          const int height2 = height/2;
554          //const int height_signed = (csp & XVID_CSP_VFLIP) ? -height : height;  #if 0
555            const int height_signed = (csp & XVID_CSP_VFLIP) ? -height : height;
556    #endif
         //      int src_stride = width;  
   
         // --- xvid 2.1 compatiblity patch ---  
         // --- remove when xvid_dec_frame->stride equals real stride  
         /*  
         if ((csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB555 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB565 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_YUY2 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_YVYU ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_UYVY)  
         {  
                 src_stride *= 2;  
         }  
         else if ((csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB24)  
         {  
                 src_stride *= 3;  
         }  
         else if ((csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB32 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_ABGR ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGBA)  
         {  
                 src_stride *= 4;  
         }  
         */  
         // ^--- xvid 2.1 compatiblity fix ---^  
557    
558          switch (csp & ~XVID_CSP_VFLIP) {          switch (csp & ~XVID_CSP_VFLIP) {
559          case XVID_CSP_RGB555:          case XVID_CSP_RGB555:
560                  safe_packed_conv(                  safe_packed_conv(
561                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
562                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
563                          interlacing?rgb555i_to_yv12  :rgb555_to_yv12,                          interlacing?rgb555i_to_yv12  :rgb555_to_yv12,
564                          interlacing?rgb555i_to_yv12_c:rgb555_to_yv12_c, 2);                          interlacing?rgb555i_to_yv12_c:rgb555_to_yv12_c, 2);
# Line 612  Line 566 
566    
567          case XVID_CSP_RGB565:          case XVID_CSP_RGB565:
568                  safe_packed_conv(                  safe_packed_conv(
569                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
570                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
571                          interlacing?rgb565i_to_yv12  :rgb565_to_yv12,                          interlacing?rgb565i_to_yv12  :rgb565_to_yv12,
572                          interlacing?rgb565i_to_yv12_c:rgb565_to_yv12_c, 2);                          interlacing?rgb565i_to_yv12_c:rgb565_to_yv12_c, 2);
573                  break;                  break;
574    
575    
576          case XVID_CSP_RGB24:          case XVID_CSP_BGR:
577                  safe_packed_conv(                  safe_packed_conv(
578                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
579                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
580                          interlacing?bgri_to_yv12  :bgr_to_yv12,                          interlacing?bgri_to_yv12  :bgr_to_yv12,
581                          interlacing?bgri_to_yv12_c:bgr_to_yv12_c, 3);                          interlacing?bgri_to_yv12_c:bgr_to_yv12_c, 3);
582                  break;                  break;
583    
584          case XVID_CSP_RGB32:          case XVID_CSP_BGRA:
585                  safe_packed_conv(                  safe_packed_conv(
586                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
587                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
588                          interlacing?bgrai_to_yv12  :bgra_to_yv12,                          interlacing?bgrai_to_yv12  :bgra_to_yv12,
589                          interlacing?bgrai_to_yv12_c:bgra_to_yv12_c, 4);                          interlacing?bgrai_to_yv12_c:bgra_to_yv12_c, 4);
# Line 637  Line 591 
591    
592          case XVID_CSP_ABGR :          case XVID_CSP_ABGR :
593                  safe_packed_conv(                  safe_packed_conv(
594                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
595                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
596                          interlacing?abgri_to_yv12  :abgr_to_yv12,                          interlacing?abgri_to_yv12  :abgr_to_yv12,
597                          interlacing?abgri_to_yv12_c:abgr_to_yv12_c, 4);                          interlacing?abgri_to_yv12_c:abgr_to_yv12_c, 4);
# Line 645  Line 599 
599    
600          case XVID_CSP_RGBA :          case XVID_CSP_RGBA :
601                  safe_packed_conv(                  safe_packed_conv(
602                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
603                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
604                          interlacing?rgbai_to_yv12  :rgba_to_yv12,                          interlacing?rgbai_to_yv12  :rgba_to_yv12,
605                          interlacing?rgbai_to_yv12_c:rgba_to_yv12_c, 4);                          interlacing?rgbai_to_yv12_c:rgba_to_yv12_c, 4);
606                  break;                  break;
607    
608            case XVID_CSP_ARGB:
609                    safe_packed_conv(
610                            src[0], src_stride[0], image->y, image->u, image->v,
611                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
612                            interlacing?argbi_to_yv12  : argb_to_yv12,
613                            interlacing?argbi_to_yv12_c: argb_to_yv12_c, 4);
614                    break;
615    
616          case XVID_CSP_YUY2:          case XVID_CSP_YUY2:
617                  safe_packed_conv(                  safe_packed_conv(
618                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
619                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
620                          interlacing?yuyvi_to_yv12  :yuyv_to_yv12,                          interlacing?yuyvi_to_yv12  :yuyv_to_yv12,
621                          interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);                          interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);
# Line 661  Line 623 
623    
624          case XVID_CSP_YVYU:             /* u/v swapped */          case XVID_CSP_YVYU:             /* u/v swapped */
625                  safe_packed_conv(                  safe_packed_conv(
626                          src, src_stride, image->y, image->v, image->y,                          src[0], src_stride[0], image->y, image->v, image->u,
627                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
628                          interlacing?yuyvi_to_yv12  :yuyv_to_yv12,                          interlacing?yuyvi_to_yv12  :yuyv_to_yv12,
629                          interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);                          interlacing?yuyvi_to_yv12_c:yuyv_to_yv12_c, 2);
# Line 669  Line 631 
631    
632          case XVID_CSP_UYVY:          case XVID_CSP_UYVY:
633                  safe_packed_conv(                  safe_packed_conv(
634                          src, src_stride, image->y, image->u, image->v,                          src[0], src_stride[0], image->y, image->u, image->v,
635                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
636                          interlacing?uyvyi_to_yv12  :uyvy_to_yv12,                          interlacing?uyvyi_to_yv12  :uyvy_to_yv12,
637                          interlacing?uyvyi_to_yv12_c:uyvy_to_yv12_c, 2);                          interlacing?uyvyi_to_yv12_c:uyvy_to_yv12_c, 2);
638                  break;                  break;
639    
640          case XVID_CSP_I420:          case XVID_CSP_I420:     /* YCbCr == YUV == internal colorspace for MPEG */
641                  yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,                  yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,
642                          src, src + src_stride*height, src + src_stride*height + (src_stride/2)*height2,                          src[0], src[0] + src_stride[0]*height, src[0] + src_stride[0]*height + (src_stride[0]/2)*height2,
643                          src_stride, src_stride/2, width, height, (csp & XVID_CSP_VFLIP));                          src_stride[0], src_stride[0]/2, width, height, (csp & XVID_CSP_VFLIP));
644                  break                  break;
645                          ;  
646          case XVID_CSP_YV12:             /* u/v swapped */          case XVID_CSP_YV12: /* YCrCb == YVA == U and V plane swapped */
647                  yv12_to_yv12(image->y, image->v, image->u, edged_width, edged_width2,                  yv12_to_yv12(image->y, image->v, image->u, edged_width, edged_width2,
648                          src, src + src_stride*height, src + src_stride*height + (src_stride/2)*height2,                          src[0], src[0] + src_stride[0]*height, src[0] + src_stride[0]*height + (src_stride[0]/2)*height2,
649                          src_stride, src_stride/2, width, height, (csp & XVID_CSP_VFLIP));                          src_stride[0], src_stride[0]/2, width, height, (csp & XVID_CSP_VFLIP));
650                  break;                  break;
651    
652          case XVID_CSP_USER:          case XVID_CSP_PLANAR:  /* YCbCr with arbitrary pointers and different strides for Y and UV */
                 {  
                         DEC_PICTURE * pic = (DEC_PICTURE*)src;  
653                          yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,                          yv12_to_yv12(image->y, image->u, image->v, edged_width, edged_width2,
654                                  pic->y, pic->u, pic->v, pic->stride_y, pic->stride_y,                          src[0], src[1], src[2], src_stride[0], src_stride[1],  /* v: dst_stride[2] not yet supported */
655                                  width, height, (csp & XVID_CSP_VFLIP));                                  width, height, (csp & XVID_CSP_VFLIP));
                 }  
656                  break;                  break;
657    
658          case XVID_CSP_NULL:          case XVID_CSP_NULL:
# Line 759  Line 718 
718                           uint32_t width,                           uint32_t width,
719                           int height,                           int height,
720                           uint32_t edged_width,                           uint32_t edged_width,
721                           uint8_t * dst,                           uint8_t * dst[4],
722                           uint32_t dst_stride,                           uint32_t dst_stride[4],
723                           int csp,                           int csp,
724                           int interlacing)                           int interlacing)
725  {  {
# Line 773  Line 732 
732          image_dump_yuvpgm(image, edged_width, width, height, "\\decode.pgm");          image_dump_yuvpgm(image, edged_width, width, height, "\\decode.pgm");
733  */  */
734    
   
         // --- xvid 2.1 compatiblity patch ---  
         // --- remove when xvid_dec_frame->stride equals real stride  
         /*  
         if ((csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB555 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB565 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_YUY2 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_YVYU ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_UYVY)  
         {  
                 dst_stride *= 2;  
         }  
         else if ((csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB24)  
         {  
                 dst_stride *= 3;  
         }  
         else if ((csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGB32 ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_ABGR ||  
                 (csp & ~XVID_CSP_VFLIP) == XVID_CSP_RGBA)  
         {  
                 dst_stride *= 4;  
         }  
         */  
         // ^--- xvid 2.1 compatiblity fix ---^  
   
   
735          switch (csp & ~XVID_CSP_VFLIP) {          switch (csp & ~XVID_CSP_VFLIP) {
736          case XVID_CSP_RGB555:          case XVID_CSP_RGB555:
737                  safe_packed_conv(                  safe_packed_conv(
738                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
739                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
740                          interlacing?yv12_to_rgb555i  :yv12_to_rgb555,                          interlacing?yv12_to_rgb555i  :yv12_to_rgb555,
741                          interlacing?yv12_to_rgb555i_c:yv12_to_rgb555_c, 2);                          interlacing?yv12_to_rgb555i_c:yv12_to_rgb555_c, 2);
# Line 810  Line 743 
743    
744          case XVID_CSP_RGB565:          case XVID_CSP_RGB565:
745                  safe_packed_conv(                  safe_packed_conv(
746                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
747                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
748                          interlacing?yv12_to_rgb565i  :yv12_to_rgb565,                          interlacing?yv12_to_rgb565i  :yv12_to_rgb565,
749                          interlacing?yv12_to_rgb565i_c:yv12_to_rgb565_c, 2);                          interlacing?yv12_to_rgb565i_c:yv12_to_rgb565_c, 2);
750                  return 0;                  return 0;
751    
752          case XVID_CSP_RGB24:      case XVID_CSP_BGR:
753                  safe_packed_conv(                  safe_packed_conv(
754                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
755                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
756                          interlacing?yv12_to_bgri  :yv12_to_bgr,                          interlacing?yv12_to_bgri  :yv12_to_bgr,
757                          interlacing?yv12_to_bgri_c:yv12_to_bgr_c, 3);                          interlacing?yv12_to_bgri_c:yv12_to_bgr_c, 3);
758                  return 0;                  return 0;
759    
760          case XVID_CSP_RGB32:          case XVID_CSP_BGRA:
761                  safe_packed_conv(                  safe_packed_conv(
762                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
763                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
764                          interlacing?yv12_to_bgrai  :yv12_to_bgra,                          interlacing?yv12_to_bgrai  :yv12_to_bgra,
765                          interlacing?yv12_to_bgrai_c:yv12_to_bgra_c, 4);                          interlacing?yv12_to_bgrai_c:yv12_to_bgra_c, 4);
# Line 834  Line 767 
767    
768          case XVID_CSP_ABGR:          case XVID_CSP_ABGR:
769                  safe_packed_conv(                  safe_packed_conv(
770                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
771                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
772                          interlacing?yv12_to_abgri  :yv12_to_abgr,                          interlacing?yv12_to_abgri  :yv12_to_abgr,
773                          interlacing?yv12_to_abgri_c:yv12_to_abgr_c, 4);                          interlacing?yv12_to_abgri_c:yv12_to_abgr_c, 4);
# Line 842  Line 775 
775    
776          case XVID_CSP_RGBA:          case XVID_CSP_RGBA:
777                  safe_packed_conv(                  safe_packed_conv(
778                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
779                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
780                          interlacing?yv12_to_rgbai  :yv12_to_rgba,                          interlacing?yv12_to_rgbai  :yv12_to_rgba,
781                          interlacing?yv12_to_rgbai_c:yv12_to_rgba_c, 4);                          interlacing?yv12_to_rgbai_c:yv12_to_rgba_c, 4);
782                  return 0;                  return 0;
783    
784            case XVID_CSP_ARGB:
785                    safe_packed_conv(
786                            dst[0], dst_stride[0], image->y, image->u, image->v,
787                            edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
788                            interlacing?yv12_to_argbi  :yv12_to_argb,
789                            interlacing?yv12_to_argbi_c:yv12_to_argb_c, 4);
790                    return 0;
791    
792          case XVID_CSP_YUY2:          case XVID_CSP_YUY2:
793                  safe_packed_conv(                  safe_packed_conv(
794                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
795                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
796                          interlacing?yv12_to_yuyvi  :yv12_to_yuyv,                          interlacing?yv12_to_yuyvi  :yv12_to_yuyv,
797                          interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);                          interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);
798                  return 0;                  return 0;
799    
800          case XVID_CSP_YVYU:             // u,v swapped          case XVID_CSP_YVYU:             /* u,v swapped */
801                  safe_packed_conv(                  safe_packed_conv(
802                          dst, dst_stride, image->y, image->v, image->u,                          dst[0], dst_stride[0], image->y, image->v, image->u,
803                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
804                          interlacing?yv12_to_yuyvi  :yv12_to_yuyv,                          interlacing?yv12_to_yuyvi  :yv12_to_yuyv,
805                          interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);                          interlacing?yv12_to_yuyvi_c:yv12_to_yuyv_c, 2);
# Line 866  Line 807 
807    
808          case XVID_CSP_UYVY:          case XVID_CSP_UYVY:
809                  safe_packed_conv(                  safe_packed_conv(
810                          dst, dst_stride, image->y, image->u, image->v,                          dst[0], dst_stride[0], image->y, image->u, image->v,
811                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),                          edged_width, edged_width2, width, height, (csp & XVID_CSP_VFLIP),
812                          interlacing?yv12_to_uyvyi  :yv12_to_uyvy,                          interlacing?yv12_to_uyvyi  :yv12_to_uyvy,
813                          interlacing?yv12_to_uyvyi_c:yv12_to_uyvy_c, 2);                          interlacing?yv12_to_uyvyi_c:yv12_to_uyvy_c, 2);
814                  return 0;                  return 0;
815    
816          case XVID_CSP_I420:          case XVID_CSP_I420: /* YCbCr == YUV == internal colorspace for MPEG */
817                  yv12_to_yv12(dst, dst + dst_stride*height, dst + dst_stride*height + (dst_stride/2)*height2,                  yv12_to_yv12(dst[0], dst[0] + dst_stride[0]*height, dst[0] + dst_stride[0]*height + (dst_stride[0]/2)*height2,
818                          dst_stride, dst_stride/2,                          dst_stride[0], dst_stride[0]/2,
819                          image->y, image->u, image->v, edged_width, edged_width2,                          image->y, image->u, image->v, edged_width, edged_width2,
820                          width, height, (csp & XVID_CSP_VFLIP));                          width, height, (csp & XVID_CSP_VFLIP));
821                  return 0;                  return 0;
822    
823          case XVID_CSP_YV12:             // u,v swapped          case XVID_CSP_YV12:     /* YCrCb == YVU == U and V plane swapped */
824                  yv12_to_yv12(dst, dst + dst_stride*height, dst + dst_stride*height + (dst_stride/2)*height2,                  yv12_to_yv12(dst[0], dst[0] + dst_stride[0]*height, dst[0] + dst_stride[0]*height + (dst_stride[0]/2)*height2,
825                          dst_stride, dst_stride/2,                          dst_stride[0], dst_stride[0]/2,
826                          image->y, image->v, image->u, edged_width, edged_width2,                          image->y, image->v, image->u, edged_width, edged_width2,
827                          width, height, (csp & XVID_CSP_VFLIP));                          width, height, (csp & XVID_CSP_VFLIP));
828                  return 0;                  return 0;
829    
830          case XVID_CSP_USER:          case XVID_CSP_PLANAR:  /* YCbCr with arbitrary pointers and different strides for Y and UV */
831                  {                  yv12_to_yv12(dst[0], dst[1], dst[2],
832                          DEC_PICTURE * pic = (DEC_PICTURE*)dst;                          dst_stride[0], dst_stride[1],   /* v: dst_stride[2] not yet supported */
833                          pic->y = image->y;                          image->y, image->u, image->v, edged_width, edged_width2,
834                          pic->u = image->u;                          width, height, (csp & XVID_CSP_VFLIP));
835                          pic->v = image->v;                  return 0;
836                          pic->stride_y = edged_width;  
837                          pic->stride_uv = edged_width / 2;          case XVID_CSP_INTERNAL :
838                  }                  dst[0] = image->y;
839                    dst[1] = image->u;
840                    dst[2] = image->v;
841                    dst_stride[0] = edged_width;
842                    dst_stride[1] = edged_width/2;
843                    dst_stride[2] = edged_width/2;
844                  return 0;                  return 0;
845    
846          case XVID_CSP_NULL:          case XVID_CSP_NULL:
847          case XVID_CSP_EXTERN:          case XVID_CSP_SLICE:
848                  return 0;                  return 0;
849    
850          }          }
# Line 944  Line 890 
890          if (sse==0)          if (sse==0)
891                  return 99.99F;                  return 99.99F;
892    
893          return 48.131F - 10*(float)log10((float)sse/(float)(pixels));   // log10(255*255)=4.8131          return 48.131F - 10*(float)log10((float)sse/(float)(pixels));   /* log10(255*255)=4.8131 */
894    
895  }  }
896    
# Line 954  Line 900 
900                     uint16_t width,                     uint16_t width,
901                     uint16_t height)                     uint16_t height)
902  {  {
903          int diff, x, y;          int y, bwidth, bheight;
904          long sse=0;          long sse=0;
905    
906          for (y = 0; y < height; y++) {          bwidth  = width  & (~0x07);
907            bheight = height & (~0x07);
908    
909            /* Compute the 8x8 integer part */
910            for (y = 0; y<bheight; y += 8) {
911                    int x;
912    
913                    /* Compute sse for the band */
914                    for (x = 0; x<bwidth; x += 8)
915                            sse += sse8_8bit(orig  + x, recon + x, stride);
916    
917                    /* remaining pixels of the 8 pixels high band */
918                    for (x = bwidth; x < width; x++) {
919                            int diff;
920                            diff = *(orig + 0*stride + x) - *(recon + 0*stride + x);
921                            sse += diff * diff;
922                            diff = *(orig + 1*stride + x) - *(recon + 1*stride + x);
923                            sse += diff * diff;
924                            diff = *(orig + 2*stride + x) - *(recon + 2*stride + x);
925                            sse += diff * diff;
926                            diff = *(orig + 3*stride + x) - *(recon + 3*stride + x);
927                            sse += diff * diff;
928                            diff = *(orig + 4*stride + x) - *(recon + 4*stride + x);
929                            sse += diff * diff;
930                            diff = *(orig + 5*stride + x) - *(recon + 5*stride + x);
931                            sse += diff * diff;
932                            diff = *(orig + 6*stride + x) - *(recon + 6*stride + x);
933                            sse += diff * diff;
934                            diff = *(orig + 7*stride + x) - *(recon + 7*stride + x);
935                            sse += diff * diff;
936                    }
937    
938                    orig  += 8*stride;
939                    recon += 8*stride;
940            }
941    
942            /* Compute the down rectangle sse */
943            for (y = bheight; y < height; y++) {
944                    int x;
945                  for (x = 0; x < width; x++) {                  for (x = 0; x < width; x++) {
946                            int diff;
947                          diff = *(orig + x) - *(recon + x);                          diff = *(orig + x) - *(recon + x);
948                          sse += diff * diff;                          sse += diff * diff;
949                  }                  }
950                  orig += stride;                  orig += stride;
951                  recon += stride;                  recon += stride;
952          }          }
953          return sse;  
954            return (sse);
955  }  }
956    
957  /*  #if 0
958    
959  #include <stdio.h>  #include <stdio.h>
960  #include <string.h>  #include <string.h>
# Line 992  Line 978 
978  }  }
979    
980    
981  // dump image+edges to yuv pgm files  /* dump image+edges to yuv pgm files */
982    
983  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)
984  {  {
# Line 1015  Line 1001 
1001    
1002          return 0;          return 0;
1003  }  }
1004  */  #endif
1005    
1006    
1007    
# Line 1080  Line 1066 
1066    
1067          for (y = 0; y < height; y++)          for (y = 0; y < height; y++)
1068                  for (x = 0; x < width; x++)                  for (x = 0; x < width; x++)
1069                          sum += ABS(img1->y[x + y * stride] - img2->y[x + y * stride]);                          sum += abs(img1->y[x + y * stride] - img2->y[x + y * stride]);
1070    
1071          for (y = 0; y < height2; y++)          for (y = 0; y < height2; y++)
1072                  for (x = 0; x < width2; x++)                  for (x = 0; x < width2; x++)
1073                          sum += ABS(img1->u[x + y * stride2] - img2->u[x + y * stride2]);                          sum += abs(img1->u[x + y * stride2] - img2->u[x + y * stride2]);
1074    
1075          for (y = 0; y < height2; y++)          for (y = 0; y < height2; y++)
1076                  for (x = 0; x < width2; x++)                  for (x = 0; x < width2; x++)
1077                          sum += ABS(img1->v[x + y * stride2] - img2->v[x + y * stride2]);                          sum += abs(img1->v[x + y * stride2] - img2->v[x + y * stride2]);
1078    
1079          return (float) sum / (width * height * 3 / 2);          return (float) sum / (width * height * 3 / 2);
1080  }  }
1081    
1082  void  void
1083  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) {
1084    uint8_t *dY,*dU,*dV,*sY,*sU,*sV;    uint8_t *dY,*dU,*dV,*sY,*sU,*sV;
1085    int std2 = std >> 1;    int std2 = std >> 1;
1086    int w = mbl << 4, w2,i;    int w = mbl << 4, w2,i;
# Line 1103  Line 1089 
1089      w = width;      w = width;
1090    w2 = w >> 1;    w2 = w >> 1;
1091    
1092    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);
1093    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);
1094    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);
1095    sY = cur->y + (mby << 4) * std + (mbx << 4);    sY = cur->y + (mby << 4) * std + (mbx << 4);
1096    sU = cur->u + (mby << 3) * std2 + (mbx << 3);    sU = cur->u + (mby << 3) * std2 + (mbx << 3);
1097    sV = cur->v + (mby << 3) * std2 + (mbx << 3);    sV = cur->v + (mby << 3) * std2 + (mbx << 3);
1098    
1099    for(i = 0 ; i < 16 ; i++) {    for(i = 0 ; i < 16 ; i++) {
1100      memcpy(dY,sY,w);      memcpy(dY,sY,w);
1101      dY += out_frm->stride_y;      dY += out_frm->stride[0];
1102      sY += std;      sY += std;
1103    }    }
1104    for(i = 0 ; i < 8 ; i++) {    for(i = 0 ; i < 8 ; i++) {
1105      memcpy(dU,sU,w2);      memcpy(dU,sU,w2);
1106      dU += out_frm->stride_u;      dU += out_frm->stride[1];
1107      sU += std2;      sU += std2;
1108    }    }
1109    for(i = 0 ; i < 8 ; i++) {    for(i = 0 ; i < 8 ; i++) {
1110      memcpy(dV,sV,w2);      memcpy(dV,sV,w2);
1111      dV += out_frm->stride_v;      dV += out_frm->stride[2];
1112      sV += std2;      sV += std2;
1113    }    }
1114  }  }
# Line 1169  Line 1155 
1155          int i,j;          int i,j;
1156    
1157          /* luma: j,i in block units */          /* luma: j,i in block units */
1158          if ((flags & XVID_DEC_DEBLOCKY))  
         {  
1159                  for (j = 1; j < mb_height*2; j++)               /* horizontal deblocking */                  for (j = 1; j < mb_height*2; j++)               /* horizontal deblocking */
1160                  for (i = 0; i < mb_width*2; i++)                  for (i = 0; i < mb_width*2; i++)
1161                  {                  {
# Line 1193  Line 1178 
1178                                                     edged_width, nblocks);                                                     edged_width, nblocks);
1179                          }                          }
1180                  }                  }
1181          }  
1182    
1183    
1184          /* chroma */          /* chroma */
1185          if ((flags & XVID_DEC_DEBLOCKUV))  
         {  
1186                  for (j = 1; j < mb_height; j++)         /* horizontal deblocking */                  for (j = 1; j < mb_height; j++)         /* horizontal deblocking */
1187                  for (i = 0; i < mb_width; i++)                  for (i = 0; i < mb_width; i++)
1188                  {                  {
# Line 1226  Line 1210 
1210                                                     edged_width2, nblocks);                                                     edged_width2, nblocks);
1211                          }                          }
1212                  }                  }
1213          }  
1214    
1215  }  }
1216    

Legend:
Removed from v.851  
changed lines
  Added in v.1424

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