• R/O
  • HTTP
  • SSH
  • HTTPS

コミット一覧

タグ

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

TiMidity++ 改造版 (Windows 専用)


RSS
Rev. 日時 作者
57fad00 2011-12-04 01:01:33 Shoichi Tamuki

[PATCH 17/17] Fix listing of dynamic interfaces in --help output

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/timidity.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)

592b790 2011-12-04 01:00:04 Shoichi Tamuki

[PATCH 16/17] Silence dlsym errors

The way the new dynamic_interface_module() function probes for dynamic
interfaces cause it to always hit a few dlsym errors as soon as you have
more then one dynamic interface, so silence these errors.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/dl_dlopen.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)

8263144 2011-12-04 00:58:16 Shoichi Tamuki

[PATCH 15/17] Get rid of the dynamic_control_mode ControlMode

This is a left over from before the dynamic_interface_module() rewrite,
not only is it no longer needed its code is plain wrong, as it still
contains a prototype for the old way different dynamic_interface_module()
and tries to call it as if it were the old version, if that code path where
to ever be invoked bad things (tm) would happen. Luckily it is never used,
so simply nuke it.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
interface/Makefile.am | 6 --
interface/dynamic_c.c | 130 -------------------------------------------------
timidity/controls.c | 10 ----
timidity/timidity.c | 31 +++---------
4 files changed, 7 insertions(+), 170 deletions(-)
delete mode 100644 interface/dynamic_c.c

b074b7a 2011-12-04 00:52:13 Shoichi Tamuki

[PATCH 14/17] Silence autofoo warnings about have_speex ac cache identifier

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
configure.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

e73b534 2011-12-04 00:49:20 Shoichi Tamuki

[PATCH 10/17] Fix / silence various compiler warnings

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
interface/gtk_i.c | 39 +++---
interface/server_c.c | 12 +-
interface/tk_c.c | 7 +-
interface/wrdt_tty.c | 4 +-
interface/x_sherry.c | 4 +-
interface/xaw_c.c | 29 +++--
interface/xaw_i.c | 32 +++---
interface/xskin_c.c | 14 ++-
libarc/unlzh.c | 1 +
libunimod/load_far.c | 4 +-
libunimod/load_it.c | 6 +-
libunimod/mloader.c | 4 +-
libunimod/mlutil.c | 4 +-
timidity/ao_a.c | 3 +-
timidity/calcnewt.c | 10 +-
timidity/common.c | 13 ++-
timidity/effect.c | 1 -
timidity/esd_a.c | 2 +-
timidity/freq.c | 14 +--
timidity/instrum.c | 3 +-
timidity/loadtab.c | 2 +-
timidity/m2m.c | 44 ++++----
timidity/miditrace.c | 3 +-
timidity/output.c | 5 +-
timidity/playmidi.c | 19 ++--
timidity/readmidi.c | 5 +-
timidity/recache.c | 2 +-
timidity/resample.c | 2 +-
timidity/reverb.c | 336 +++++++++++++++++++++++++++++---------------------
timidity/smplfile.c | 10 +-
timidity/speex_a.c | 7 +-
timidity/timidity.c | 42 ++++---
utils/net.c | 2 +-
utils/nkflib.c | 18 ++-
34 files changed, 391 insertions(+), 312 deletions(-)

a36a5fc 2011-12-04 00:46:28 Shoichi Tamuki

[PATCH 9/9] sndfont: Work around soundfonts with missing links between stereo samples

Some sf2 files have all their link ids between stereo samples set to 0,
this patch works around that, atleast for files which have 2 matching
the matched left + right samples directly after each other in the
instruments layers list.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/sndfont.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 53 insertions(+), 4 deletions(-)

a825473 2011-12-04 00:44:52 Shoichi Tamuki

[PATCH 8/9] Fix a bunch of: warning: implicit declaration of function ... warnings

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/controls.c | 5 +++++
timidity/effect.c | 2 ++
timidity/oss_a.c | 1 +
timidity/playmidi.h | 1 +
timidity/speex_a.c | 10 ++++++++++
timidity/wrd.h | 2 ++
6 files changed, 21 insertions(+), 0 deletions(-)

abb7247 2011-12-04 00:43:17 Shoichi Tamuki

[PATCH 7/9] flac_a: Fix compiling with recent flac versions

The LEGACY_FLAC test was only succeeding on windows since the
FLAC/export.h was inside a windows #ifdef block.

While at it also fix various compiler warnings, including atleast
2 real bugs:
1) The missing include for common.h meant the safe_malloc prototype was
missing, making the compiler assume it returns an int -> fail on
64 bits
2) The | with FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA in the
error handling test was missing () and it is the wrong thing to do
in general since this is an enum not a flags field.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/flac_a.c | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)

4d511e1 2011-12-04 00:40:24 Shoichi Tamuki

