X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.cxx;h=2c184116f5f6909ef38d62de1afd6008cc3ba207;hb=04f3bbda36168ed865e04de8b94d2c60206f962a;hp=31f933f358c0b41fffc92354d5901bbe80ac4868;hpb=8d2a721372b42fa92659724b2da072f5bd7c8867;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.cxx b/src/gdcmRLEFramesInfo.cxx index 31f933f3..2c184116 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: 2005/02/11 17:01:46 $ + Version: $Revision: 1.15 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -95,7 +95,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 @@ -129,8 +129,6 @@ bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits(uint8_t *raw, int xSize, } delete[] copyRaw; - /// \todo check that operator new [] didn't fail, and sometimes return false - return true; }