/[svn]/libgig/trunk/src/tools/gigextract.cpp
ViewVC logotype

Diff of /libgig/trunk/src/tools/gigextract.cpp

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

revision 549 by schoenebeck, Mon May 16 18:40:45 2005 UTC revision 1063 by schoenebeck, Sat Mar 3 21:45:25 2007 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file loader library    *   *   libgig - C++ cross-platform Gigasampler format file access library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003-2005 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2007 by Christian Schoenebeck                      *
6   *                              <cuse@users.sourceforge.net>               *   *                              <cuse@users.sourceforge.net>               *
7   *                                                                         *   *                                                                         *
8     *   This program is part of libgig.                                       *
9     *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
11   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
12   *   the Free Software Foundation; either version 2 of the License, or     *   *   the Free Software Foundation; either version 2 of the License, or     *
# Line 46  Line 48 
48  #include <sys/stat.h>  #include <sys/stat.h>
49  #include <dirent.h>  #include <dirent.h>
50  #include <errno.h>  #include <errno.h>
51  #include <dlfcn.h>  
52    #include "gig.h"
53    
54    #if POSIX
55    # include <dlfcn.h>
56    #endif
57    
58  // only libsndfile is available for Windows, so we use that for writing the sound files  // only libsndfile is available for Windows, so we use that for writing the sound files
59  #ifdef WIN32  #ifdef WIN32
60  # define HAVE_SNDFILE 1  # define HAVE_SNDFILE 1
61  #endif // WIN32  #endif // WIN32
62    
63    // abort compilation here if neither libsndfile nor libaudiofile are available
64    #if !HAVE_SNDFILE && !HAVE_AUDIOFILE
65    # error "Neither libsndfile nor libaudiofile seem to be available!"
66    # error "(HAVE_SNDFILE and HAVE_AUDIOFILE are both false)"
67    #endif
68    
69  // we prefer libsndfile before libaudiofile  // we prefer libsndfile before libaudiofile
70  #if HAVE_SNDFILE  #if HAVE_SNDFILE
71  # include <sndfile.h>  # include <sndfile.h>
# Line 60  Line 73 
73  # include <audiofile.h>  # include <audiofile.h>
74  #endif // HAVE_SNDFILE  #endif // HAVE_SNDFILE
75    
 #include "gig.h"  
   
