/[svn]/libgig/trunk/src/gig.cpp
ViewVC logotype

Diff of /libgig/trunk/src/gig.cpp

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

revision 350 by schoenebeck, Tue Jan 25 21:54:24 2005 UTC revision 516 by schoenebeck, Sat May 7 21:24:04 2005 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file loader library    *   *   libgig - C++ cross-platform Gigasampler format file loader library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Christian Schoenebeck                     *   *   Copyright (C) 2003-2005 by Christian Schoenebeck                      *
6   *                               <cuse@users.sourceforge.net>              *   *                              <cuse@users.sourceforge.net>               *
7   *                                                                         *   *                                                                         *
8   *   This library is free software; you can redistribute it and/or modify  *   *   This library is free software; you can redistribute it and/or modify  *
9   *   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  *
# Line 23  Line 23 
23    
24  #include "gig.h"  #include "gig.h"
25    
26    #include <iostream>
27    
28  namespace gig {  namespace gig {
29    
30    // *************** progress_t ***************
31    // *
32    
33        progress_t::progress_t() {
34            callback    = NULL;
35            custom      = NULL;
36            __range_min = 0.0f;
37            __range_max = 1.0f;
38        }
39    
40        // private helper function to convert progress of a subprocess into the global progress
41        static void __notify_progress(progress_t* pProgress, float subprogress) {
42            if (pProgress && pProgress->callback) {
43                const float totalrange    = pProgress->__range_max - pProgress->__range_min;
44                const float totalprogress = pProgress->__range_min + subprogress * totalrange;
45                pProgress->factor         = totalprogress;
46                pProgress->callback(pProgress); // now actually notify about the progress
47            }
48        }
49    
50        // private helper function to divide a progress into subprogresses
51        static void __divide_progress(progress_t* pParentProgress, progress_t* pSubProgress, float totalTasks, float currentTask) {
52            if (pParentProgress && pParentProgress->callback) {
53                const float totalrange    = pParentProgress->__range_max - pParentProgress->__range_min;
54                pSubProgress->callback    = pParentProgress->callback;
55                pSubProgress->custom      = pParentProgress->custom;
56                pSubProgress->__range_min = pParentProgress->__range_min + totalrange * currentTask / totalTasks;
57                pSubProgress->__range_max = pSubProgress->__range_min + totalrange / totalTasks;
58            }
59        }
60    
61    
62    // *************** Internal functions for sample decopmression ***************
63    // *
64    
65    namespace {
66    
67        inline int get12lo(const unsigned char* pSrc)
68        {
69            const int x = pSrc[0] | (pSrc[1] & 0x0f) << 8;
70            return x & 0x800 ? x - 0x1000 : x;
71        }
72    
73        inline int get12hi(const unsigned char* pSrc)
74        {
75            const int x = pSrc[1] >> 4 | pSrc[2] << 4;
76            return x & 0x800 ? x - 0x1000 : x;
77        }
78    
79        inline int16_t get16(const unsigned char* pSrc)
80        {
81            return int16_t(pSrc[0] | pSrc[1] << 8);
82        }
83    
84        inline int get24(const unsigned char* pSrc)
85        {
86            const int x = pSrc[0] | pSrc[1] << 8 | pSrc[2] << 16;
87            return x & 0x800000 ? x - 0x1000000 : x;
88        }
89    
90        void Decompress16(int compressionmode, const unsigned char* params,
91                          int srcStep, int dstStep,
92                          const unsigned char* pSrc, int16_t* pDst,
93                          unsigned long currentframeoffset,
94                          unsigned long copysamples)
95        {
96            switch (compressionmode) {
97                case 0: // 16 bit uncompressed
98                    pSrc += currentframeoffset * srcStep;
99                    while (copysamples) {
100                        *pDst = get16(pSrc);
101                        pDst += dstStep;
102                        pSrc += srcStep;
103                        copysamples--;
104                    }
105                    break;
106    
107                case 1: // 16 bit compressed to 8 bit
108                    int y  = get16(params);
109                    int dy = get16(params + 2);
110                    while (currentframeoffset) {
111                        dy -= int8_t(*pSrc);
112                        y  -= dy;
113                        pSrc += srcStep;
114                        currentframeoffset--;
115                    }
116                    while (copysamples) {
117                        dy -= int8_t(*pSrc);
118                        y  -= dy;
119                        *pDst = y;
120                        pDst += dstStep;
121                        pSrc += srcStep;
122                        copysamples--;
123                    }
124                    break;
125            }
126        }
127    
128        void Decompress24(int compressionmode, const unsigned char* params,
129                          int dstStep, const unsigned char* pSrc, int16_t* pDst,
130                          unsigned long currentframeoffset,
131                          unsigned long copysamples, int truncatedBits)
132        {
133            // Note: The 24 bits are truncated to 16 bits for now.
134    
135            // Note: The calculation of the initial value of y is strange
136            // and not 100% correct. What should the first two parameters
137            // really be used for? Why are they two? The correct value for
138            // y seems to lie somewhere between the values of the first
139            // two parameters.
140            //
141            // Strange thing #2: The formula in SKIP_ONE gives values for
142            // y that are twice as high as they should be. That's why
143            // COPY_ONE shifts an extra step, and also why y is
144            // initialized with a sum instead of a mean value.
145    
146            int y, dy, ddy;
147    
148            const int shift = 8 - truncatedBits;
149            const int shift1 = shift + 1;
150    
151    #define GET_PARAMS(params)                              \
152            y = (get24(params) + get24((params) + 3));      \
153            dy  = get24((params) + 6);                      \
154            ddy = get24((params) + 9)
155    
156    #define SKIP_ONE(x)                             \
157            ddy -= (x);                             \
158            dy -= ddy;                              \
159            y -= dy
160    
161    #define COPY_ONE(x)                             \
162            SKIP_ONE(x);                            \
163            *pDst = y >> shift1;                    \
164            pDst += dstStep
165    
166            switch (compressionmode) {
167                case 2: // 24 bit uncompressed
168                    pSrc += currentframeoffset * 3;
169                    while (copysamples) {
170                        *pDst = get24(pSrc) >> shift;
171                        pDst += dstStep;
172                        pSrc += 3;
173                        copysamples--;
174                    }
175                    break;
176    
177                case 3: // 24 bit compressed to 16 bit
178                    GET_PARAMS(params);
179                    while (currentframeoffset) {
180                        SKIP_ONE(get16(pSrc));
181                        pSrc += 2;
182                        currentframeoffset--;
183                    }
184                    while (copysamples) {
185                        COPY_ONE(get16(pSrc));
186                        pSrc += 2;
187                        copysamples--;
188                    }
189                    break;
190    
191                case 4: // 24 bit compressed to 12 bit
192                    GET_PARAMS(params);
193                    while (currentframeoffset > 1) {
194                        SKIP_ONE(get12lo(pSrc));
195                        SKIP_ONE(get12hi(pSrc));
196                        pSrc += 3;
197                        currentframeoffset -= 2;
198                    }
199                    if (currentframeoffset) {
200                        SKIP_ONE(get12lo(pSrc));
201                        currentframeoffset--;
202                        if (copysamples) {
203                            COPY_ONE(get12hi(pSrc));
204                            pSrc += 3;
205                            copysamples--;
206                        }
207                    }
208                    while (copysamples > 1) {
209                        COPY_ONE(get12lo(pSrc));
210                        COPY_ONE(get12hi(pSrc));
211                        pSrc += 3;
212                        copysamples -= 2;
213                    }
214                    if (copysamples) {
215                        COPY_ONE(get12lo(pSrc));
216                    }
217                    break;
218    
219                case 5: // 24 bit compressed to 8 bit
220                    GET_PARAMS(params);
221                    while (currentframeoffset) {
222                        SKIP_ONE(int8_t(*pSrc++));
223                        currentframeoffset--;
224                    }
225                    while (copysamples) {
226                        COPY_ONE(int8_t(*pSrc++));
227                        copysamples--;
228                    }
229                    break;
230            }
231        }
232    
233        const int bytesPerFrame[] =      { 4096, 2052, 768, 524, 396, 268 };
234        const int bytesPerFrameNoHdr[] = { 4096, 2048, 768, 512, 384, 256 };
235        const int headerSize[] =         { 0, 4, 0, 12, 12, 12 };
236        const int bitsPerSample[] =      { 16, 8, 24, 16, 12, 8 };
237    }
238    
239    
240  // *************** Sample ***************  // *************** Sample ***************
241  // *  // *
242    
243      unsigned int  Sample::Instances               = 0;      unsigned int Sample::Instances = 0;
244      void*         Sample::pDecompressionBuffer    = NULL;      buffer_t     Sample::InternalDecompressionBuffer;
     unsigned long Sample::DecompressionBufferSize = 0;  
245    
246      Sample::Sample(File* pFile, RIFF::List* waveList, unsigned long WavePoolOffset) : DLS::Sample((DLS::File*) pFile, waveList, WavePoolOffset) {      Sample::Sample(File* pFile, RIFF::List* waveList, unsigned long WavePoolOffset) : DLS::Sample((DLS::File*) pFile, waveList, WavePoolOffset) {
247          Instances++;          Instances++;
# Line 49  namespace gig { Line 260  namespace gig {
260          smpl->Read(&SMPTEFormat, 1, 4);          smpl->Read(&SMPTEFormat, 1, 4);
261          SMPTEOffset       = smpl->ReadInt32();          SMPTEOffset       = smpl->ReadInt32();
262          Loops             = smpl->ReadInt32();          Loops             = smpl->ReadInt32();
263          uint32_t manufByt = smpl->ReadInt32();          smpl->ReadInt32(); // manufByt
264          LoopID            = smpl->ReadInt32();          LoopID            = smpl->ReadInt32();
265          smpl->Read(&LoopType, 1, 4);          smpl->Read(&LoopType, 1, 4);
266          LoopStart         = smpl->ReadInt32();          LoopStart         = smpl->ReadInt32();
# Line 63  namespace gig { Line 274  namespace gig {
274          RAMCache.pStart            = NULL;          RAMCache.pStart            = NULL;
275          RAMCache.NullExtensionSize = 0;          RAMCache.NullExtensionSize = 0;
276    
277          Compressed = (waveList->GetSubChunk(CHUNK_ID_EWAV));          if (BitDepth > 24) throw gig::Exception("Only samples up to 24 bit supported");
278    
279            RIFF::Chunk* ewav = waveList->GetSubChunk(CHUNK_ID_EWAV);
280            Compressed        = ewav;
281            Dithered          = false;
282            TruncatedBits     = 0;
283          if (Compressed) {          if (Compressed) {
284                uint32_t version = ewav->ReadInt32();
285                if (version == 3 && BitDepth == 24) {
286                    Dithered = ewav->ReadInt32();
287                    ewav->SetPos(Channels == 2 ? 84 : 64);
288                    TruncatedBits = ewav->ReadInt32();
289                }
290              ScanCompressedSample();              ScanCompressedSample();
291          }          }
292    
         if (BitDepth > 24)                throw gig::Exception("Only samples up to 24 bit supported");  
         if (Compressed && Channels == 1)  throw gig::Exception("Mono compressed samples not yet supported");  
         if (Compressed && BitDepth == 24) throw gig::Exception("24 bit compressed samples not yet supported");  
   
293          // we use a buffer for decompression and for truncating 24 bit samples to 16 bit          // we use a buffer for decompression and for truncating 24 bit samples to 16 bit
294          if ((Compressed || BitDepth == 24) && !pDecompressionBuffer) {          if ((Compressed || BitDepth == 24) && !InternalDecompressionBuffer.Size) {
295              pDecompressionBuffer    = new int8_t[INITIAL_SAMPLE_BUFFER_SIZE];              InternalDecompressionBuffer.pStart = new unsigned char[INITIAL_SAMPLE_BUFFER_SIZE];
296              DecompressionBufferSize = INITIAL_SAMPLE_BUFFER_SIZE;              InternalDecompressionBuffer.Size   = INITIAL_SAMPLE_BUFFER_SIZE;
297          }          }
298          FrameOffset = 0; // just for streaming compressed samples          FrameOffset = 0; // just for streaming compressed samples
299    
300          LoopSize = LoopEnd - LoopStart;          LoopSize = LoopEnd - LoopStart;
301      }      }
# Line 88  namespace gig { Line 306  namespace gig {
306          this->SamplesTotal = 0;          this->SamplesTotal = 0;
307          std::list<unsigned long> frameOffsets;          std::list<unsigned long> frameOffsets;
308    
309            SamplesPerFrame = BitDepth == 24 ? 256 : 2048;
310            WorstCaseFrameSize = SamplesPerFrame * FrameSize + Channels; // +Channels for compression flag
311    
312          // Scanning          // Scanning
313          pCkData->SetPos(0);          pCkData->SetPos(0);
314          while (pCkData->GetState() == RIFF::stream_ready) {          if (Channels == 2) { // Stereo
315              frameOffsets.push_back(pCkData->GetPos());              for (int i = 0 ; ; i++) {
316              int16_t compressionmode = pCkData->ReadInt16();                  // for 24 bit samples every 8:th frame offset is
317              this->SamplesTotal += 2048;                  // stored, to save some memory
318              switch (compressionmode) {                  if (BitDepth != 24 || (i & 7) == 0) frameOffsets.push_back(pCkData->GetPos());
319                  case 1:   // left channel compressed  
320                  case 256: // right channel compressed                  const int mode_l = pCkData->ReadUint8();
321                      pCkData->SetPos(6148, RIFF::stream_curpos);                  const int mode_r = pCkData->ReadUint8();
322                    if (mode_l > 5 || mode_r > 5) throw gig::Exception("Unknown compression mode");
323                    const unsigned long frameSize = bytesPerFrame[mode_l] + bytesPerFrame[mode_r];
324    
325                    if (pCkData->RemainingBytes() <= frameSize) {
326                        SamplesInLastFrame =
327                            ((pCkData->RemainingBytes() - headerSize[mode_l] - headerSize[mode_r]) << 3) /
328                            (bitsPerSample[mode_l] + bitsPerSample[mode_r]);
329                        SamplesTotal += SamplesInLastFrame;
330                      break;                      break;
331                  case 257: // both channels compressed                  }
332                      pCkData->SetPos(4104, RIFF::stream_curpos);                  SamplesTotal += SamplesPerFrame;
333                    pCkData->SetPos(frameSize, RIFF::stream_curpos);
334                }
335            }
336            else { // Mono
337                for (int i = 0 ; ; i++) {
338                    if (BitDepth != 24 || (i & 7) == 0) frameOffsets.push_back(pCkData->GetPos());
339    
340                    const int mode = pCkData->ReadUint8();
341                    if (mode > 5) throw gig::Exception("Unknown compression mode");
342                    const unsigned long frameSize = bytesPerFrame[mode];
343    
344                    if (pCkData->RemainingBytes() <= frameSize) {
345                        SamplesInLastFrame =
346                            ((pCkData->RemainingBytes() - headerSize[mode]) << 3) / bitsPerSample[mode];
347                        SamplesTotal += SamplesInLastFrame;
348                      break;                      break;
349                  default: // both channels uncompressed                  }
350                      pCkData->SetPos(8192, RIFF::stream_curpos);                  SamplesTotal += SamplesPerFrame;
351                    pCkData->SetPos(frameSize, RIFF::stream_curpos);
352              }              }
353          }          }
354          pCkData->SetPos(0);          pCkData->SetPos(0);
355    
         //FIXME: only seen compressed samples with 16 bit stereo so far  
         this->FrameSize = 4;  
         this->BitDepth  = 16;  
   
356          // Build the frames table (which is used for fast resolving of a frame's chunk offset)          // Build the frames table (which is used for fast resolving of a frame's chunk offset)
357          if (FrameTable) delete[] FrameTable;          if (FrameTable) delete[] FrameTable;
358          FrameTable = new unsigned long[frameOffsets.size()];          FrameTable = new unsigned long[frameOffsets.size()];
# Line 147  namespace gig { Line 388  namespace gig {
388       * that will be returned to determine the actual cached samples, but note       * that will be returned to determine the actual cached samples, but note
389       * that the size is given in bytes! You get the number of actually cached       * that the size is given in bytes! You get the number of actually cached
390       * samples by dividing it by the frame size of the sample:       * samples by dividing it by the frame size of the sample:
391       *       * @code
392       *  buffer_t buf       = pSample->LoadSampleData(acquired_samples);       *  buffer_t buf       = pSample->LoadSampleData(acquired_samples);
393       *  long cachedsamples = buf.Size / pSample->FrameSize;       *  long cachedsamples = buf.Size / pSample->FrameSize;
394         * @endcode
395       *       *
396       * @param SampleCount - number of sample points to load into RAM       * @param SampleCount - number of sample points to load into RAM
397       * @returns             buffer_t structure with start address and size of       * @returns             buffer_t structure with start address and size of
# Line 195  namespace gig { Line 437  namespace gig {
437       * that will be returned to determine the actual cached samples, but note       * that will be returned to determine the actual cached samples, but note
438       * that the size is given in bytes! You get the number of actually cached       * that the size is given in bytes! You get the number of actually cached
439       * samples by dividing it by the frame size of the sample:       * samples by dividing it by the frame size of the sample:
440       *       * @code
441       *  buffer_t buf       = pSample->LoadSampleDataWithNullSamplesExtension(acquired_samples, null_samples);       *  buffer_t buf       = pSample->LoadSampleDataWithNullSamplesExtension(acquired_samples, null_samples);
442       *  long cachedsamples = buf.Size / pSample->FrameSize;       *  long cachedsamples = buf.Size / pSample->FrameSize;
443       *       * @endcode
444       * The method will add \a NullSamplesCount silence samples past the       * The method will add \a NullSamplesCount silence samples past the
445       * official buffer end (this won't affect the 'Size' member of the       * official buffer end (this won't affect the 'Size' member of the
446       * buffer_t structure, that means 'Size' always reflects the size of the       * buffer_t structure, that means 'Size' always reflects the size of the
# Line 329  namespace gig { Line 571  namespace gig {
571       * for the next time you call this method is stored in \a pPlaybackState.       * for the next time you call this method is stored in \a pPlaybackState.
572       * You have to allocate and initialize the playback_state_t structure by       * You have to allocate and initialize the playback_state_t structure by
573       * yourself before you use it to stream a sample:       * yourself before you use it to stream a sample:
574       *       * @code
575       * <i>       * gig::playback_state_t playbackstate;
576       * gig::playback_state_t playbackstate;                           <br>       * playbackstate.position         = 0;
577       * playbackstate.position         = 0;                            <br>       * playbackstate.reverse          = false;
578       * playbackstate.reverse          = false;                        <br>       * playbackstate.loop_cycles_left = pSample->LoopPlayCount;
579       * playbackstate.loop_cycles_left = pSample->LoopPlayCount;       <br>       * @endcode
      * </i>  
      *  
580       * You don't have to take care of things like if there is actually a loop       * You don't have to take care of things like if there is actually a loop
581       * defined or if the current read position is located within a loop area.       * defined or if the current read position is located within a loop area.
582       * The method already handles such cases by itself.       * The method already handles such cases by itself.
583       *       *
584         * <b>Caution:</b> If you are using more than one streaming thread, you
585         * have to use an external decompression buffer for <b>EACH</b>
586         * streaming thread to avoid race conditions and crashes!
587         *
588       * @param pBuffer          destination buffer       * @param pBuffer          destination buffer
589       * @param SampleCount      number of sample points to read       * @param SampleCount      number of sample points to read
590       * @param pPlaybackState   will be used to store and reload the playback       * @param pPlaybackState   will be used to store and reload the playback
591       *                         state for the next ReadAndLoop() call       *                         state for the next ReadAndLoop() call
592         * @param pExternalDecompressionBuffer  (optional) external buffer to use for decompression
593       * @returns                number of successfully read sample points       * @returns                number of successfully read sample points
594         * @see                    CreateDecompressionBuffer()
595       */       */
596      unsigned long Sample::ReadAndLoop(void* pBuffer, unsigned long SampleCount, playback_state_t* pPlaybackState) {      unsigned long Sample::ReadAndLoop(void* pBuffer, unsigned long SampleCount, playback_state_t* pPlaybackState, buffer_t* pExternalDecompressionBuffer) {
597          unsigned long samplestoread = SampleCount, totalreadsamples = 0, readsamples, samplestoloopend;          unsigned long samplestoread = SampleCount, totalreadsamples = 0, readsamples, samplestoloopend;
598          uint8_t* pDst = (uint8_t*) pBuffer;          uint8_t* pDst = (uint8_t*) pBuffer;
599    
# Line 365  namespace gig { Line 611  namespace gig {
611                          if (!pPlaybackState->reverse) { // forward playback                          if (!pPlaybackState->reverse) { // forward playback
612                              do {                              do {
613                                  samplestoloopend  = this->LoopEnd - GetPos();                                  samplestoloopend  = this->LoopEnd - GetPos();
614                                  readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend));                                  readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);
615                                  samplestoread    -= readsamples;                                  samplestoread    -= readsamples;
616                                  totalreadsamples += readsamples;                                  totalreadsamples += readsamples;
617                                  if (readsamples == samplestoloopend) {                                  if (readsamples == samplestoloopend) {
# Line 391  namespace gig { Line 637  namespace gig {
637    
638                              // read samples for backward playback                              // read samples for backward playback
639                              do {                              do {
640                                  readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], samplestoreadinloop);                                  readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], samplestoreadinloop, pExternalDecompressionBuffer);
641                                  samplestoreadinloop -= readsamples;                                  samplestoreadinloop -= readsamples;
642                                  samplestoread       -= readsamples;                                  samplestoread       -= readsamples;
643                                  totalreadsamples    += readsamples;                                  totalreadsamples    += readsamples;
# Line 415  namespace gig { Line 661  namespace gig {
661                      // forward playback (not entered the loop yet)                      // forward playback (not entered the loop yet)
662                      if (!pPlaybackState->reverse) do {                      if (!pPlaybackState->reverse) do {
663                          samplestoloopend  = this->LoopEnd - GetPos();                          samplestoloopend  = this->LoopEnd - GetPos();
664                          readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend));                          readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);
665                          samplestoread    -= readsamples;                          samplestoread    -= readsamples;
666                          totalreadsamples += readsamples;                          totalreadsamples += readsamples;
667                          if (readsamples == samplestoloopend) {                          if (readsamples == samplestoloopend) {
# Line 445  namespace gig { Line 691  namespace gig {
691                          // if not endless loop check if max. number of loop cycles have been passed                          // if not endless loop check if max. number of loop cycles have been passed
692                          if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;                          if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;
693                          samplestoloopend     = this->LoopEnd - GetPos();                          samplestoloopend     = this->LoopEnd - GetPos();
694                          readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoreadinloop, samplestoloopend));                          readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoreadinloop, samplestoloopend), pExternalDecompressionBuffer);
695                          samplestoreadinloop -= readsamples;                          samplestoreadinloop -= readsamples;
696                          samplestoread       -= readsamples;                          samplestoread       -= readsamples;
697                          totalreadsamples    += readsamples;                          totalreadsamples    += readsamples;
# Line 467  namespace gig { Line 713  namespace gig {
713                          // if not endless loop check if max. number of loop cycles have been passed                          // if not endless loop check if max. number of loop cycles have been passed
714                          if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;                          if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;
715                          samplestoloopend  = this->LoopEnd - GetPos();                          samplestoloopend  = this->LoopEnd - GetPos();
716                          readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend));                          readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);
717                          samplestoread    -= readsamples;                          samplestoread    -= readsamples;
718                          totalreadsamples += readsamples;                          totalreadsamples += readsamples;
719                          if (readsamples == samplestoloopend) {                          if (readsamples == samplestoloopend) {
# Line 482  namespace gig { Line 728  namespace gig {
728    
729          // read on without looping          // read on without looping
730          if (samplestoread) do {          if (samplestoread) do {
731              readsamples = Read(&pDst[totalreadsamples * this->FrameSize], samplestoread);              readsamples = Read(&pDst[totalreadsamples * this->FrameSize], samplestoread, pExternalDecompressionBuffer);
732              samplestoread    -= readsamples;              samplestoread    -= readsamples;
733              totalreadsamples += readsamples;              totalreadsamples += readsamples;
734          } while (readsamples && samplestoread);          } while (readsamples && samplestoread);
# Line 501  namespace gig { Line 747  namespace gig {
747       * and <i>SetPos()</i> if you don't want to load the sample into RAM,       * and <i>SetPos()</i> if you don't want to load the sample into RAM,
748       * thus for disk streaming.       * thus for disk streaming.
749       *       *
750         * <b>Caution:</b> If you are using more than one streaming thread, you
751         * have to use an external decompression buffer for <b>EACH</b>
752         * streaming thread to avoid race conditions and crashes!
753         *
754       * @param pBuffer      destination buffer       * @param pBuffer      destination buffer
755       * @param SampleCount  number of sample points to read       * @param SampleCount  number of sample points to read
756         * @param pExternalDecompressionBuffer  (optional) external buffer to use for decompression
757       * @returns            number of successfully read sample points       * @returns            number of successfully read sample points
758       * @see                SetPos()       * @see                SetPos(), CreateDecompressionBuffer()
759       */       */
760      unsigned long Sample::Read(void* pBuffer, unsigned long SampleCount) {      unsigned long Sample::Read(void* pBuffer, unsigned long SampleCount, buffer_t* pExternalDecompressionBuffer) {
761          if (SampleCount == 0) return 0;          if (SampleCount == 0) return 0;
762          if (!Compressed) {          if (!Compressed) {
763              if (BitDepth == 24) {              if (BitDepth == 24) {
764                  // 24 bit sample. For now just truncate to 16 bit.                  // 24 bit sample. For now just truncate to 16 bit.
765                  int8_t* pSrc = (int8_t*)this->pDecompressionBuffer;                  unsigned char* pSrc = (unsigned char*) ((pExternalDecompressionBuffer) ? pExternalDecompressionBuffer->pStart : this->InternalDecompressionBuffer.pStart);
766                  int8_t* pDst = (int8_t*)pBuffer;                  int16_t* pDst = static_cast<int16_t*>(pBuffer);
767                  unsigned long n = pCkData->Read(pSrc, SampleCount, FrameSize);                  if (Channels == 2) { // Stereo
768                  for (int i = SampleCount * (FrameSize / 3) ; i > 0 ; i--) {                      unsigned long readBytes = pCkData->Read(pSrc, SampleCount * 6, 1);
769                      pSrc++;                      pSrc++;
770                      *pDst++ = *pSrc++;                      for (unsigned long i = readBytes ; i > 0 ; i -= 3) {
771                      *pDst++ = *pSrc++;                          *pDst++ = get16(pSrc);
772                            pSrc += 3;
773                        }
774                        return (pDst - static_cast<int16_t*>(pBuffer)) >> 1;
775                  }                  }
776                  return SampleCount;                  else { // Mono
777              } else {                      unsigned long readBytes = pCkData->Read(pSrc, SampleCount * 3, 1);
778                  return pCkData->Read(pBuffer, SampleCount, FrameSize); //FIXME: channel inversion due to endian correction?                      pSrc++;
779                        for (unsigned long i = readBytes ; i > 0 ; i -= 3) {
780                            *pDst++ = get16(pSrc);
781                            pSrc += 3;
782                        }
783                        return pDst - static_cast<int16_t*>(pBuffer);
784                    }
785                }
786                else { // 16 bit
787                    // (pCkData->Read does endian correction)
788                    return Channels == 2 ? pCkData->Read(pBuffer, SampleCount << 1, 2) >> 1
789                                         : pCkData->Read(pBuffer, SampleCount, 2);
790              }              }
791          }          }
792          else { //FIXME: no support for mono compressed samples yet, are there any?          else {
793              if (this->SamplePos >= this->SamplesTotal) return 0;              if (this->SamplePos >= this->SamplesTotal) return 0;
794              //TODO: efficiency: we simply assume here that all frames are compressed, maybe we should test for an average compression rate              //TODO: efficiency: maybe we should test for an average compression rate
795              // best case needed buffer size (all frames compressed)              unsigned long assumedsize      = GuessSize(SampleCount),
             unsigned long assumedsize      = (SampleCount << 1)  + // *2 (16 Bit, stereo, but assume all frames compressed)  
                                              (SampleCount >> 10) + // 10 bytes header per 2048 sample points  
                                              8194,                 // at least one worst case sample frame  
796                            remainingbytes   = 0,           // remaining bytes in the local buffer                            remainingbytes   = 0,           // remaining bytes in the local buffer
797                            remainingsamples = SampleCount,                            remainingsamples = SampleCount,
798                            copysamples;                            copysamples, skipsamples,
799              int currentframeoffset = this->FrameOffset;   // offset in current sample frame since last Read()                            currentframeoffset = this->FrameOffset;  // offset in current sample frame since last Read()
800              this->FrameOffset = 0;              this->FrameOffset = 0;
801    
802              if (assumedsize > this->DecompressionBufferSize) {              buffer_t* pDecompressionBuffer = (pExternalDecompressionBuffer) ? pExternalDecompressionBuffer : &InternalDecompressionBuffer;
803                  // local buffer reallocation - hope this won't happen  
804                  if (this->pDecompressionBuffer) delete[] (int8_t*) this->pDecompressionBuffer;              // if decompression buffer too small, then reduce amount of samples to read
805                  this->pDecompressionBuffer    = new int8_t[assumedsize << 1]; // double of current needed size              if (pDecompressionBuffer->Size < assumedsize) {
806                  this->DecompressionBufferSize = assumedsize;                  std::cerr << "gig::Read(): WARNING - decompression buffer size too small!" << std::endl;
807                    SampleCount      = WorstCaseMaxSamples(pDecompressionBuffer);
808                    remainingsamples = SampleCount;
809                    assumedsize      = GuessSize(SampleCount);
810              }              }
811    
812              int16_t  compressionmode, left, dleft, right, dright;              unsigned char* pSrc = (unsigned char*) pDecompressionBuffer->pStart;
813              int8_t*  pSrc = (int8_t*)  this->pDecompressionBuffer;              int16_t* pDst = static_cast<int16_t*>(pBuffer);
             int16_t* pDst = (int16_t*) pBuffer;  
814              remainingbytes = pCkData->Read(pSrc, assumedsize, 1);              remainingbytes = pCkData->Read(pSrc, assumedsize, 1);
815    
816              while (remainingsamples) {              while (remainingsamples && remainingbytes) {
817                    unsigned long framesamples = SamplesPerFrame;
818                  // reload from disk to local buffer if needed                  unsigned long framebytes, rightChannelOffset = 0, nextFrameOffset;
819                  if (remainingbytes < 8194) {  
820                      if (pCkData->GetState() != RIFF::stream_ready) {                  int mode_l = *pSrc++, mode_r = 0;
821                          this->SamplePos = this->SamplesTotal;  
822                          return (SampleCount - remainingsamples);                  if (Channels == 2) {
823                        mode_r = *pSrc++;
824                        framebytes = bytesPerFrame[mode_l] + bytesPerFrame[mode_r] + 2;
825                        rightChannelOffset = bytesPerFrameNoHdr[mode_l];
826                        nextFrameOffset = rightChannelOffset + bytesPerFrameNoHdr[mode_r];
827                        if (remainingbytes < framebytes) { // last frame in sample
828                            framesamples = SamplesInLastFrame;
829                            if (mode_l == 4 && (framesamples & 1)) {
830                                rightChannelOffset = ((framesamples + 1) * bitsPerSample[mode_l]) >> 3;
831                            }
832                            else {
833                                rightChannelOffset = (framesamples * bitsPerSample[mode_l]) >> 3;
834                            }
835                        }
836                    }
837                    else {
838                        framebytes = bytesPerFrame[mode_l] + 1;
839                        nextFrameOffset = bytesPerFrameNoHdr[mode_l];
840                        if (remainingbytes < framebytes) {
841                            framesamples = SamplesInLastFrame;
842                      }                      }
                     assumedsize    = remainingsamples;  
                     assumedsize    = (assumedsize << 1)  + // *2 (16 Bit, stereo, but assume all frames compressed)  
                                      (assumedsize >> 10) + // 10 bytes header per 2048 sample points  
                                      8194;                 // at least one worst case sample frame  
                     pCkData->SetPos(remainingbytes, RIFF::stream_backward);  
                     if (pCkData->RemainingBytes() < assumedsize) assumedsize = pCkData->RemainingBytes();  
                     remainingbytes = pCkData->Read(this->pDecompressionBuffer, assumedsize, 1);  
                     pSrc = (int8_t*) this->pDecompressionBuffer;  
843                  }                  }
844    
845                  // determine how many samples in this frame to skip and read                  // determine how many samples in this frame to skip and read
846                  if (remainingsamples >= 2048) {                  if (currentframeoffset + remainingsamples >= framesamples) {
847                      copysamples       = 2048 - currentframeoffset;                      if (currentframeoffset <= framesamples) {
848                      remainingsamples -= copysamples;                          copysamples = framesamples - currentframeoffset;
849                            skipsamples = currentframeoffset;
850                        }
851                        else {
852                            copysamples = 0;
853                            skipsamples = framesamples;
854                        }
855                  }                  }
856                  else {                  else {
857                        // This frame has enough data for pBuffer, but not
858                        // all of the frame is needed. Set file position
859                        // to start of this frame for next call to Read.
860                      copysamples = remainingsamples;                      copysamples = remainingsamples;
861                      if (currentframeoffset + copysamples > 2048) {                      skipsamples = currentframeoffset;
862                          copysamples = 2048 - currentframeoffset;                      pCkData->SetPos(remainingbytes, RIFF::stream_backward);
863                          remainingsamples -= copysamples;                      this->FrameOffset = currentframeoffset + copysamples;
864                      }                  }
865                      else {                  remainingsamples -= copysamples;
866    
867                    if (remainingbytes > framebytes) {
868                        remainingbytes -= framebytes;
869                        if (remainingsamples == 0 &&
870                            currentframeoffset + copysamples == framesamples) {
871                            // This frame has enough data for pBuffer, and
872                            // all of the frame is needed. Set file
873                            // position to start of next frame for next
874                            // call to Read. FrameOffset is 0.
875                          pCkData->SetPos(remainingbytes, RIFF::stream_backward);                          pCkData->SetPos(remainingbytes, RIFF::stream_backward);
                         remainingsamples = 0;  
                         this->FrameOffset = currentframeoffset + copysamples;  
876                      }                      }
877                  }                  }
878                    else remainingbytes = 0;
879    
880                  // decompress and copy current frame from local buffer to destination buffer                  currentframeoffset -= skipsamples;
881                  compressionmode = *(int16_t*)pSrc; pSrc+=2;  
882                  switch (compressionmode) {                  if (copysamples == 0) {
883                      case 1: // left channel compressed                      // skip this frame
884                          remainingbytes -= 6150; // (left 8 bit, right 16 bit, +6 byte header)                      pSrc += framebytes - Channels;
885                          if (!remainingsamples && copysamples == 2048)                  }
886                              pCkData->SetPos(remainingbytes, RIFF::stream_backward);                  else {
887                        const unsigned char* const param_l = pSrc;
888                          left  = *(int16_t*)pSrc; pSrc+=2;                      if (BitDepth == 24) {
889                          dleft = *(int16_t*)pSrc; pSrc+=2;                          if (mode_l != 2) pSrc += 12;
890                          while (currentframeoffset) {  
891                              dleft -= *pSrc;                          if (Channels == 2) { // Stereo
892                              left  -= dleft;                              const unsigned char* const param_r = pSrc;
893                              pSrc+=3; // 8 bit left channel, skip uncompressed right channel (16 bit)                              if (mode_r != 2) pSrc += 12;
894                              currentframeoffset--;  
895                          }                              Decompress24(mode_l, param_l, 2, pSrc, pDst,
896                          while (copysamples) {                                           skipsamples, copysamples, TruncatedBits);
897                              dleft -= *pSrc; pSrc++;                              Decompress24(mode_r, param_r, 2, pSrc + rightChannelOffset, pDst + 1,
898                              left  -= dleft;                                           skipsamples, copysamples, TruncatedBits);
899                              *pDst = left; pDst++;                              pDst += copysamples << 1;
                             *pDst = *(int16_t*)pSrc; pDst++; pSrc+=2;  
                             copysamples--;  
                         }  
                         break;  
                     case 256: // right channel compressed  
                         remainingbytes -= 6150; // (left 16 bit, right 8 bit, +6 byte header)  
                         if (!remainingsamples && copysamples == 2048)  
                             pCkData->SetPos(remainingbytes, RIFF::stream_backward);  
   
                         right  = *(int16_t*)pSrc; pSrc+=2;  
                         dright = *(int16_t*)pSrc; pSrc+=2;  
                         if (currentframeoffset) {  
                             pSrc+=2; // skip uncompressed left channel, now we can increment by 3  
                             while (currentframeoffset) {  
                                 dright -= *pSrc;  
                                 right  -= dright;  
                                 pSrc+=3; // 8 bit right channel, skip uncompressed left channel (16 bit)  
                                 currentframeoffset--;  
                             }  
                             pSrc-=2; // back aligned to left channel  
900                          }                          }
901                          while (copysamples) {                          else { // Mono
902                              *pDst = *(int16_t*)pSrc; pDst++; pSrc+=2;                              Decompress24(mode_l, param_l, 1, pSrc, pDst,
903                              dright -= *pSrc; pSrc++;                                           skipsamples, copysamples, TruncatedBits);
904                              right  -= dright;                              pDst += copysamples;
                             *pDst = right; pDst++;  
                             copysamples--;  
905                          }                          }
906                          break;                      }
907                      case 257: // both channels compressed                      else { // 16 bit
908                          remainingbytes -= 4106; // (left 8 bit, right 8 bit, +10 byte header)                          if (mode_l) pSrc += 4;
909                          if (!remainingsamples && copysamples == 2048)  
910                              pCkData->SetPos(remainingbytes, RIFF::stream_backward);                          int step;
911                            if (Channels == 2) { // Stereo
912                          left   = *(int16_t*)pSrc; pSrc+=2;                              const unsigned char* const param_r = pSrc;
913                          dleft  = *(int16_t*)pSrc; pSrc+=2;                              if (mode_r) pSrc += 4;
914                          right  = *(int16_t*)pSrc; pSrc+=2;  
915                          dright = *(int16_t*)pSrc; pSrc+=2;                              step = (2 - mode_l) + (2 - mode_r);
916                          while (currentframeoffset) {                              Decompress16(mode_l, param_l, step, 2, pSrc, pDst, skipsamples, copysamples);
917                              dleft  -= *pSrc; pSrc++;                              Decompress16(mode_r, param_r, step, 2, pSrc + (2 - mode_l), pDst + 1,
918                              left   -= dleft;                                           skipsamples, copysamples);
919                              dright -= *pSrc; pSrc++;                              pDst += copysamples << 1;
                             right  -= dright;  
                             currentframeoffset--;  
920                          }                          }
921                          while (copysamples) {                          else { // Mono
922                              dleft  -= *pSrc; pSrc++;                              step = 2 - mode_l;
923                              left   -= dleft;                              Decompress16(mode_l, param_l, step, 1, pSrc, pDst, skipsamples, copysamples);
924                              dright -= *pSrc; pSrc++;                              pDst += copysamples;
                             right  -= dright;  
                             *pDst = left;  pDst++;  
                             *pDst = right; pDst++;  
                             copysamples--;  
925                          }                          }
926                          break;                      }
927                      default: // both channels uncompressed                      pSrc += nextFrameOffset;
                         remainingbytes -= 8194; // (left 16 bit, right 16 bit, +2 byte header)  
                         if (!remainingsamples && copysamples == 2048)  
                             pCkData->SetPos(remainingbytes, RIFF::stream_backward);  
   
                         pSrc += currentframeoffset << 2;  
                         currentframeoffset = 0;  
                         memcpy(pDst, pSrc, copysamples << 2);  
                         pDst += copysamples << 1;  
                         pSrc += copysamples << 2;  
                         break;  
928                  }                  }
929              }  
930                    // reload from disk to local buffer if needed
931                    if (remainingsamples && remainingbytes < WorstCaseFrameSize && pCkData->GetState() == RIFF::stream_ready) {
932                        assumedsize    = GuessSize(remainingsamples);
933                        pCkData->SetPos(remainingbytes, RIFF::stream_backward);
934                        if (pCkData->RemainingBytes() < assumedsize) assumedsize = pCkData->RemainingBytes();
935                        remainingbytes = pCkData->Read(pDecompressionBuffer->pStart, assumedsize, 1);
936                        pSrc = (unsigned char*) pDecompressionBuffer->pStart;
937                    }
938                } // while
939    
940              this->SamplePos += (SampleCount - remainingsamples);              this->SamplePos += (SampleCount - remainingsamples);
941              if (this->SamplePos > this->SamplesTotal) this->SamplePos = this->SamplesTotal;              if (this->SamplePos > this->SamplesTotal) this->SamplePos = this->SamplesTotal;
942              return (SampleCount - remainingsamples);              return (SampleCount - remainingsamples);
943          }          }
944      }      }
945    
946        /**
947         * Allocates a decompression buffer for streaming (compressed) samples
948         * with Sample::Read(). If you are using more than one streaming thread
949         * in your application you <b>HAVE</b> to create a decompression buffer
950         * for <b>EACH</b> of your streaming threads and provide it with the
951         * Sample::Read() call in order to avoid race conditions and crashes.
952         *
953         * You should free the memory occupied by the allocated buffer(s) once
954         * you don't need one of your streaming threads anymore by calling
955         * DestroyDecompressionBuffer().
956         *
957         * @param MaxReadSize - the maximum size (in sample points) you ever
958         *                      expect to read with one Read() call
959         * @returns allocated decompression buffer
960         * @see DestroyDecompressionBuffer()
961         */
962        buffer_t Sample::CreateDecompressionBuffer(unsigned long MaxReadSize) {
963            buffer_t result;
964            const double worstCaseHeaderOverhead =
965                    (256.0 /*frame size*/ + 12.0 /*header*/ + 2.0 /*compression type flag (stereo)*/) / 256.0;
966            result.Size              = (unsigned long) (double(MaxReadSize) * 3.0 /*(24 Bit)*/ * 2.0 /*stereo*/ * worstCaseHeaderOverhead);
967            result.pStart            = new int8_t[result.Size];
968            result.NullExtensionSize = 0;
969            return result;
970        }
971    
972        /**
973         * Free decompression buffer, previously created with
974         * CreateDecompressionBuffer().
975         *
976         * @param DecompressionBuffer - previously allocated decompression
977         *                              buffer to free
978         */
979        void Sample::DestroyDecompressionBuffer(buffer_t& DecompressionBuffer) {
980            if (DecompressionBuffer.Size && DecompressionBuffer.pStart) {
981                delete[] (int8_t*) DecompressionBuffer.pStart;
982                DecompressionBuffer.pStart = NULL;
983                DecompressionBuffer.Size   = 0;
984                DecompressionBuffer.NullExtensionSize = 0;
985            }
986        }
987    
988      Sample::~Sample() {      Sample::~Sample() {
989          Instances--;          Instances--;
990          if (!Instances && pDecompressionBuffer) delete[] (int8_t*) pDecompressionBuffer;          if (!Instances && InternalDecompressionBuffer.Size) {
991                delete[] (unsigned char*) InternalDecompressionBuffer.pStart;
992                InternalDecompressionBuffer.pStart = NULL;
993                InternalDecompressionBuffer.Size   = 0;
994            }
995          if (FrameTable) delete[] FrameTable;          if (FrameTable) delete[] FrameTable;
996          if (RAMCache.pStart) delete[] (int8_t*) RAMCache.pStart;          if (RAMCache.pStart) delete[] (int8_t*) RAMCache.pStart;
997      }      }
# Line 863  namespace gig { Line 1173  namespace gig {
1173                                      VelocityResponseCurveScaling);                                      VelocityResponseCurveScaling);
1174              (*pVelocityTables)[tableKey] = pVelocityAttenuationTable; // put the new table into the tables map              (*pVelocityTables)[tableKey] = pVelocityAttenuationTable; // put the new table into the tables map
1175          }          }
1176    
1177            SampleAttenuation = pow(10.0, -Gain / (20.0 * 655360));
1178      }      }
1179    
1180      leverage_ctrl_t DimensionRegion::DecodeLeverageController(_lev_ctrl_t EncodedController) {      leverage_ctrl_t DimensionRegion::DecodeLeverageController(_lev_ctrl_t EncodedController) {
# Line 1114  namespace gig { Line 1426  namespace gig {
1426                      pDimensionDefinitions[i].zones     = 0x01 << bits; // = pow(2,bits)                      pDimensionDefinitions[i].zones     = 0x01 << bits; // = pow(2,bits)
1427                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||
1428                                                             dimension == dimension_samplechannel ||                                                             dimension == dimension_samplechannel ||
1429                                                             dimension == dimension_releasetrigger) ? split_type_bit                                                             dimension == dimension_releasetrigger ||
1430                                                                                                    : split_type_normal;                                                             dimension == dimension_roundrobin ||
1431                                                               dimension == dimension_random) ? split_type_bit
1432                                                                                              : split_type_normal;
1433                      pDimensionDefinitions[i].ranges = NULL; // it's not possible to check velocity dimensions for custom defined ranges at this point                      pDimensionDefinitions[i].ranges = NULL; // it's not possible to check velocity dimensions for custom defined ranges at this point
1434                      pDimensionDefinitions[i].zone_size  =                      pDimensionDefinitions[i].zone_size  =
1435                          (pDimensionDefinitions[i].split_type == split_type_normal) ? 128 / pDimensionDefinitions[i].zones                          (pDimensionDefinitions[i].split_type == split_type_normal) ? 128 / pDimensionDefinitions[i].zones
# Line 1271  namespace gig { Line 1585  namespace gig {
1585          else         return static_cast<gig::Sample*>(pSample = GetSampleFromWavePool(WavePoolTableIndex));          else         return static_cast<gig::Sample*>(pSample = GetSampleFromWavePool(WavePoolTableIndex));
1586      }      }
1587    
1588      Sample* Region::GetSampleFromWavePool(unsigned int WavePoolTableIndex) {      Sample* Region::GetSampleFromWavePool(unsigned int WavePoolTableIndex, progress_t* pProgress) {
1589            if ((int32_t)WavePoolTableIndex == -1) return NULL;
1590          File* file = (File*) GetParent()->GetParent();          File* file = (File*) GetParent()->GetParent();
1591          unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];          unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];
1592          Sample* sample = file->GetFirstSample();          Sample* sample = file->GetFirstSample(pProgress);
1593          while (sample) {          while (sample) {
1594              if (sample->ulWavePoolOffset == soughtoffset) return static_cast<gig::Sample*>(pSample = sample);              if (sample->ulWavePoolOffset == soughtoffset) return static_cast<gig::Sample*>(pSample = sample);
1595              sample = file->GetNextSample();              sample = file->GetNextSample();
# Line 1287  namespace gig { Line 1602  namespace gig {
1602  // *************** Instrument ***************  // *************** Instrument ***************
1603  // *  // *
1604    
1605      Instrument::Instrument(File* pFile, RIFF::List* insList) : DLS::Instrument((DLS::File*)pFile, insList) {      Instrument::Instrument(File* pFile, RIFF::List* insList, progress_t* pProgress) : DLS::Instrument((DLS::File*)pFile, insList) {
1606          // Initialization          // Initialization
1607          for (int i = 0; i < 128; i++) RegionKeyTable[i] = NULL;          for (int i = 0; i < 128; i++) RegionKeyTable[i] = NULL;
1608          RegionIndex = -1;          RegionIndex = -1;
# Line 1318  namespace gig { Line 1633  namespace gig {
1633          unsigned int iRegion = 0;          unsigned int iRegion = 0;
1634          while (rgn) {          while (rgn) {
1635              if (rgn->GetListType() == LIST_TYPE_RGN) {              if (rgn->GetListType() == LIST_TYPE_RGN) {
1636                    __notify_progress(pProgress, (float) iRegion / (float) Regions);
1637                  pRegions[iRegion] = new Region(this, rgn);                  pRegions[iRegion] = new Region(this, rgn);
1638                  iRegion++;                  iRegion++;
1639              }              }
# Line 1330  namespace gig { Line 1646  namespace gig {
1646                  RegionKeyTable[iKey] = pRegions[iReg];                  RegionKeyTable[iKey] = pRegions[iReg];
1647              }              }
1648          }          }
1649    
1650            __notify_progress(pProgress, 1.0f); // notify done
1651      }      }
1652    
1653      Instrument::~Instrument() {      Instrument::~Instrument() {
# Line 1380  namespace gig { Line 1698  namespace gig {
1698       * @see      GetFirstRegion()       * @see      GetFirstRegion()
1699       */       */
1700      Region* Instrument::GetNextRegion() {      Region* Instrument::GetNextRegion() {
1701          if (RegionIndex < 0 || RegionIndex >= Regions) return NULL;          if (RegionIndex < 0 || uint32_t(RegionIndex) >= Regions) return NULL;
1702          return pRegions[RegionIndex++];          return pRegions[RegionIndex++];
1703      }      }
1704    
# Line 1403  namespace gig { Line 1721  namespace gig {
1721                  SamplesIterator++;                  SamplesIterator++;
1722              }              }
1723              pSamples->clear();              pSamples->clear();
1724                delete pSamples;
1725    
1726          }          }
1727          // free instruments          // free instruments
# Line 1413  namespace gig { Line 1732  namespace gig {
1732                  InstrumentsIterator++;                  InstrumentsIterator++;
1733              }              }
1734              pInstruments->clear();              pInstruments->clear();
1735                delete pInstruments;
1736          }          }
1737      }      }
1738    
1739      Sample* File::GetFirstSample() {      Sample* File::GetFirstSample(progress_t* pProgress) {
1740          if (!pSamples) LoadSamples();          if (!pSamples) LoadSamples(pProgress);
1741          if (!pSamples) return NULL;          if (!pSamples) return NULL;
1742          SamplesIterator = pSamples->begin();          SamplesIterator = pSamples->begin();
1743          return static_cast<gig::Sample*>( (SamplesIterator != pSamples->end()) ? *SamplesIterator : NULL );          return static_cast<gig::Sample*>( (SamplesIterator != pSamples->end()) ? *SamplesIterator : NULL );
# Line 1429  namespace gig { Line 1749  namespace gig {
1749          return static_cast<gig::Sample*>( (SamplesIterator != pSamples->end()) ? *SamplesIterator : NULL );          return static_cast<gig::Sample*>( (SamplesIterator != pSamples->end()) ? *SamplesIterator : NULL );
1750      }      }
1751    
1752      void File::LoadSamples() {      void File::LoadSamples(progress_t* pProgress) {
1753          RIFF::List* wvpl = pRIFF->GetSubList(LIST_TYPE_WVPL);          RIFF::List* wvpl = pRIFF->GetSubList(LIST_TYPE_WVPL);
1754          if (wvpl) {          if (wvpl) {
1755                // just for progress calculation
1756                int iSampleIndex  = 0;
1757                int iTotalSamples = wvpl->CountSubLists(LIST_TYPE_WAVE);
1758    
1759              unsigned long wvplFileOffset = wvpl->GetFilePos();              unsigned long wvplFileOffset = wvpl->GetFilePos();
1760              RIFF::List* wave = wvpl->GetFirstSubList();              RIFF::List* wave = wvpl->GetFirstSubList();
1761              while (wave) {              while (wave) {
1762                  if (wave->GetListType() == LIST_TYPE_WAVE) {                  if (wave->GetListType() == LIST_TYPE_WAVE) {
1763                        // notify current progress
1764                        const float subprogress = (float) iSampleIndex / (float) iTotalSamples;
1765                        __notify_progress(pProgress, subprogress);
1766    
1767                      if (!pSamples) pSamples = new SampleList;                      if (!pSamples) pSamples = new SampleList;
1768                      unsigned long waveFileOffset = wave->GetFilePos();                      unsigned long waveFileOffset = wave->GetFilePos();
1769                      pSamples->push_back(new Sample(this, wave, waveFileOffset - wvplFileOffset));                      pSamples->push_back(new Sample(this, wave, waveFileOffset - wvplFileOffset));
1770    
1771                        iSampleIndex++;
1772                  }                  }
1773                  wave = wvpl->GetNextSubList();                  wave = wvpl->GetNextSubList();
1774              }              }
1775                __notify_progress(pProgress, 1.0); // notify done
1776          }          }
1777          else throw gig::Exception("Mandatory <wvpl> chunk not found.");          else throw gig::Exception("Mandatory <wvpl> chunk not found.");
1778      }      }
# Line 1462  namespace gig { Line 1793  namespace gig {
1793      /**      /**
1794       * Returns the instrument with the given index.       * Returns the instrument with the given index.
1795       *       *
1796         * @param index     - number of the sought instrument (0..n)
1797         * @param pProgress - optional: callback function for progress notification
1798       * @returns  sought instrument or NULL if there's no such instrument       * @returns  sought instrument or NULL if there's no such instrument
1799       */       */
1800      Instrument* File::GetInstrument(uint index) {      Instrument* File::GetInstrument(uint index, progress_t* pProgress) {
1801          if (!pInstruments) LoadInstruments();          if (!pInstruments) {
1802                // TODO: hack - we simply load ALL samples here, it would have been done in the Region constructor anyway (ATM)
1803    
1804                // sample loading subtask
1805                progress_t subprogress;
1806                __divide_progress(pProgress, &subprogress, 3.0f, 0.0f); // randomly schedule 33% for this subtask
1807                __notify_progress(&subprogress, 0.0f);
1808                GetFirstSample(&subprogress); // now force all samples to be loaded
1809                __notify_progress(&subprogress, 1.0f);
1810    
1811                // instrument loading subtask
1812                if (pProgress && pProgress->callback) {
1813                    subprogress.__range_min = subprogress.__range_max;
1814                    subprogress.__range_max = pProgress->__range_max; // schedule remaining percentage for this subtask
1815                }
1816                __notify_progress(&subprogress, 0.0f);
1817                LoadInstruments(&subprogress);
1818                __notify_progress(&subprogress, 1.0f);
1819            }
1820          if (!pInstruments) return NULL;          if (!pInstruments) return NULL;
1821          InstrumentsIterator = pInstruments->begin();          InstrumentsIterator = pInstruments->begin();
1822          for (uint i = 0; InstrumentsIterator != pInstruments->end(); i++) {          for (uint i = 0; InstrumentsIterator != pInstruments->end(); i++) {
# Line 1475  namespace gig { Line 1826  namespace gig {
1826          return NULL;          return NULL;
1827      }      }
1828    
1829      void File::LoadInstruments() {      void File::LoadInstruments(progress_t* pProgress) {
1830          RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);          RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);
1831          if (lstInstruments) {          if (lstInstruments) {
1832                int iInstrumentIndex = 0;
1833              RIFF::List* lstInstr = lstInstruments->GetFirstSubList();              RIFF::List* lstInstr = lstInstruments->GetFirstSubList();
1834              while (lstInstr) {              while (lstInstr) {
1835                  if (lstInstr->GetListType() == LIST_TYPE_INS) {                  if (lstInstr->GetListType() == LIST_TYPE_INS) {
1836                        // notify current progress
1837                        const float localProgress = (float) iInstrumentIndex / (float) Instruments;
1838                        __notify_progress(pProgress, localProgress);
1839    
1840                        // divide local progress into subprogress for loading current Instrument
1841                        progress_t subprogress;
1842                        __divide_progress(pProgress, &subprogress, Instruments, iInstrumentIndex);
1843    
1844                      if (!pInstruments) pInstruments = new InstrumentList;                      if (!pInstruments) pInstruments = new InstrumentList;
1845                      pInstruments->push_back(new Instrument(this, lstInstr));                      pInstruments->push_back(new Instrument(this, lstInstr, &subprogress));
1846    
1847                        iInstrumentIndex++;
1848                  }                  }
1849                  lstInstr = lstInstruments->GetNextSubList();                  lstInstr = lstInstruments->GetNextSubList();
1850              }              }
1851                __notify_progress(pProgress, 1.0); // notify done
1852          }          }
1853          else throw gig::Exception("Mandatory <lins> list chunk not found.");          else throw gig::Exception("Mandatory <lins> list chunk not found.");
1854      }      }

Legend:
Removed from v.350  
changed lines
  Added in v.516

  ViewVC Help
Powered by ViewVC