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

Contents of /libgig/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2329 - (show annotations) (download)
Mon Mar 12 14:59:10 2012 UTC (12 years ago) by schoenebeck
File size: 19760 byte(s)
* added new method DLS::File::GetExtensionFile(int index)
* bumped version to 3.3.0svn3

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

  ViewVC Help
Powered by ViewVC