aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_filter.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-09-05conf.h: remove obsolete headerMax Kellermann1-1/+2
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-04util/Error: new error passing libraryMax Kellermann1-23/+17
Replaces GLib's GError.
2013-08-04*: use gcc.h macros instead of GLibMax Kellermann1-3/+3
2013-08-04FilterPlugin: pass config_param referenceMax Kellermann1-3/+2
2013-08-03audio_format: convert to C++Max Kellermann1-7/+6
2013-04-17don't use g_thread_init() with GLib 2.32Max Kellermann1-0/+3
Deprecated.
2013-04-16MixerInternal: convert to classMax Kellermann1-1/+1
2013-04-09pcm_*: move to src/pcm/Max Kellermann1-1/+1
2013-02-22mixer_plugin: convert to C++Max Kellermann1-1/+1
2013-02-02FilterInternal: convert struct filter to a OO interfaceMax Kellermann1-15/+14
2013-02-01filter: convert to C++Max Kellermann1-1/+1
2013-01-31pcm_*: convert to C++Max Kellermann1-1/+1
2013-01-30audio_{parser,config}: convert to C++Max Kellermann1-5/+1
2013-01-30ConfigFile: add enum ConfigOptionMax Kellermann1-3/+3
Look up top-level config options by enum (= integer), not by name string.
2013-01-29ConfigFile, CommandLine: use the Path classMax Kellermann1-2/+4
2013-01-29test/{read_conf,run_filter}: convert to C++Max Kellermann1-1/+5
2013-01-09test/FakeReplayGainConfig: move fake symbols from a few debug programsMax Kellermann1-6/+0
2013-01-05filter/ReplayGain: add method _set_mode()Max Kellermann1-3/+0
Push the new mode to the filter instead of accessing global variables through replay_gain_get_real_mode().
2013-01-04playlist: convert to C++Max Kellermann1-2/+2
2012-03-06use g_strerror() instead of strerror()Max Kellermann1-1/+1
Make sure we get a UTF-8 encoded string.
2011-07-03test/run_filter: remove unused variable "frame_size"Max Kellermann1-3/+0
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-05-20test: enable binary mode on stdin/stdoutMax Kellermann1-0/+1
Declaring the global variable _CRT_fmode is a documented hack. What an ugly platform!
2010-04-25replay_gain: added mode "auto"Daniel Seuthe1-0/+3
2010-02-17replay_gain: optionally use hardware mixer to apply replay gainMax Kellermann1-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.
2010-02-17replay_gain: reimplement as a filter pluginMax Kellermann1-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.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-14test/run_{decoder,filter}: implemented GLib log callbackMax Kellermann1-0/+13
Log to stderr, not to stdout (which broke PCM output).
2009-12-02audio_format: changed "bits" to "enum sample_format"Max Kellermann1-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.
2009-11-14audio_format: added function audio_format_to_string()Max Kellermann1-3/+3
Unified function for converting an audio_format object to a string, for log messages and for the "status" command.
2009-11-12include config.h in all sourcesMax Kellermann1-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.
2009-10-21audio_format: wildcards allowed in audio_format configurationMax Kellermann1-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.
2009-09-24conf: handle fatal errors with GErrorMax Kellermann1-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.
2009-07-19Add audio_format_init() functionDavid Woodhouse1-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.
2009-07-05filter/volume: don't use volume_level_get()Max Kellermann1-6/+0
Added public methods to get and set the current volume.
2009-07-05test: added program "run_filter"Max Kellermann1-59/+58
This program runs filter plugins in an isolated environment.
2009-03-13all: Update copyright header.Avuton Olrich1-3/+4
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-03-10test: added program "run_output"Max Kellermann1-0/+174
The "run_output" program can be used to test an audio output plugin in an isolated environment.