aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_filter.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* copyright year 2011Max Kellermann2011-01-291-1/+1
|
* test: enable binary mode on stdin/stdoutMax Kellermann2010-05-201-0/+1
| | | | | Declaring the global variable _CRT_fmode is a documented hack. What an ugly platform!
* replay_gain: added mode "auto"Daniel Seuthe2010-04-251-0/+3
|
* replay_gain: optionally use hardware mixer to apply replay gainMax Kellermann2010-02-171-0/+8
| | | | | | | | | | Add an option for each audio output which enables the use of the hardware mixer, instead of the software volume code. This is hardware specific, and assumes linear volume control. This is not the case for hardware mixers which were tested, making this patch somewhat useless, but we will use it to experiment with the settings, to find a good solution.
* replay_gain: reimplement as a filter pluginMax Kellermann2010-02-171-0/+6
| | | | | | | Apply the replay gain in the output thread. This means a new setting will be active instantly, without going through the whole music pipe. And we might have different replay gain settings for each audio output device.
* Update copyright notices.Avuton Olrich2009-12-311-1/+1
|
* test/run_{decoder,filter}: implemented GLib log callbackMax Kellermann2009-12-141-0/+13
| | | | Log to stderr, not to stdout (which broke PCM output).
* audio_format: changed "bits" to "enum sample_format"Max Kellermann2009-12-021-1/+1
| | | | | | This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value.
* audio_format: added function audio_format_to_string()Max Kellermann2009-11-141-3/+3
| | | | | Unified function for converting an audio_format object to a string, for log messages and for the "status" command.
* include config.h in all sourcesMax Kellermann2009-11-121-0/+1
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* audio_format: wildcards allowed in audio_format configurationMax Kellermann2009-10-211-1/+2
| | | | | | An asterisk means that this attribute should not be enforced, and stays whatever it used to be. This way, some configuration values work like masks.
* conf: handle fatal errors with GErrorMax Kellermann2009-09-241-1/+6
| | | | | | | Don't call g_error(), which will abort the process and dump core. This patch does not affect all the config_get_X() functions. These need some more refactoring.
* Add audio_format_init() functionDavid Woodhouse2009-07-191-5/+3
| | | | | It makes no difference right now, but we're about to add an endianness flag and will want to make sure it's correctly initialised every time.
* filter/volume: don't use volume_level_get()Max Kellermann2009-07-051-6/+0
| | | | Added public methods to get and set the current volume.
* test: added program "run_filter"Max Kellermann2009-07-051-0/+174
This program runs filter plugins in an isolated environment.