76  using namespace std;  using namespace std;
77    
78  typedef map<unsigned int, bool> OrderMap;  typedef map<unsigned int, bool> OrderMap;
# Line 74  void ExtractSamples(gig::File* gig, char Line 85  void ExtractSamples(gig::File* gig, char
85  int writeWav(const char* filename, void* samples, long samplecount, int channels, int bitdepth, long rate);  int writeWav(const char* filename, void* samples, long samplecount, int channels, int bitdepth, long rate);
86  string ToString(int i);  string ToString(int i);
87    
88  #ifndef HAVE_SNDFILE  #if !HAVE_SNDFILE // use libaudiofile
89  void* hAFlib; // handle to libaudiofile  void* hAFlib; // handle to libaudiofile
90  void openAFlib(void);  void openAFlib(void);
91  void closeAFlib(void);  void closeAFlib(void);
# Line 161  int main(int argc, char *argv[]) { Line 172  int main(int argc, char *argv[]) {
172  }  }
173    
174  void ExtractSamples(gig::File* gig, char* destdir, OrderMap* ordered) {  void ExtractSamples(gig::File* gig, char* destdir, OrderMap* ordered) {
175  #ifndef HAVE_SNDFILE  #if !HAVE_SNDFILE // use libaudiofile
176      hAFlib = NULL;      hAFlib = NULL;
177      openAFlib();      openAFlib();
178  #endif // !HAVE_SNDFILE  #endif // !HAVE_SNDFILE
179      uint8_t* pWave  = NULL;      uint8_t* pWave  = NULL;
180        int* pIntWave = NULL;
181      long BufferSize = 0;      long BufferSize = 0;
182      int samples     = 0;      int samples     = 0;
183        gig::buffer_t decompressionBuffer;
184        decompressionBuffer.Size = 0;
185        unsigned long decompressionBufferSize = 0;
186      cout << "Seeking for available samples..." << flush;      cout << "Seeking for available samples..." << flush;
187      gig::Sample* pSample = gig->GetFirstSample();      gig::Sample* pSample = gig->GetFirstSample();
188      cout << "OK" << endl << flush;      cout << "OK" << endl << flush;
# Line 200  void ExtractSamples(gig::File* gig, char Line 215  void ExtractSamples(gig::File* gig, char
215    
216    
217  #if USE_DISK_STREAMING  #if USE_DISK_STREAMING
218          long neededsize = (pSample->Compressed) ? 10485760 /* 10 MB buffer */          long neededsize = pSample->BitDepth == 24 ?
219                                                  : pSample->SamplesTotal * pSample->FrameSize;              pSample->SamplesTotal * pSample->Channels * sizeof(int) :
220                pSample->SamplesTotal * pSample->FrameSize;
221          if (BufferSize < neededsize) {          if (BufferSize < neededsize) {
222              if (pWave) delete[] pWave;              if (pWave) delete[] pWave;
223              pWave = new uint8_t[neededsize];              pWave = new uint8_t[neededsize];
224              BufferSize = neededsize;              BufferSize = neededsize;
225          }          }
226            pIntWave = (int*)pWave;
227  #  if HASHED_READS_TEST  #  if HASHED_READS_TEST
228          unsigned long readsamples     = 0,          unsigned long readinthisrun   = 0,
                       readinthisrun   = 0,  
229                        samplepiecesize = 2000;                        samplepiecesize = 2000;
230          uint8_t* pSamplePiece = pWave;          uint8_t* pSamplePiece = pWave;
231          do { // we read the sample in small pieces and increment the size with each run just to test streaming capability          do { // we read the sample in small pieces and increment the size with each run just to test streaming capability
232              readinthisrun = pSample->Read(pSamplePiece, ++samplepiecesize);              readinthisrun = pSample->Read(pSamplePiece, ++samplepiecesize);
233              // 24 bit is truncated to 16 by Sample::Read at the moment              pSamplePiece += readinthisrun * pSample->FrameSize;
             pSamplePiece += readinthisrun * (2 * pSample->Channels); // readinthisrun * pSample->FrameSize;  
             readsamples  += readinthisrun;  
234          } while (readinthisrun == samplepiecesize);          } while (readinthisrun == samplepiecesize);
235    
         if (pSample->Compressed) { // hack  
             pSample->SamplesTotal = readsamples;  
             pSample->BitDepth = 16;  
         }  
236  #  else // read in one piece  #  else // read in one piece
237          if (pSample->Compressed) {          if (pSample->Compressed) {
238              pSample->SamplesTotal = pSample->Read(pWave, 10485760 >> 2); // assumes 16 bit stereo              if (decompressionBufferSize < pSample->SamplesTotal) {
239          }                  gig::Sample::DestroyDecompressionBuffer(decompressionBuffer);
240          else {                  decompressionBuffer = gig::Sample::CreateDecompressionBuffer(pSample->SamplesTotal);
241                    decompressionBufferSize = pSample->SamplesTotal;
242                }
243                pSample->Read(pWave, pSample->SamplesTotal, &decompressionBuffer);
244            } else {
245              pSample->Read(pWave, pSample->SamplesTotal);              pSample->Read(pWave, pSample->SamplesTotal);
246          }          }
247  #  endif // HASHED_READS_TEST  #  endif // HASHED_READS_TEST
248  #else // no disk streaming  #else // no disk streaming
249          if (pSample->Compressed) {          if (pSample->Compressed) {
250              cout << "Sorry, sample is compressed and Sample::LoadSampleData() has no decompression routine yet! - Solution: set USE_DISK_STREAMING in gigextract.cpp (line 29) to 1 and recompile!" << endl;              cout << "Sorry, sample is compressed and Sample::LoadSampleData() only decompresses the beginning of the sample - Solution: set USE_DISK_STREAMING in gigextract.cpp (line 32) to 1 and recompile!" << endl;
251            } else {
252                gig::buffer_t buffer = pSample->LoadSampleData(); // load wave into RAM
253                pWave = static_cast<uint8_t*>(buffer.pStart);
254                if (pSample->BitDepth == 24) {
255                    long neededsize = pSample->SamplesTotal * pSample->Channels;
256                    if (BufferSize < neededsize) {
257                        if (pIntWave) delete[] pIntWave;
258                        pIntWave = new int[neededsize];
259                        BufferSize = neededsize;
260                    }
261                }
262          }          }
         else pWave = (uint8_t*) pSample->LoadSampleData(); // load wave into RAM  
