File: ChangeLog

package info (click to toggle)
sndfile-tools 1.5-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 860 kB
  • sloc: ansic: 2,923; sh: 237; python: 212; makefile: 94
file content (158 lines) | stat: -rw-r--r-- 4,567 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
2012-09-06  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/resample.c
    Fix valgrind warning.

    * Makefile.am tests/valgrind-test.sh
    Add a valgrind test for some of the executables.

2012-09-04  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * configure.ac
    Remove un-needed AC_LANG_SOURCE statement. Thanks to Robin Gareus.

2012-07-24  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/common.c
    Fix minor bug in sfx_mix_mono_read_double(). Patch from Martin Guy. Thanks.

2012-02-25  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * M4/extra_pkg.m4
    Update PKG_CHECK_MOD_VERSION macro to add an AC_TRY_LINK step. This fix
    allows the configure process to catch attempts to link incompatible
    libraries. For example, linking 32 bit version of eg libFLAC to a 64 bit
    version of sndfile-tools will now fail at the configure stage.

2011-01-14  Robin Gareus  <robin@gareus.org>

    * src/waveform.c
    added sndfile-waveform, a waveform image generator

2011-01-13  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/jackplay.c
    Improve reporting of loop count.

2011-01-12  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/*.[ch]
    Update copyright years.

    * src/jackplay.c
    Add ability to play a file in a loop.

    * man/sndfile-jackplay.1
    Update with new options.

2011-01-11  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * configure.ac
    Add AM_SILENT_RULES and other tweaks.

    * src/common.c
    Fix bug in sfx_mix_mono_read_double() where a bunch of crap got appended to
    the end of the mixed down file. Thanks to Tom Szilagyi for the bug report.
    Remove cruft.

2010-04-07  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/jackplay.c
    Use jack_client_open() instead of deprecated jack_client_new().

    * man/sndfile-spectrogram.1
    Fix two typos reported by Igor Murzov.

2010-02-22  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * configure.ac
    Detect presence of libsamplerate.

    * src/resample.c Makefile.am
    Add file originally from the libsamplerate source distribution and hook
    into build.

2009-12-21  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/*c
    Remove 'sndfile-' parts of file names.

    * src/jackplay.c
    Reorder JACK initialisation calls to remove click at start of playback.

2009-12-14  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * configure.ac
    Don't test for a fortran compiler.

    * man/sndfile-generate-chirp.1 man/sndfile-mix-to-mono.1
	    man/sndfile-spectrogram.1
    New man pages.

    * Makefile.am
    Hook new man pages into build.

    * NEWS doc/index.html
    Update for 1.03 release.

2009-12-07  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * M4/*.m4 configure.ac
    Rename custom M4 macros to MN_*.

    * man/sndfile-jackplay.1 Makefile.am
    Add man page for sndfile-jackplay.

    * doc/index.html
    Add sndfile-jackplay.

2009-12-04  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/sndfile-merge.c
    Remove this (moved to libsndfile source distribution).

    * src/sndfile-jackplay.c
    Add file originally from the libsndfile source distribution.

    * M4/extra_pkg.m4 configure.ac
    Add M4 macro for using in configure.ac to find the JACK library.

    * Makefile.am
    Fix build after previous changes.

2009-11-28  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/sndfile-spectrogram.c
    Improve the way the spectrogram is interpolated.

2009-11-26  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/sndfile-spectrogram.c
    Initialize colour to black so it writes black instead of random values from
    the stack.
    Add a --dyn-range=XXX command line option to set spectrogram dynamic range.
    Add --no-border command line option to disable rendering of border, scales,
    heat map and title.

    * src/sndfile-merge.c
    New program contributed by Jonatan Liljedahl that takes two mono files and
    merges them into a stereo file.

2009-03-02  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/window.c
    Add bounds check before array access.

2007-10-21  Erik de Castro Lopo  <erikd AT mega-nerd DOT com>

    * src/sndfile-spectrogram.c
    Calculate longer FFTs and then interpolate to the image height.

    * src/kaiser_window_test.c
    Test a longer window length.

    * doc/*
    Add rudimentary documentation.

    * configure.ac src/common.c
    Detect presence of sf_get_info() and SFC_GET_CURRENT_SF_INFO.