rgbcommon.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */
  35. #include "hlxclib/string.h"
  36. #include "nostatic/colorlib.h"
  37. #include "nostatic/rgb.h"
  38. #include "nostatic/rgbcommon.h"
  39. void IMAGE_SHRINK (unsigned char *dest_ptr, int dest_dx, int dest_dy,
  40.                    int dest_pitch, int dest_bpp, unsigned char *src_ptr,
  41.                    int src_dx, int src_dy, int src_pitch, int src_bpp,
  42.                    void (*row_func) (unsigned char *, int, unsigned char *, int),
  43.                    void (*row2x_func) (unsigned char *, unsigned char *,
  44.                                        unsigned char *, int, unsigned char *, int))
  45. {
  46.     register unsigned char *d = dest_ptr;
  47.     register unsigned char *s = src_ptr;
  48.     register int count = dest_dy;
  49.     register int limit = src_dy >> 1;
  50.     register int step = dest_dy;
  51.     if (count)
  52.     {
  53.         do
  54.         {
  55.             (*row_func) (d, dest_dx, s, src_dx);
  56.             d += dest_pitch;
  57.             do
  58.             {
  59.                 s += src_pitch;
  60.             }
  61.             while ((limit -= step) >= 0);
  62.             limit += src_dy;
  63.         }
  64.         while (--count);
  65.     }
  66. }
  67. void
  68. IMAGE_COPY (unsigned char *dest_ptr, int dest_dx, int dest_dy, int dest_pitch,
  69.             int dest_bpp, unsigned char *src_ptr, int src_dx, int src_dy,
  70.             int src_pitch, int src_bpp, void (*row_func) (unsigned char *,
  71.                                                           int,
  72.                                                           unsigned char *,
  73.                                                           int),
  74.             void (*row2x_func) (unsigned char *, unsigned char *,
  75.                                 unsigned char *, int, unsigned char *, int))
  76. {
  77.     register unsigned char *d = dest_ptr;
  78.     register unsigned char *s = src_ptr;
  79.     register int count = dest_dy;
  80.     if (count)
  81.     {
  82.         do
  83.         {
  84.             (*row_func) (d, dest_dx, s, src_dx);
  85.             s += src_pitch;
  86.             d += dest_pitch;
  87.         }
  88.         while (--count);
  89.     }
  90. }
  91. void
  92. IMAGE_STRETCH (unsigned char *dest_ptr, int dest_dx, int dest_dy,
  93.                int dest_pitch, int dest_bpp, unsigned char *src_ptr,
  94.                int src_dx, int src_dy, int src_pitch, int src_bpp,
  95.                void (*row_func) (unsigned char *, int, unsigned char *, int),
  96.                void (*row2x_func) (unsigned char *, unsigned char *,
  97.                                    unsigned char *, int, unsigned char *,
  98.                                    int))
  99. {
  100.     register unsigned char *d = dest_ptr;
  101.     register unsigned char *s = src_ptr;
  102.     register int dest_dx_bytes = dest_dx * dest_bpp;
  103.     register int count = dest_dy;
  104.     register int limit = dest_dy >> 1;
  105.     register int step = src_dy;
  106.     if (count)
  107.     {
  108.         goto start;
  109.         do
  110.         {
  111.             if ((limit -= step) < 0)
  112.             {
  113.                 limit += dest_dy;
  114.               start:(*row_func) (d, dest_dx, s, src_dx);
  115.                 s += src_pitch;
  116.                 d += dest_pitch;
  117.             }
  118.             else
  119.             {
  120.                 memcpy (d, d - dest_pitch, dest_dx_bytes);
  121.                 d += dest_pitch;
  122.             }
  123.         }
  124.         while (--count);
  125.     }
  126. }
  127. void
  128. IMAGE_STRETCH2X (unsigned char *dest_ptr, int dest_dx, int dest_dy,
  129.                  int dest_pitch, int dest_bpp, unsigned char *src_ptr,
  130.                  int src_dx, int src_dy, int src_pitch, int src_bpp,
  131.                  void (*row_func) (unsigned char *, int, unsigned char *,
  132.                                    int), void (*row2x_func) (unsigned char *,
  133.                                                              unsigned char *,
  134.                                                              unsigned char *,
  135.                                                              int,
  136.                                                              unsigned char *,
  137.                                                              int))
  138. {
  139.     register unsigned char *d1 = dest_ptr;
  140.     register unsigned char *d12 = dest_ptr + dest_pitch;
  141.     register unsigned char *d2 = dest_ptr + dest_pitch * 2;
  142.     register unsigned char *s = src_ptr;
  143.     register int dest_dx_bytes = dest_dx * dest_bpp;
  144.     register int count = src_dy;
  145.     if (count)
  146.     {
  147.         (*row_func) (d1, dest_dx, s, src_dx);
  148.         s += src_pitch;
  149.         while (--count)
  150.         {
  151.             (*row2x_func) (d1, d12, d2, dest_dx, s, src_dx);
  152.             d1 += 2 * dest_pitch;
  153.             d12 += 2 * dest_pitch;
  154.             d2 += 2 * dest_pitch;
  155.             s += src_pitch;
  156.         }
  157.         memcpy (d12, d1, dest_dx_bytes);
  158.     }
  159. }
  160. void
  161. IMAGE_STRETCH2XPLUS (unsigned char *dest_ptr, int dest_dx, int dest_dy,
  162.                      int dest_pitch, int dest_bpp, unsigned char *src_ptr,
  163.                      int src_dx, int src_dy, int src_pitch, int src_bpp,
  164.                      void (*row_func) (unsigned char *, int, unsigned char *,
  165.                                        int),
  166.                      void (*row2x_func) (unsigned char *, unsigned char *,
  167.                                          unsigned char *, int,
  168.                                          unsigned char *, int))
  169. {
  170.     register unsigned char *d = dest_ptr, *d1;
  171.     register unsigned char *s = src_ptr;
  172.     register int dest_dx_bytes = dest_dx * dest_bpp;
  173.     register int count = dest_dy;
  174.     register int limit = dest_dy >> 1;
  175.     register int step = src_dy << 1;
  176.     register int remainder = (2 * dest_dy - limit) / step;
  177.     if (count)
  178.     {
  179.         (*row_func) (d, dest_dx, s, src_dx);
  180.         s += src_pitch;
  181.         if (!(count -= remainder))
  182.         {
  183.             remainder--;
  184.             goto end;
  185.         }
  186.         while (1)
  187.         {
  188.             goto start;
  189.             do
  190.             {
  191.                 memcpy (d + dest_pitch, d, dest_dx_bytes);
  192.                 d += dest_pitch;
  193.               start:
  194.                 if (!(--count))
  195.                     goto end;
  196.             }
  197.             while ((limit -= step) >= 0);
  198.             limit += dest_dy;
  199.             d1 = d;
  200.             do
  201.             {
  202.                 d += dest_pitch;
  203.                 if (!(--count))
  204.                     goto end_2;
  205.             }
  206.             while ((limit -= step) >= 0);
  207.             limit += dest_dy;
  208.             (*row2x_func) (d1, d1 + dest_pitch, d + dest_pitch, dest_dx, s,
  209.                            src_dx);
  210.             d1 += dest_pitch;
  211.             s += src_pitch;
  212.             while (d1 != d)
  213.             {
  214.                 memcpy (d1 + dest_pitch, d1, dest_dx_bytes);
  215.                 d1 += dest_pitch;
  216.             }
  217.             d += dest_pitch;
  218.         }
  219.       end_2:
  220.         while (d1 != d)
  221.         {
  222.             memcpy (d1 + dest_pitch, d1, dest_dx_bytes);
  223.             d1 += dest_pitch;
  224.         }
  225.       end:
  226.         while (remainder--)
  227.         {
  228.             memcpy (d + dest_pitch, d, dest_dx_bytes);
  229.             d += dest_pitch;
  230.         }
  231.     }
  232. }