263  #endif // USE_DISK_STREAMING  #endif // USE_DISK_STREAMING
264          if (pWave) {          if (pWave) {
265    
266                // Both libsndfile and libaudiofile uses int for 24 bit
267                // samples. libgig however returns 3 bytes per sample, so
268                // we have to convert the wave data before writing.
269                if (pSample->BitDepth == 24) {
270                    int n = pSample->SamplesTotal * pSample->Channels;
271                    for (int i = n - 1 ; i >= 0 ; i--) {
272    #if HAVE_SNDFILE
273                        pIntWave[i] = pWave[i * 3] << 8 | pWave[i * 3 + 1] << 16 | pWave[i * 3 + 2] << 24;
274    #else
275                        pIntWave[i] = pWave[i * 3] | pWave[i * 3 + 1] << 8 | pWave[i * 3 + 2] << 16;
276    #endif
277                    }
278                }
279    
280              int res = writeWav(filename.c_str(),              int res = writeWav(filename.c_str(),
281                                 pWave,                                 pSample->BitDepth == 24 ? static_cast<void*>(pIntWave) : pWave,
282                                 pSample->SamplesTotal,                                 pSample->SamplesTotal,
283                                 pSample->Channels,                                 pSample->Channels,
284                                 pSample->BitDepth,                                 pSample->BitDepth,
# Line 252  void ExtractSamples(gig::File* gig, char Line 291  void ExtractSamples(gig::File* gig, char
291    
292          pSample = gig->GetNextSample();          pSample = gig->GetNextSample();
293      }      }
294      if (pWave) delete[] (uint8_t*) pWave;      gig::Sample::DestroyDecompressionBuffer(decompressionBuffer);
295  #ifndef HAVE_SNDFILE  #if USE_DISK_STREAMING
296        if (pWave) delete[] pWave;
297    #else
298        if (pIntWave) delete[] pIntWave;
299    #endif
300    #if !HAVE_SNDFILE // use libaudiofile
301      closeAFlib();      closeAFlib();
302  #endif // !HAVE_SNDFILE  #endif // !HAVE_SNDFILE
303  }  }
# Line 266  int writeWav(const char* filename, void* Line 310  int writeWav(const char* filename, void*
310      switch (bitdepth) {      switch (bitdepth) {
311          case 8:          case 8:
312              format |= SF_FORMAT_PCM_S8;              format |= SF_FORMAT_PCM_S8;
             cout << "8 bit" << endl << flush;  
313              break;              break;
314          case 16:          case 16:
315              format |= SF_FORMAT_PCM_16;              format |= SF_FORMAT_PCM_16;
             cout << "16 bit" << endl << flush;  
316              break;              break;
317          case 24:          case 24:
318              format |= SF_FORMAT_PCM_24;              format |= SF_FORMAT_PCM_24;
             cout << "24 bit" << endl << flush;  
319              break;              break;
320          case 32:          case 32:
321              format |= SF_FORMAT_PCM_32;              format |= SF_FORMAT_PCM_32;
             cout << "32 bit" << endl << flush;  
322              break;              break;
323          default:          default:
324              cerr << "Error: Bithdepth " << ToString(bitdepth) << " not supported by libsndfile, ignoring sample!\n" << flush;              cerr << "Error: Bithdepth " << ToString(bitdepth) << " not supported by libsndfile, ignoring sample!\n" << flush;
# Line 293  int writeWav(const char* filename, void* Line 333  int writeWav(const char* filename, void*
333          cerr << "Error: Unable to open output file \'" << filename << "\'.\n" << flush;          cerr << "Error: Unable to open output file \'" << filename << "\'.\n" << flush;
334          return -1;          return -1;
335      }      }
336      if (sf_write_short(hfile, (short*)samples, channels * samplecount) != channels * samplecount) {      sf_count_t res = bitdepth == 24 ?
337            sf_write_int(hfile, static_cast<int*>(samples), channels * samplecount) :
338            sf_write_short(hfile, static_cast<short*>(samples), channels * samplecount);
339        if (res != channels * samplecount) {
340          cerr << sf_strerror(hfile) << endl << flush;          cerr << sf_strerror(hfile) << endl << flush;
341          sf_close(hfile);          sf_close(hfile);
342          return -1;          return -1;
343      }      }
344      sf_close(hfile);      sf_close(hfile);
345  #else  #else // use libaudiofile
346      AFfilesetup setup = _afNewFileSetup();      AFfilesetup setup = _afNewFileSetup();
347      _afInitFileFormat(setup, AF_FILE_WAVE);      _afInitFileFormat(setup, AF_FILE_WAVE);
348      _afInitChannels(setup, AF_DEFAULT_TRACK, channels);      _afInitChannels(setup, AF_DEFAULT_TRACK, channels);
# Line 316  int writeWav(const char* filename, void* Line 359  int writeWav(const char* filename, void*
359      return 0; // success      return 0; // success
360  }  }
361    
362  #ifndef HAVE_SNDFILE  #if !HAVE_SNDFILE // use libaudiofile
363  void openAFlib() {  void openAFlib() {
364      hAFlib = dlopen("libaudiofile.so", RTLD_NOW);      hAFlib = dlopen("libaudiofile.so", RTLD_NOW);
365      if (!hAFlib) {      if (!hAFlib) {
# Line 341  void closeAFlib() { Line 384  void closeAFlib() {
384  #endif // !HAVE_SNDFILE  #endif // !HAVE_SNDFILE
385    
386  string Revision() {  string Revision() {
387      string s = "$Revision: 1.6 $";      string s = "$Revision: 1.10 $";
388      return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword      return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
389  }  }
390    
# Line 352  void PrintVersion() { Line 395  void PrintVersion() {
395      char versionBuffer[128];      char versionBuffer[128];
396      sf_command(NULL, SFC_GET_LIB_VERSION, versionBuffer, 128);      sf_command(NULL, SFC_GET_LIB_VERSION, versionBuffer, 128);
397      cout << ", " << versionBuffer;      cout << ", " << versionBuffer;
398      #endif // HAVE_SNDFILE      #else // use libaudiofile
399      cout << endl;      cout << "\nbuilt against libaudiofile "
400      #if !HAVE_SNDFILE           << LIBAUDIOFILE_MAJOR_VERSION << "." << LIBAUDIOFILE_MINOR_VERSION;
     cout << "built against libaudiofile "  
          << LIBAUDIOFILE_MAJOR_VERSION << "." << LIBAUDIOFILE_MINOR_VERSION  
401      # ifdef LIBAUDIOFILE_MICRO_VERSION      # ifdef LIBAUDIOFILE_MICRO_VERSION
402           << "." << LIBAUDIOFILE_MICRO_VERSION      cout << "." << LIBAUDIOFILE_MICRO_VERSION;
403      # endif // LIBAUDIOFILE_MICRO_VERSION      # endif // LIBAUDIOFILE_MICRO_VERSION
404           << endl;      #endif // HAVE_SNDFILE
405      #endif // !HAVE_SNDFILE      cout << endl;
406  }  }
407    
408  void PrintUsage() {  void PrintUsage() {

Legend:
Removed from v.549  
changed lines
  Added in v.1063

  ViewVC Help
Powered by ViewVC