/[svn]/libgig/trunk/src/helper.h
ViewVC logotype

Diff of /libgig/trunk/src/helper.h

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

revision 1330 by persson, Sun Sep 9 10:36:23 2007 UTC revision 1875 by schoenebeck, Thu Mar 26 13:32:59 2009 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file access library    *   *   libgig - C++ cross-platform Gigasampler format file access library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003-2006 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2009 by Christian Schoenebeck                      *
6   *                              <cuse@users.sourceforge.net>               *   *                              <cuse@users.sourceforge.net>               *
7   *                                                                         *   *                                                                         *
8   *   This library is free software; you can redistribute it and/or modify  *   *   This library is free software; you can redistribute it and/or modify  *
# Line 86  inline void store32(uint8_t* pData, uint Line 86  inline void store32(uint8_t* pData, uint
86   * @param WordSize - size of the data words (in bytes)   * @param WordSize - size of the data words (in bytes)
87   */   */
88  inline void SwapMemoryArea(void* pData, unsigned long AreaSize, uint WordSize) {  inline void SwapMemoryArea(void* pData, unsigned long AreaSize, uint WordSize) {
89        if (!AreaSize) return; // AreaSize==0 would cause a segfault here
90      switch (WordSize) { // TODO: unefficient      switch (WordSize) { // TODO: unefficient
91          case 1: {          case 1: {
92              uint8_t* pDst = (uint8_t*) pData;              uint8_t* pDst = (uint8_t*) pData;
# Line 128  inline void SwapMemoryArea(void* pData, Line 129  inline void SwapMemoryArea(void* pData,
129                  memcpy((uint8_t*) pData + lo, (uint8_t*) pData + hi, WordSize);                  memcpy((uint8_t*) pData + lo, (uint8_t*) pData + hi, WordSize);
130                  memcpy((uint8_t*) pData + hi, pCache, WordSize);                  memcpy((uint8_t*) pData + hi, pCache, WordSize);
131              }              }
132              delete[] pCache;              if (pCache) delete[] pCache;
133              break;              break;
134          }          }
135      }      }

Legend:
Removed from v.1330  
changed lines
  Added in v.1875

  ViewVC Help
Powered by ViewVC