[PATCH 6/9] Fork earlier when we're going to run deamonized in ALSA sequencer mode

If we're going to fork for daemon mode, we need to fork earlier, as
certain output libraries (pulseaudio) become unhappy if initialized
before forking and then being used from the child.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
interface/alsaseq_c.c | 17 -----------------
timidity/timidity.c | 23 +++++++++++++++++++++++
2 files changed, 23 insertions(+), 17 deletions(-)

e927661 2011-12-04 00:37:55 Shoichi Tamuki

[PATCH 4/9] Various man page fixes

courtesy of Debian
---
doc/C/timidity.1 | 8 ++++----
doc/C/timidity.cfg.5 | 10 +++++-----
2 files changed, 9 insertions(+), 9 deletions(-)

b87dda1 2011-12-04 00:35:48 Shoichi Tamuki

[PATCH 3/9] Change audio output detection order

First try the various desktop daemons we support, and only when those
are not available use the systems native sound system. Also try ALSA before
the native sound system, since the native sound system on Linux is set to
OSS, and ALSA definitely is preferable over OSS.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/output.c | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)

76e91a2 2011-12-04 00:33:48 Shoichi Tamuki

[PATCH 2/9] libao: Add a detect() function

Most Linux distros use pulseaudio by now, and libao is the best way to use
pulseaudio from timidity. This patch adds a detect function to libao, which
will make libao autodetect succeed only when pulse is available, so that
we can prefer libao in the probe order to get pulse, without also getting
libao on systems where we should be using alsa directly.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/ao_a.c | 31 ++++++++++++++++++++++++++++++-
1 files changed, 30 insertions(+), 1 deletions(-)

e4fcf2f 2011-12-04 00:31:52 Shoichi Tamuki

[PATCH 1/9] esd_a: Don't start ESD

Don't start ESD if it is not running yet, esp. not from detect() !

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
timidity/esd_a.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)

2168a68 2010-09-19 18:42:57 Kentaro Sato

* Fix a bug created at the previous commit that prevents alternate instruments from loading occasionally.
* Fix a bug that ignores user drum source instrument when "soundfont" directive is used.
* Fix a bug that ignores non-standard drumsets when a soundfont is specified with "soundfont" directive and the instrument is loaded as needed.
* Fix potential uninitialized pointers access.
* Add access keys to some of twsyng menuitems.

cee34dd 2010-09-12 18:16:46 Kentaro Sato

Fix a bug that ignores non-standard drumsets when a soundfont is specified with "soundfont" directive.

3dea787 2010-09-12 18:15:37 Kentaro Sato

Fix an error message for the bad floating point values.

9310c26 2010-08-28 23:12:30 Kentaro Sato

Quick fix for Microsoft Security Advisory 2269637. (Windows executable)

d1cfe41 2010-07-10 10:49:19 Kentaro Sato

Correct sf2 broken loop point to avoid infinite loop on resampling.

d3af875 2010-06-05 19:00:48 Kentaro Sato

Fix insertion effect Lo-Fi making loud noise.
Workaround for Moog VCF making loud noise.
Remove obsolete filter frequency cap.

e62b9c6 2010-06-05 18:58:48 Kentaro Sato

Remove obsolete filter frequency cap.

c0164cc 2010-06-05 18:55:52 Kentaro Sato

Workaround for Moog VCF making loud noise.

bf721bd 2010-06-05 18:54:55 Kentaro Sato

Fix insertion effect Lo-Fi making loud noise.

b282732 2010-05-23 17:32:43 Kentaro Sato

Fix infinite loop on reusing soundfont struct.

c319900 2010-05-23 00:10:28 Kentaro Sato

Fix ch_3tap_delay crash.

c778c04 2010-05-17 21:18:31 Kentaro Sato

changed file name was wrong; playmidi.c => readmidi.c

2b21595 2010-05-17 21:16:25 Kentaro Sato

Fix existing anti-popping minimum volume ramps for expression, volume, pans, etc.. Extend anti-popping minimum volume ramps to envelope amp changes.

271e15b 2010-05-17 21:15:59 Kentaro Sato

Allow Device Numbers other than 0x10 for XG SYSTEM ON SYSEX events

e5e137f 2010-05-17 21:14:37 Kentaro Sato

playmidi.c: Allow Device Numbers other than 0x10 for XG SYSTEM ON SYSEX events
mix.c: Fix existing anti-popping minimum volume ramps for expression, volume, pans, etc.. Extend anti-popping minimum volume ramps to envelope amp changes.

5ac3f69 2009-12-23 20:57:03 Kentaro Sato

timidity/sun_a.c (acntl): Fix for message PM_REQ_GETQSIZ, PM_REQ_GETFRAGSIZ.

40ccbab 2009-12-19 12:48:32 Kentaro Sato

Changelog was incomplete again. sorry