/[svn]/libgig/trunk/ChangeLog
ViewVC logotype

Annotation of /libgig/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2495 - (hide annotations) (download)
Wed Jan 1 23:14:59 2014 UTC (10 years, 3 months ago) by schoenebeck
File size: 20941 byte(s)
* Added man page for "sf2dump".
* Debian: updated package descriptions.

1 iliev 2016 Version CVS HEAD (?)
2 persson 2133 * general changes:
3     - minor Makefile fix for parallel make
4 persson 2182 - Mac OS X: link with CoreFoundation (for the UUID function)
5 persson 2334 - removed gcc 4.7 warnings
6 persson 2364 - modernized configure script
7 persson 2419 - removed usage of deprecated Automake variable INCLUDES
8 schoenebeck 2482 - added new command line tool "gigmerge"
9     - added "const" keyword to several methods
10 schoenebeck 2484 - added new command line tool "gig2mono"
11 schoenebeck 2495 - added man page for "sf2dump"
12 persson 2133
13 schoenebeck 2465 * SoundFont file format:
14 iliev 2016 - initial implementation
15 persson 2100 - changed region lookup API to avoid malloc in RT threads
16 persson 2202 - fixed GetEG1Sustain which didn't return correct value
17 persson 2381 - bugfix: GetPan always returned -1, 0 or 1
18 iliev 2016
19 persson 2152 * src/gig.cpp:
20     - bugfix: VCF velocity dynamic range and VCF velocity curve
21     weren't saved correctly
22 schoenebeck 2394 - implemented File::AddDuplicateInstrument()
23 persson 2402 - bugfix: negative EG3 depth values were not correctly parsed or
24     saved
25 persson 2450 - added write support for CtrlTrigger midi rule
26     - added read and write support for Legato and Alternator midi
27     rules
28 schoenebeck 2467 - bugfix: sample groups were sometimes created multiple times or with
29     wrong textual group name
30 schoenebeck 2482 - added new method File::AddContentOf() for merging .gig files
31 persson 2152
32 schoenebeck 2274 * src/DLS.cpp, src/DLS.h:
33     - added new method File::GetFileName()
34 persson 2310 - fixed minor "memory leak on exception" bug found with cppcheck
35 schoenebeck 2329 - added new method File::GetExtensionFile(int index)
36 schoenebeck 2482 - added new method File::SetFileName() allowing to call File::Save()
37     later on without passing a file name
38 schoenebeck 2274
39 persson 2120 * src/RIFF.cpp, src/RIFF.h:
40     - bugfix: avoid calling read() with count 0 when writing a file,
41     as this may hang on some systems
42 persson 2155 - fixed memory leak and memory handling errors when file loading
43     fails
44 persson 2450 - added new method Chunk::ReadString
45 schoenebeck 2482 - added new method File::SetFileName() allowing to call File::Save()
46     later on without passing a file name
47     - added new method File::IsNew()
48 persson 2120
49 schoenebeck 2465 * src/gigextract.cpp:
50     - export sample loop, unity note and fine tune with libsndfile
51    
52 schoenebeck 1953 Version 3.3.0 (30 Jul 2009)
53 persson 1627
54 persson 1713 * general changes:
55     - fixed compilation with gcc 4.3
56 persson 1869 - fixes for building with Visual C++
57 persson 1894 - minor fix in configure for building DLL on Windows
58 persson 1713
59 persson 1627 * src/gig.cpp, src/gig.h:
60     - added partial support for MIDI rules, only the Controller
61     Triggered rule is supported so far
62 persson 1678 - bugfix: removed another iterator invalidation in DeleteSample
63 schoenebeck 1851 - bugfix in Sample::LoadSampleData*(): reset sample read position to
64     sample start before trying to (re)load sample data from file (#82)
65 persson 1869 - bugfix: EG3 depth parameter was not saved correctly
66 schoenebeck 1875 - fixed crash which occured when streaming a gig sample with
67     bi-directional (a.k.a. 'pingpong') loop type (fixes #102)
68 persson 1627
69 persson 1678 * src/RIFF.cpp, src/RIFF.h:
70     - bugfix: saving to the same file after the file size had been
71     increased made the file corrupt (#82)
72 schoenebeck 1851 - bugfix: refuse Chunk::Read() in case chunk has just been added, that
73     is not written physically yet (#82)
74 persson 1859 - bugfix: saving to the same file after the file size had been
75     decreased sometimes also made the file corrupt!
76 schoenebeck 1863 - bugfix: undefined behavior (e.g. endless loop) when opening zero
77     length files, now throws a RIFF::Exception instead (fixes bug #121)
78 persson 1869 - bugfix: destructor for base class RIFF::Chunk accessed members
79     of derived class RIFF::File, which is bad, and caused crashes
80     when using Visual C++
81 persson 1885 - bugfix: files that contain zero length RIFF lists were not read
82     correctly (fixes #127) (bug was introduced 2009-03-13)
83 persson 1678
84 schoenebeck 1549 Version 3.2.1 (5 Dec 2007)
85 schoenebeck 1459
86     * src/RIFF.cpp, src/RIFF.h:
87     - avoid Windows to perform unnecessary file stream caching which would
88     decrease disk streaming performance on Windows systems otherwise
89    
90 schoenebeck 1524 * src/gig.cpp, src/gig.h:
91     - added File::SetAutoLoad() and File::GetAutoLoad() for allowing
92     applications to retrieve very superficial informations like amount of
93     instruments and their names in a very fast way
94    
95 schoenebeck 1416 Version 3.2.0 (14 Oct 2007)
96 schoenebeck 1154
97 schoenebeck 1172 * packaging changes:
98     - added Mac OSX XCode project files (patch by Toshi Nagata)
99 schoenebeck 1186 - Dev-C++ (win32) project file is automatically updated with
100     the version info from configure.in
101 persson 1330 - the configure script can now be used in Windows with MSYS
102 schoenebeck 1378 - added a mainpage for the Doxygen API documentation
103 schoenebeck 1172
104 schoenebeck 1154 * src/DLS.cpp, src/DLS.h:
105     - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods
106 persson 1179 - fixed write support for big-endian systems
107 persson 1180 - improved handling of fixed length info strings - separate default
108     lengths can be specified for each INFO chunk
109 persson 1209 - added Resource::GenerateDLSID function
110 persson 1266 - write support fix: allow regions without mapped samples
111 schoenebeck 1335 - added method SetKeyRange() to the Region class which should be used
112     instead of setting the KeyRange member variable directly
113     - MoveRegion() method of Region class is now private
114 schoenebeck 1358 - added SetGain() method to Sampler class
115 persson 1388 - fixed crash when saving a file after a sample loop was added
116 schoenebeck 1154
117 schoenebeck 1158 * src/gig.cpp, src/gig.h:
118     - fixed segmentation fault in the gig::File destructor sequence which
119     happened when gig::Group informations were accessed before
120 persson 1179 - fixed write support for big-endian systems
121 persson 1180 - defined lengths of a fixed set of info strings. These strings
122     are saved when the file is written, even if they are empty.
123 persson 1182 - added missing parameter initalizations in sample, region and
124     instrument constructors
125     - clear unused fields when saving samples and regions
126     - fixed write support bugs: v3 dimension limits and chunksize
127     weren't saved, leverage controller of type controlchange
128 persson 1195 couldn't be saved, group name list chunk was placed wrong,
129     dimension region chunks also placed wrong
130 persson 1182 - added initialization of some fixed info strings in file and
131     instrument
132 persson 1192 - write support: files created by libgig will now have the RIFF
133     chunks in correct order
134 persson 1199 - write support: two previously unknown fields in dimension
135     definition are now saved
136     - added constants for gig file versions
137     - write support: the 3crc and einf chunks are now created or
138     updated when a file is saved (3crc contains sample checksums,
139     einf contains file statistics)
140 persson 1209 - write support: DLSID is now generated on the file and the
141     instruments
142 persson 1218 - write support: improved the default values for dimension region
143     parameters
144 persson 1247 - more write support fixes: crossfade parameters were not saved,
145     v3 dimension limits were not correctly initialized and saved
146     when dimensions were added or deleted, v3 wave pool offsets were
147     not saved correctly
148 persson 1264 - write support: 24 bit samples can now be written
149     - write support: version 3 is now the default for new files
150 persson 1266 - more write support fixes: the 3ewg chunk is now bigger for v3,
151     dimension regions without mapped samples are now allowed, 3gnl
152     list in v3 files now always has 128 entries, several parameters
153     where incorrectly saved due to an operator precedence mistake
154     - DeleteSample now removes all references to the deleted sample
155 persson 1301 - AddDimension now copies all parameters from existing dimension
156     regions and also makes sure that the samplechannel dimension is
157     placed first in the list of dimensions.
158 schoenebeck 1316 - added method GetParent() to class 'DimensionRegion', which returns its
159     parent Region
160 schoenebeck 1335 - fixed Instrument::UpdateRegionKeyTable() method which did not reset
161     unused areas
162 schoenebeck 1358 - added various setter methods to DimensionRegion class which take care
163     of updating lookup tables / caches.
164 schoenebeck 1158
165 persson 1183 * src/RIFF.cpp, src/RIFF.h:
166 persson 1184 - added File::SetByteOrder method
167 persson 1301 - Windows fix: saving a new file didn't work
168 persson 1183
169 persson 1264 * src/gigdump.cpp:
170     - added some missing dimension strings
171    
172 schoenebeck 1116 Version 3.1.1 (24 Mar 2007)
173 schoenebeck 1050
174     * packaging changes:
175     - ported to Windows using native Windows functions for file IO
176     (provided Dev-C++ + mingw project file)
177 schoenebeck 1079 - only export relevant files to Doxygen API documentation
178 schoenebeck 1050
179 persson 1070 * src/gig.cpp, src/gig.h:
180     - custom velocity splits now works for gig v3 files too
181     - added support for custom splits points for other dimensions than
182     velocity (gig v3 feature)
183 persson 1076 - added "smart midi" and "round robin keyboard" dimensions
184 schoenebeck 1081 - added new method File::DeleteGroupOnly() which only deletes the given
185     group but moves all its members to another group, the other method,
186     that is File::DeleteGroup() now removes not just the group, but also
187     all the samples that belong to that group
188 schoenebeck 1083 - fixed crash which occured on interfering File::DeleteSample() and
189     File::GetNextSample() calls (due to iterator invalidation)
190 schoenebeck 1098 - fixed group names which were not saved
191 schoenebeck 1099 - fixed group destructor which did not remove the RIFF chunk associated
192     with the group
193 persson 1102 - added Instrument::MoveRegion method
194     - fixed constructor for Region, which did not initialize correctly
195     when used from Instrument::AddRegion
196 schoenebeck 1106 - when saving, override the gig::Regions sample reference simply by
197     the region's first dimension region's sample (avoids an exception
198     when trying to save a new instrument)
199 schoenebeck 1113 - fixed AddDimension() method which did not fill out all mandatory
200     dimension definition fields
201 persson 1070
202 persson 1102 * src/DLS.cpp, src/DLS.h:
203     - added Instrument::MoveRegion method
204 schoenebeck 1106 - fixed software info field which was wrongly stored on instruments,
205     causing an exception when trying to save a new instrument
206 persson 1102
207 schoenebeck 1095 * src/RIFF.cpp, src/RIFF.h:
208     - fixed RIFF::Chunk destructor which did not unregister previously
209     resized chunks, leading to a "zero size chunk" exception when
210     File::Save() was called
211 persson 1102 - added List::MoveSubChunk method
212 schoenebeck 1095
213 schoenebeck 933 Version 3.1.0 (24 Nov 2006)
214 persson 858
215 capela 867 * packaging changes:
216     - changed deprecated copyright attribute to license;
217     added ldconfig to post-(un)install steps on libgig.spec (RPM)
218 persson 902
219 persson 858 * src/gig.cpp, src/gig.h:
220     - added support for more than one set of custom velocity splits
221     inside a region (for example different velocity split levels for
222     pedal up and pedal down)
223 persson 864 - sample loop parameters are now taken from the DimensionRegion
224     instead of the wave chunk
225     - keyswitching dimension is changed from split type "normal" to
226     "bit"
227 persson 902 - real support for 24 bit samples - samples are not truncated to
228     16 bits anymore
229     - support for reading of ".art" files. (Merging of .art and .gig
230     files are not implemented yet.)
231 persson 918 - several fixes for the write support
232 schoenebeck 929 - support for sample groups added
233 persson 858
234 persson 918 * src/DLS.cpp, src/DLS.h:
235 persson 902 - support for reading of ".art" files
236 persson 918 - removed incorrect use of memccpy in the write support (patch by
237     Jeremy Kerr)
238     - several fixes for the write support
239 persson 902
240     * src/gigextract.cpp:
241     - real support for 24 bit samples
242    
243 schoenebeck 916 * src/gigdump.cpp:
244     - print global file informations
245 schoenebeck 929 - print sample groups
246 schoenebeck 916
247 schoenebeck 917 * general changes:
248     - added CPPUnit test cases (at the moment primarily for automatic check
249     of Gigasampler write support)
250    
251 schoenebeck 854 Version 3.0.0 (28 Apr 2006)
252 persson 773
253 schoenebeck 780 * general changes:
254 schoenebeck 809 - added write support (that is for creating and modifying RIFF, DLS and
255     gig files)
256     - loading DLS and gig files is now much more permissive, DLS and gig
257     files are now loaded even if mandatory RIFF chunks are missing
258 persson 834 - fixed some memory management errors, one of them was causing a
259     crash when a multi-file gig was deallocated
260 schoenebeck 780
261 persson 773 * src/gig.cpp, src/gig.h:
262     - fixed the GetVelocityCutoff function, it wasn't always using the
263     VCFVelocityScale parameter when no cutoff controller was defined
264 persson 774 - support for the gig v3 feature to have a number of dimension
265     splits not equal to a power of two
266 schoenebeck 809 - added write support (highly experimental)
267 persson 773
268 schoenebeck 800 * src/DLS.cpp, src/DLS.h:
269     - fixed loading of Articulation Connections (<artl> list chunks were
270     seeked instead of ordinary <artl> data chunks)
271     - added write support (highly experimental)
272    
273     * src/RIFF.cpp, src/RIFF.h:
274     - added write support
275     - Chunk::LoadChunkData() can now be called again to resize the buffer
276     after a Chunk::Resize() and before the File::Save() call to allow
277     placing the new data in the chunk's write buffer and perform the
278     resize and write operations in one rush
279    
280 schoenebeck 809 * src/gigdump.cpp:
281     - fixed to show the correct amount of dimension regions instead of 32
282     (patch by James Wylder)
283    
284 schoenebeck 804 * src/dlsdump.cpp:
285     - show for every region the name of the referenced sample
286     - show file name in quotation marks
287    
288 schoenebeck 732 Version 2.0.2 (15 Aug 2005)
289 schoenebeck 652
290     * packaging changes:
291     - require automake (>= 1.5) for 'make -f Makefile.cvs'
292     (mandatory for 'dist-bzip2' automake option)
293    
294 persson 666 * src/gig.cpp, src/gig.h:
295     - support for gig v3 multi-file format (.gig, .gx01, .gx02, ...),
296     the extension files are read automatically when the samples are
297     loaded
298 persson 695 - fixed the 24 bit decompression, the result should now be exact
299     instead of an approximation
300 persson 728 - added VCFCutoffControllerInvert parameter and GetVelocityCutoff
301     function to DimensionRegion
302 persson 666
303     * src/DLS.cpp, src/DLS.h:
304     - the upper bits of the pool table indices are read (used as
305     extension file numbers for gig v3)
306    
307     * src/RIFF.cpp, src/RIFF.h:
308     - the file name is remembered in the RIFF::File object
309    
310 schoenebeck 632 Version 2.0.1 (12 Jun 2005)
311 schoenebeck 549
312 schoenebeck 634 * packaging changes:
313     - include debian/ directory on 'make dist'
314     - create a bzip2 tarball on 'make dist'
315    
316 schoenebeck 549 * src/gigextract.cpp:
317     - show also version of libsndfile or build version of libaudiofile when
318     using the -v switch
319 schoenebeck 608 - fixed mutual link dependency to libsndfile / libaudiofile
320 schoenebeck 549
321 persson 613 * src/gig.cpp, src/gig.h:
322     - added DimensionRegion::GetVelocityRelease function
323    
324 schoenebeck 530 Version 2.0.0 (9 May 2005)
325 schoenebeck 317
326 schoenebeck 383 * packaging changes:
327     - fixed conditional linkage of either libsndfile or libaudiofile
328     (if none of the two exist, configure script will abort)
329 schoenebeck 518 - man pages are now auto generated with the correct libgig version
330 schoenebeck 383
331 schoenebeck 317 * src/gig.cpp, src/gig.h:
332     - experimental support for Gigasampler v3 format;
333     64 bit file offsets are truncated to 32 bit, 24 bit samples are
334 schoenebeck 347 truncated to 16 bit, up to 8 dimensions are read, additional
335     articulation informations are ignored at the moment
336     (patch by Andreas Persson)
337 schoenebeck 317 - added some file format compatibility checks
338 schoenebeck 345 - fixed vcf_type_lowpassturbo value (vcf_type_lowpassturbo was actually
339     never used, because the necessary check was made before
340     initialization)
341     - fixed crossfade points order (structure for big endian and little
342     endian systems was interchanged)
343 schoenebeck 355 - fixed some memory leaks (patch by 'Gene', a.k.a Anders Alm)
344 schoenebeck 352 - fixed crash which occured when patches did not have a sample assigned
345     to their region or dimension region (patch by Andreas Persson)
346 persson 365 - support for compressed mono samples
347     - experimental support for compressed 24 bit samples
348     - fixed decompression on big-endian CPUs
349     - fixed decompression bug that truncated the last block of samples
350 schoenebeck 384 - external decompression buffers can now be used for streaming samples
351     to avoid race conditions in case of multiple streaming threads
352 persson 406 - added pre-calculated sample attenuation parameter
353 persson 437 - added v3 "random" and "round robin" dimensions
354 schoenebeck 515 - implemented progress indicator callback mechanism for loading
355     instruments and samples
356 schoenebeck 518 - added functions libraryName() and libraryVersion()
357 schoenebeck 317
358 schoenebeck 518 * src/DLS.cpp, src/DLS.h:
359 schoenebeck 515 - fixed File constructor which caused variable File::Instruments always
360     to be zero
361 schoenebeck 518 - added functions libraryName() and libraryVersion()
362 schoenebeck 515
363 schoenebeck 518 * src/RIFF.cpp, src/RIFF.h:
364 schoenebeck 515 - fixed method List::LoadSubChunks() which did not restore the original
365     position within the body of the given list chunk
366 schoenebeck 518 - added functions libraryName() and libraryVersion()
367 schoenebeck 515
368 schoenebeck 518 * src/rifftree.cpp:
369     - added command line switch -v to show rifftree's revision and the used
370     libgig version
371    
372     * src/dlsdump.cpp:
373     - added command line switch -v to show dlsdump's revision and the used
374     libgig version
375    
376 schoenebeck 334 * src/gigdump.cpp:
377 schoenebeck 530 - added output of UnityNote, FineTune, Gain, SampleStartOffset an
378     LoopPlayCount
379 schoenebeck 518 - added command line switch -v to show gigdump's revision and the used
380     libgig version
381 schoenebeck 334
382 persson 365 * src/gigextract.cpp:
383     - support for compressed mono samples and compressed 24 bit samples
384 schoenebeck 518 - added command line switch -v to show gigextract's revision and the
385     used libgig version
386 persson 365
387 schoenebeck 315 Version 1.0.0 (26 Nov 2004)
388 schoenebeck 196
389     * packaging changes:
390     - renamed 'libgig.pc.in' -> 'gig.pc.in' and renamed pkg-config lib name
391     'libgig' -> 'gig' as it's common practice to omit the 'lib' prefix
392 schoenebeck 315 - fixed man pages automake install rule (which didn't work on Mandrake,
393     SuSE and Fedora)
394     - fixed generation of Doxygen API documentation (now also included in
395     RPM and Debian packages)
396 schoenebeck 196
397 schoenebeck 231 * src/gig.cpp, src/gig.h:
398     - fixed / improved accuracy of all three velocity to volume
399 schoenebeck 315 transformation functions a.k.a. 'nonlinear','linear','special'
400     (patch by Andreas Persson)
401 schoenebeck 231 - denormals are filtered from the velocity to volume tables
402 schoenebeck 241 - bugfix for dimension region switching (wrong handling of the release
403     trigger dimension, no bit range check for dimensions of split type
404     'split_type_bit')
405 schoenebeck 269 - fixed panorama value in DimensionRegion (invalid conversion from
406     signed 7 bit to signed 8 bit)
407 schoenebeck 282 - added class attribute 'Layers' to class 'gig::Region'
408 schoenebeck 315 - symbol prototyping of gig::Region (fixes build failure with qsampler)
409 schoenebeck 231
410 schoenebeck 220 * src/gigextract.cpp:
411     - added support for libsndfile (if libaudiofile and libsndfile are
412     available then libsndfile is preferred)
413    
414 schoenebeck 229 * src/gigdump.cpp:
415     - added printout for dimension informations (amount, type, bits, zones)
416 schoenebeck 231 - added printout for velocity response curve parameters
417 schoenebeck 235 - added printout for crossfade definitions
418 schoenebeck 269 - added printout for panorama value for each DimensionRegion
419 schoenebeck 282 - replaced printout of DLS Region layer by printout of amount of
420     Gigasampler layers
421 schoenebeck 229
422 capela 168 Version 0.7.1 (2 Jul 2004)
423    
424     * packaging changes:
425 schoenebeck 192 - added libgig.spec and libgig.pc package configurations for generating
426     Redhat packages
427 capela 168 - header files included on installation.
428     - autotools-generated files removed from CVS repository.
429 schoenebeck 186 - added support for generating Debian packages
430     - version of shared library can be set in configure.in
431    
432 schoenebeck 58 Version 0.7.0 (3 May 2004)
433    
434     * general changes:
435     - various big endian specific corrections
436     (successfully tested now on PPC)
437     - minor adjustments to avoid compile errors on some systems
438     (using now pow() instead of powl() and --pedantic g++ compiler switch)
439     - libtoolized the library
440     - added man pages for the command line tools
441     (gigextract, gigdump, dlsdump, rifftree)
442    
443     * src/gig.cpp, src/gig.h:
444     - fixed bug in decompression algorithm which caused it not to detect
445     the end of a stream
446     - added method GetVelocityAttenuation() to class 'DimensionRegion' which
447     takes the MIDI key velocity value as an argument and returns the
448     appropriate volume factor (0.0 ... 1.0) for the sample to be played
449     back, the velocity curve transformation functions used for this are
450     only an approximation so far
451     - fixed class attributes 'Sample::LoopStart', 'Sample::LoopEnd' and
452     'Sample::LoopSize' which reflected wrong values
453     - class attributes 'Sample::LoopStart' and 'Sample::LoopEnd' are now
454     measured in sample points instead of byte offset
455     - renamed misleading attribute name 'Sample::MIDIPitchFraction' to
456     'Sample::FineTune'
457     - added class attribute 'Sample::LoopSize'
458     - added method GetInstrument(uint index) to class 'File'
459     - added ReadAndLoop() method to class 'Sample' which is an extension to
460     the normal Read() method to honor the sample's looping information
461     while streaming from disk
462     - changed interface for 'attenuation_ctrl_t', 'eg1_ctrl_t' and
463     'eg2_ctrl_t': replaced this huge enumeration by a structure which
464     reflects the MIDI controller number in case of an ordinary control
465     change controller (this saves a huge switch-case block in the
466     application of the library user)
467     - renamed following attributes in class 'DimensionRegion':
468     'AttenuationContol' -> 'AttenuationController',
469     'InvertAttenuationControl' -> 'InvertAttenuationController',
470     'AttenuationControlTreshold' -> 'AttenuationControllerThreshold'
471     - minor fix in API documentation for method GetVelocityAttenuation() in
472     class 'DimensionRegion'
473    
474     * src/RIFF.cpp, src/RIFF.h:
475     - added additional API documentation
476     - minor fix in Chunk::Read() method (only a minor efficiency issue)
477    
478     * src/gigdump.cpp:
479     - added printout of samples' looping informations
480    
481 schoenebeck 11 Version 0.6.0 (3 Nov 2003)
482    
483     * initial release

  ViewVC Help
Powered by ViewVC