aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer/OssMixerPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-11-28include cleanup using iwyuMax Kellermann1-3/+1
2013-10-21Util/ASCII: add StringEqualsCaseASCII() overload with lengthMax Kellermann1-3/+2
Replaces GLib's g_ascii_strncasecmp().
2013-10-02Log: new logging library APIMax Kellermann1-2/+4
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-04util/Error: new error passing libraryMax Kellermann1-43/+29
Replaces GLib's GError.
2013-08-07Makefile.am: move sources to libsystem.aMax Kellermann1-1/+1
2013-08-04*: use gcc.h macros instead of GLibMax Kellermann1-1/+1
2013-08-04MixerPlugin: pass config_param referenceMax Kellermann1-5/+5
2013-07-30tag: convert to C++Max Kellermann1-0/+1
2013-07-30output_api: convert to C++Max Kellermann1-1/+1
2013-04-16MixerInternal: convert to classMax Kellermann1-10/+8
2013-04-16mixer/Oss: convert to a classMax Kellermann1-51/+92
2013-02-22mixer_plugin: convert to C++Max Kellermann1-1/+1
2013-01-29output/{alsa,oss}: convert to C++Max Kellermann1-8/+8
2011-01-29copyright year 2011Max Kellermann1-1/+1
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
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-11-10fd_util: removed creat_cloexec()Max Kellermann1-1/+1
Add a "mode" argument to open_cloexec() instead.
2009-11-07set the close-on-exec flag on all file descriptorsMax Kellermann1-1/+2
Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes.
2009-10-21mixer_plugin: pass audio_output pointer to mixer_plugin.init()Max Kellermann1-1/+2
This allows the mixer object to access its associated audio output object.
2009-10-20mixer_plugin: use GError for error handlingMax Kellermann1-12/+30
2009-10-20mixer/{oss,alsa}: renamed the mixer source filesMax Kellermann1-4/+4
2009-03-27mixer: assert that the new volume value is validMax Kellermann1-3/+1
Added an assertion in mixer_set_volume(). Removed the range checks from the ALSA and OSS plugins.
2009-03-26oss_mixer: call oss_find_mixer() in init() methodMax Kellermann1-25/+26
Detect misconfiguration during MPD startup.
2009-03-26oss_mixer: removed superfluous checksMax Kellermann1-8/+8
The MPD core guarantees that methods are always invoked in a consistent state. This means we can remove lots of checks from the volume methods.
2009-03-26oss_mixer: use g_ascii_strncasecmp() instead of strncasecmp()Max Kellermann1-1/+1
strncasecmp() is locale dependent, but we only need ASCII here.
2009-03-26oss_mixer: pass default path to config_get_block_string()Max Kellermann1-8/+5
Instead of replacing NULL with the default path in the open() method, pass the default path to config_get_block_string().
2009-03-26oss_mixer: make "device" and "control" constMax Kellermann1-6/+5
Use config_get_block_string() instead of config_dup_block_string().
2009-03-26mixer_control: close mixer on failureMax Kellermann1-2/+0
When getting or setting the volume fails, the MPD core close the mixer. Moved the duplicated code from the mixer plugins.
2009-03-26mixer: added flag "open"Max Kellermann1-0/+1
Remember if a mixer object is open or closed. Don't call open() again if it is already open. This guarantees that the mixer plugin is always called in a consistent state, and we will be able to remove lots of checks from the implementations. To support mixers which are automatically opened even if the audio output is still closed (to set the volume before playback starts), this patch also adds the "global" flag to the mixer_plugin struct. Both ALSA and OSS set this flag, while PULSE does not.
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-02-16mixer_api: replaced method "control()" with "{get,set}_volume()"Max Kellermann1-53/+43
The method control() is too complicated, and overengineered. Replace it with two trivial functions: get_volume() and set_volume().
2009-01-25mixer_api: removed struct mixer_dataMax Kellermann1-7/+12
The mixer plugins should re-use the mixer struct and incorporate it in their object class.
2009-01-25mixer: merged methods "init" and "configure"Max Kellermann1-23/+6
Both methods are always called together. There is no point in having them separate. This simplifies the code, because the old configure() method could be called more than once, and had to free old allocations.
2009-01-25mixer: removed mixer_configure_legacy(), AC_MIXER_CONFIGUREMax Kellermann1-6/+0
Those have been superseded by the new legacy configuration code.
2009-01-25mixer: make all mixer_plugin pointers constMax Kellermann1-1/+1
The plugin structures must never be modified.
2009-01-25mixer: added missing copyright headersMax Kellermann1-0/+17
2009-01-25conf: allow param==NULLMax Kellermann1-3/+0
Return the default value in the conf_get_block_*() functions when param==NULL was passed. This simplifies a lot of code, because all initialization can be done in one code path, regardless whether configuration is present.
2009-01-25conf: const pointers in block get functionsMax Kellermann1-2/+2
All config_get_block_*() functions should accept constant config_param pointers.
2009-01-18conf: added config_get_block_string()Max Kellermann1-7/+7
This replaces lots of getBlockParam() invocations.
2009-01-18mixer: don't check for NULL before g_free()Max Kellermann1-8/+6
The g_free() function includes a NULL check. We don't have to do it twice.
2009-01-17conf: no CamelCase, part IMax Kellermann1-3/+3
Renamed functions, types, variables.
2009-01-16mixer: check param==NULL in the alsa and oss mixer codeMax Kellermann1-0/+4
When MPD starts without audio output configuration, the "param" variable is NULL. This triggers a segmentation fault in both mixer plugins.
2009-01-11removing mixer_reconfigure memmory leak, fixing configure of alsa and oss ↵Viliam Mateicka1-4/+12
mixer (passing parameters)
2009-01-10Introducing mixer apiViliam Mateicka1-29/+36
This patch tryes to introduce pluggable mixer (struct mixer_plugin) along with some basic infrastructure (mixer_* functions). Instance of mixer (struct mixer) is used in alsa and oss output plugin
2009-01-04renaming mixer.h to mixer_api.hViliam Mateicka1-3/+3
2009-01-01mixer: renamed mix_* options to mixer_*Max Kellermann1-2/+2
There is no reason to use the shortcut "mix" instead of "mixer".
2008-12-31Moving mixers to audio outputsViliam Mateicka1-0/+197