rgbcommon.c
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:9k
源码类别:

Symbian

开发平台:

Visual C++

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