summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Release v1.0.17v1.0.17Jaroslav Kysela2008-07-141-1/+1
| | | | Signed-off-by: Jaroslav Kysela <perex@perex.cz>
* Fix invalid withval in configure scriptTakashi Iwai2008-06-271-2/+2
| | | | | | Should be enableval instead. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Release v1.0.17rc2v1.0.17rc2Jaroslav Kysela2008-06-161-1/+1
| | | | Signed-off-by: Jaroslav Kysela <perex@perex.cz>
* Add more files to .gitignoreTakashi Iwai2008-06-061-0/+2
| | | | Signed-off-by: Takashi Iwai <tiwai@suse.de>
* pulse - Change to hook load_if_runningSjoerd Simons2008-06-061-8/+11
| | | | | | | | | | | | | | | | | Unfortunately some more testing revealed some issues with it, specifically if pulse is running your complete config is replaced the bits in the on_pulse_is_running directive. Which might not be what one actually wants :) I couldn't find a proper solution for this. So i've changed the code to optionally load config files. Just like the load hook does. Actually i just optionally call the snd_config_hook_load function, but that's not actually in the alsa API.... Also it now decides pulse is running as soon as the authorizing step begins (just after the actually connection is setup), which should save some round-trips and overhead. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Pulseaudio alsa configure hookSjoerd Simons2008-06-062-0/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The attached patch extends the alsa pulse plugin set with a alsa configuration hook. Allowing one to specify some configuration parameters that only come into effect when pulseaudio is running. For example a configution file like: @hooks [ { func on_pulse_is_running pcm.!default { type pulse } ctl.!default { type pulse } } ] will redirect the default alsa pcm and ctl to pulse iff pulse is running. (Assuming you defined the hook function correctly ofcourse) This is usefull for distributions that don't want to force their users to switch completely to pulseaudio, but have things a bit more dynamic :) The solutions isn't optimal though. It will mean that every program loading accessing alsa will try to make an (extra) connection to pulse to decide what to do. But i think it's the best we can do for now (or at least that i can do with my minimal knowledge of alsa). A nicer solution would be a way to always specify the pulse plugin as default and have a sort of fallback for when that fails. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Fix close in maemo callbackTakashi Iwai2008-06-061-1/+1
| | | | | | | | | ALSA bug#3035: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3035 Use dbus_connection_unref() instead of the deprecated dbus_connection_close(). Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Improve configure for maemo pluginTakashi Iwai2008-06-062-11/+22
| | | | | | | | | | | ALSA bug#3860: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3860 The Maemo DSP plugin checks for D-Bus in configure.in and then makes a bold assumption that this means it should use a proprietary resource manager available only on a specific proprietary platform. Attaching a patch to add --enable-maemo-resource-manager configure flag that enables the resource manager if set and if D-Bus is present. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Various plugins don't support "hint" sectionsTakashi Iwai2008-06-0610-10/+10
| | | | | | | | | Ignore hint sections defined by hand. Those are heplful to get listed in various places, such as aplay -L ALSA bug#3834: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3834 Signed-off-by: Takashi Iwai <tiwai@suse.de>
* pulse - Remove another assertTakashi Iwai2008-06-061-2/+3
| | | | | | Remove another assert that results in an unexpected crash. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* pulse - Fix useless assertTakashi Iwai2008-06-061-2/+4
| | | | | | | | | If stream connection failes, don't assume that stream is connected upon closing. ALSA bug#3831: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3831 Signed-off-by: Takashi Iwai <tiwai@suse.de>
* hgcompile -> gitcompile changeJaroslav Kysela2008-06-031-1/+1
|
* removed .hg* files and renamed hgcompile to gitcompileJaroslav Kysela2008-05-203-29/+1
|
* Added tag v1.0.16 for changeset 0fc727fc959dJaroslav Kysela2008-02-051-0/+1
|
* release 1.0.16v1.0.16Jaroslav Kysela2008-02-051-1/+1
| | | | Patch-level: Merged
* Added tag v1.0.16rc1 for changeset 8fee791a2fefJaroslav Kysela2008-01-211-0/+1
|
* release 1.0.16rc1v1.0.16rc1Jaroslav Kysela2008-01-211-1/+1
| | | | Patch-level: Merged
* PulseAudio plugin: report XRUN state back to applicationTakashi Iwai2007-12-141-1/+22
| | | | | | | | | | | From: Lennart Poettering <mznyfn@0pointer.de> It adds support to report back XRUN to the application if one happens. This is required to make some applications work on top of the pulse plugin. One being XMMS, which checks if a song finished to play by waiting for an XRUN (yes, I don't argue that XMMS shouldn't do that, but nonetheless it is a good thing if XRUNs are reported properly.)
* Use different buffer metrics in the PulseAudio pluginTakashi Iwai2007-11-261-3/+3
| | | | | | | | | | | | | | | | It increases the "pre-buffering level" (i.e. start threshold) to the full buffer size minus one period. This makes PA work a little bit more like normal audio devices, and makes a few drop outs go away for software which uses very small period sizes. It also increases the initial maximum buffer size, which allows a small overcommit. That's not really an issue, but cleaner nonetheless so I smuggled it into this patch. Also reported in the ALSA BTS: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3578 From: Lennart Poettering <mznyfn@0pointer.de>
* pulse - Add minmax condition for period_bytes and periodsTakashi Iwai2007-11-131-0/+7
| | | | | | | Added the minmax conditions for period_bytes and periods to pulse plugin. This fixes ALSA bug#2601. Patch from Mike Gorse <mgorse@mgorse.dhs.org>
* Fix wrong assert in pulse pluginTakashi Iwai2007-11-121-2/+10
| | | | | | assert(!pcm->stream) shouldn't be checked when the PCM state is SETUP, too (ALSA bug#3470). The original patch by Mike Gorse <mgorse@mgorse.dhs.org>
* Fix unexpected assert with pulse pluginTakashi Iwai2007-10-291-2/+5
| | | | | | | | | | This patch fixes the unexpected assert call at calling snd_pcm_hw_params in PREPARED state. Since multiple hw_params calls are allowed, the pulse plugin shouldn't call assert. Handled in ALSA bug#3470. From: Sean McNamara <smcnam@gmail.com>
* Added tag v1.0.15 for changeset 93d05f3418b2Jaroslav Kysela2007-10-151-0/+1
|
* release 1.0.15v1.0.15Jaroslav Kysela2007-10-151-1/+1
| | | | Patch-level: Merged
* Added tag v1.0.15rc1 for changeset 690ebe80ad89Jaroslav Kysela2007-08-301-0/+1
|
* release 1.0.15rc1v1.0.15rc1Jaroslav Kysela2007-08-301-1/+1
| | | | Patch-level: Merged
* Update speex rate converter codeTakashi Iwai2007-08-143-90/+191
| | | | | Take speex rate converter code from speex SVN tree, which includes the fix for the noises with simple conversion (signed / unsigned mismatch).
* Disable direct sinc tableTakashi Iwai2007-07-201-1/+4
| | | | | The direct sinc table can be noisy in some conditions (e.g. up-conversion from 11025 to 44100Hz). Disable it as a temporary solution for now.
* Fix the pop noise with samplerate pluginTakashi Iwai2007-07-131-1/+7
| | | | | A (temporary) fix for the pop noise at the beginning of playback with samplerate plugin.
* Add -no-undefined option to LDFLAGSTakashi Iwai2007-06-049-11/+11
| | | | Added -no-undefined option to LDFLAGS to make linking sure.
* Added tag v1.0.14 for changeset 213140a5ea7aJaroslav Kysela2007-05-311-0/+1
|
* release 1.0.14v1.0.14Jaroslav Kysela2007-05-311-1/+1
| | | | Patch-level: Merged
* Enable link with external libspeexTakashi Iwai2007-05-244-4/+79
| | | | | | | | - Add --with-speex configure option to specify the build of speex rate plugin. As default, it's linked to external library. If not available, defaults to builtin code. - Show build conditions at the end of configure script - Use AS_HELP_TEXT()
* Fix segfault of a52 pluginTakashi Iwai2007-05-231-0/+1
| | | | | | | Added the missing call of avcodec_init() to avoid setfault of a52 plugin with the latest svn revision of ffmpeg. From: Fabian van der Werf <fvanderwerf@gmail.com>
* Fix plugindir config settingTakashi Iwai2007-05-071-1/+2
| | | | | Fixed plugindir config setting when no option was given. Also fixed an obvious typo.
* Add plugin directory configure optionTakashi Iwai2007-05-0310-28/+47
| | | | | Added --with-plugindir configure option to specify the directory for plugin objects.
* Added tag v1.0.14rc4 for changeset 7147fb6d6612Jaroslav Kysela2007-05-021-0/+1
|
* Add missing header files for pphv1.0.14rc4Takashi Iwai2007-05-021-1/+1
|
* Added tag v1.0.14rc4 for changeset 01a4a861a39cJaroslav Kysela2007-05-021-0/+1
|
* release 1.0.14rc4Jaroslav Kysela2007-05-021-1/+1
| | | | Patch-level: Merged
* Add missing files for pphTakashi Iwai2007-03-232-0/+303
| | | | Added missing files for pph speex resampler plugin.
* Update version of speex resampler pluginTakashi Iwai2007-03-214-110/+197
| | | | | | | | From: Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> I'm attaching an updated version of my resampler plugin. It fixes a few minor issues and it adds support for fixed-point processing (just add -DFIXED_POINT to the build). Let me know if there's any problem.
* Add missing gcd.h to rate-lavc/Makefile.amTakashi Iwai2007-03-081-0/+2
| | | | Added missing gcd.h to rate-lavc/Makefile.am.
* Add documentation for speex rate pluginTakashi Iwai2007-03-072-1/+31
| | | | | | Added the documentation for speex rate plugin. From: Jean-Marc Valin <jean-marc.valin@usherbrooke.ca>
* Improve parameter constraints in alsa-pulsePierre Ossman2007-03-071-16/+1
| | | | | | | | Remove parameter constraints where we actually have none. Also, restrict total buffer size to 4 MB as current versions of the PulseAudio server will refuse streams larger than that. Signed-off-by: Pierre Ossman <ossman@cendio.se>
* v1.0.14rc3Jaroslav Kysela2007-02-261-1/+0
|
* Added tag v1.0.14rc3 for changeset 056fbbe54729Jaroslav Kysela2007-02-261-0/+1
|
* pph - do not include <samplerate.h> in rate_speexrate.cv1.0.14rc3Jaroslav Kysela2007-02-261-1/+0
|
* Added tag v1.0.14rc3 for changeset 81f4b9426736Jaroslav Kysela2007-02-261-0/+1
|
* release 1.0.14rc3Jaroslav Kysela2007-02-261-1/+1
| | | | Patch-level: Merged