]> Creatis software - gdcm.git/commitdiff
ENH: Minor commit to illustrate what was done to create the mpeg file out of the...
authormalaterre <malaterre>
Mon, 23 May 2005 13:28:19 +0000 (13:28 +0000)
committermalaterre <malaterre>
Mon, 23 May 2005 13:28:19 +0000 (13:28 +0000)
src/gdcmMpeg.cxx
src/gdcmPixelReadConvert.cxx

index c684cd920548fc4d5d2af3fc18728854412fc151..44a8ebb8483aa1b7d0a42c791ff7b24dcacf4bb5 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmMpeg.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/05/21 20:03:48 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2005/05/23 13:28:19 $
+  Version:   $Revision: 1.3 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -307,10 +307,18 @@ namespace gdcm
  * @return 1 on success, 0 on error
  */
 
-bool ReadMPEGFile (std::ifstream *fp, void *image_buffer)
+bool ReadMPEGFile (std::ifstream *fp, void *image_buffer, size_t length)
 {
   int ret, code;
 
+#if 0
+  fp->read((char*)image_buffer, length);
+
+  ofstream out("/tmp/etiam.mpeg");
+  out.write((char*)image_buffer, length);
+  out.close();
+#endif
+
 //  Clear_Options();
 
   /* decode command line arguments */
index 83a4b42569f41b1007ef1f5c41a7f2619b088855..d2abc9e1b588502b67bf3daa84e8daf6fadd9c46 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmPixelReadConvert.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/05/22 20:33:09 $
-  Version:   $Revision: 1.58 $
+  Date:      $Date: 2005/05/23 13:28:19 $
+  Version:   $Revision: 1.59 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -31,7 +31,7 @@
 namespace gdcm
 {
 
-//bool ReadMPEGFile (std::ifstream *fp, void *image_buffer);
+//bool ReadMPEGFile (std::ifstream *fp, void *image_buffer, size_t lenght);
 //bool gdcm_read_JPEG2000_file (std::ifstream* fp, void* raw, size_t inputlength);
 //-----------------------------------------------------------------------------
 #define str2num(str, typeNum) *((typeNum *)(str))
@@ -258,7 +258,7 @@ bool PixelReadConvert::ReadAndDecompressPixelData( std::ifstream *fp )
    {
       //gdcmWarningMacro( "Sorry, MPEG not yet taken into account" );
       //return false;
-//      ReadMPEGFile(fp, Raw); // fp has already been seek to start of mpeg
+//      ReadMPEGFile(fp, Raw, PixelDataLength); // fp has already been seek to start of mpeg
       return true;
    }
    else