X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.cxx;h=2c184116f5f6909ef38d62de1afd6008cc3ba207;hb=6b17eb062f567984bf36876ddbb980731b603855;hp=26797b4dc686c2cdef757e4d7f2fe83b0d8aba60;hpb=3e82e8b67eddf5d4b95b6aa2a2e2615aced4c452;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.cxx b/src/gdcmRLEFramesInfo.cxx index 26797b4d..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:02:18 $ - Version: $Revision: 1.13 $ + 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 @@ -65,7 +65,8 @@ RLEFrame *RLEFramesInfo::GetNextFrame() * @param raw raw * @param xSize x Size * @param ySize y Size - * @param BitsAllocated Bits allocated + * @param zSize z Size + * @param bitsAllocated Bits allocated * @return Boolean */ bool RLEFramesInfo::DecompressRLEFile( std::ifstream *fp , uint8_t *raw, @@ -94,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 @@ -128,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; }