X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.cxx;h=de833c093864fdf23d66db85d4fec10c268c0d66;hb=8e6bffaaf0903dff8a0a60f562fd60eeee409bed;hp=31f933f358c0b41fffc92354d5901bbe80ac4868;hpb=8d2a721372b42fa92659724b2da072f5bd7c8867;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.cxx b/src/gdcmRLEFramesInfo.cxx index 31f933f3..de833c09 100644 --- a/src/gdcmRLEFramesInfo.cxx +++ b/src/gdcmRLEFramesInfo.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.cxx,v $ Language: C++ - Date: $Date: 2005/02/02 10:16:02 $ - Version: $Revision: 1.14 $ + Date: $Date: 2006/01/27 10:01:34 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -18,6 +18,11 @@ #include "gdcmRLEFramesInfo.h" #include "gdcmDebug.h" +#include "gdcmUtil.h" + +#if defined(__BORLANDC__) + #include // for memset +#endif namespace gdcm { @@ -61,7 +66,7 @@ RLEFrame *RLEFramesInfo::GetNextFrame() * \brief Reads from disk the Pixel Data of 'Run Length Encoded' * Dicom encapsulated file and decompress it. * @param fp already open File Pointer - * at which the pixel data should be copied + * from which the pixel data should be read * @param raw raw * @param xSize x Size * @param ySize y Size @@ -95,7 +100,7 @@ bool RLEFramesInfo::DecompressRLEFile( std::ifstream *fp , uint8_t *raw, * \brief We assume Raw contains the decoded RLE pixels but as * 8 bits per pixel. We convert those pixels to 16 bits * per pixel. - * @param raw raw + * @param raw raw * @param xSize x Size * @param ySize y Size * @param numberOfFrames number of frames @@ -105,20 +110,34 @@ bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits(uint8_t *raw, int xSize, int ySize, int numberOfFrames) { size_t pixelNumber = xSize * ySize; - size_t rawSize = xSize * ySize * numberOfFrames; + size_t rawSize = pixelNumber * numberOfFrames * 2; // We assumed Raw contains the decoded RLE pixels but as // 8 bits per pixel. In order to convert those pixels to 16 bits // per pixel we cannot work in place within Raw and hence // we copy it in a safe place, say copyRaw. - uint8_t *copyRaw = new uint8_t[rawSize * 2]; - memmove( copyRaw, raw, rawSize * 2 ); + uint8_t *copyRaw = new uint8_t[rawSize]; + memmove( copyRaw, raw, rawSize ); uint8_t *x = raw; - uint8_t *a = copyRaw; - uint8_t *b = a + pixelNumber; + uint8_t *a; + uint8_t *b; + + // Warning : unckecked patch to see the behaviour on Big Endian Processors + + if ( !Util::IsCurrentProcessorBigEndian() ) + { + a = copyRaw; // beginning of 'low bytes' + b = a + pixelNumber; // beginning of 'hight bytes' + } + else + { + b = copyRaw; // beginning of 'low bytes' + a = b + pixelNumber; // beginning of 'hight bytes' + } + // Re order bytes for ( int i = 0; i < numberOfFrames; i++ ) { for ( unsigned int j = 0; j < pixelNumber; j++ ) @@ -127,9 +146,8 @@ bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits(uint8_t *raw, int xSize, *(x++) = *(a++); } } - delete[] copyRaw; - /// \todo check that operator new [] didn't fail, and sometimes return false + delete[] copyRaw; return true; }