aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add draft ALSA input pluginSteven O'Brien2013-12-191-0/+8
| | | | | | | | | | | | | | | | | | | | | | I've created an elementary input plugin that plays sound from the soundcard, so you can use MPD to listen to anything connected to the line-in jack, or to Video4Linux FM radio cards that send audio through the soundcard. There has been a small number of posts here in the past requesting line-in input, so here is a first, simplistic stab at it. The patch adds a new sheme, alsa://, which causes mpd to play data read directly from a souncdard. It defaults to hw:0,0, but you can pass any ALSA device name in the URI. So, using mpc for example: mpc add alsa:// mpc play will play from device hw:0,0. To use a diffferent device: mpc add alsa://hw:1,0
* util/fifo_buffer: remove obsolete libraryMax Kellermann2013-12-191-1/+0
|
* configure.ac: add option "--disable-glib"Max Kellermann2013-12-151-8/+12
| | | | | Allows building without GLib. This fails to compile currently, because GLib is still used in the MPD core.
* LogInit: move backend code to LogBackend.cxxMax Kellermann2013-12-151-1/+1
|
* Log: move Log() to LogBackend.cxxMax Kellermann2013-12-151-20/+21
| | | | Prepare for GLib removal.
* Log: move enum LogLevel to LogLevel.hxxMax Kellermann2013-12-151-0/+1
|
* util/SplitString: new utility classMax Kellermann2013-12-141-0/+1
| | | | To replace g_strdup().
* test: merge duplicate code to FakeDecoderAPI.cxxMax Kellermann2013-12-141-0/+2
|
* fs: implemented standard directories APIDenis Krjuchkov2013-12-081-0/+1
|
* TextFile: move to fs subsystemDenis Krjuchkov2013-12-081-3/+2
|
* util/DynamicFifoBuffer: new class replacing growing_fifoMax Kellermann2013-12-051-1/+1
|
* command: add commands "addtagid", "cleartagid"Max Kellermann2013-12-021-0/+2
|
* event: add poll() based PollGroup implementationDenis Krjuchkov2013-12-021-0/+1
|
* pcm/PcmFormat: move generic definitions to Traits.hxxMax Kellermann2013-12-011-0/+1
|
* pcm/SoxrResampler: new resampler option using libsoxrMax Kellermann2013-12-011-0/+7
|
* pcm/PcmResampler: convert to abstract interfaceMax Kellermann2013-11-301-4/+5
| | | | | | The PcmResampler interface is implemented by the two classes FallbackPcmResampler and LibsampleratePcmResampler. This prepares for adding more resampler libraries.
* pcm/PcmConvert: move code to new class GluePcmResamplerMax Kellermann2013-11-301-0/+1
|
* pcm/PcmConvert: move code to new class PcmChannelsConverterMax Kellermann2013-11-301-0/+1
|
* pcm/PcmConvert: move code to new class PcmFormatConverterMax Kellermann2013-11-301-0/+1
|
* util/ConstBuffer: new utility classMax Kellermann2013-11-291-0/+1
|
* event: implement PollGroup based on Windows selectDenis Krjuchkov2013-11-291-0/+2
|
* event: introduce generic API for internal event loopDenis Krjuchkov2013-11-281-0/+2
|
* Volume, Output: use new class PeriodClock instead of GTimerMax Kellermann2013-11-251-0/+1
|
* CommandLine: new command line parserDenis Krjuchkov2013-11-241-0/+2
| | | | | | | | This implementation behaves mostly identical to old parser. Few observable differences: - There are no option groups (single group is used for all options) - Option --stdout is hidden (it has been obsolete for a long time) - MPD executable name (mpd) is hardcoded for simplicity
* Makefile.am: disable dist-bzip2Max Kellermann2013-11-081-1/+1
| | | | | bzip2-compressed tarballs are obsolete, xz is better and widely understood.
* Makefile.am: distribute missing filesMax Kellermann2013-11-041-0/+5
|
* Makefile.am: add missing header fileMax Kellermann2013-10-311-0/+1
|
* Makefile.am: link test/DumpDatabase with Ack.cxxMax Kellermann2013-10-301-0/+1
|
* DecoderControl: move code/attributes to new class MixRampInfoMax Kellermann2013-10-261-0/+1
|
* test/test_mixramp: unit test for mixramp_interpolate()Max Kellermann2013-10-261-0/+10
|
* command: new command "readcomments" lists arbitrary file tagsMax Kellermann2013-10-251-0/+1
|
* InputInternal: remove obsolete libraryMax Kellermann2013-10-231-1/+0
|
* UriUtil: uri_remove_auth() returns std::stringMax Kellermann2013-10-231-1/+0
|
* test/test_util: unit test for libutil.aMax Kellermann2013-10-231-0/+10
|
* Playlist: refresh new tags after database updateMax Kellermann2013-10-221-0/+1
| | | | Fixes regression from commit e96779d.
* Partition: add methods TagModified(), SyncWithPlayer()Max Kellermann2013-10-211-1/+1
| | | | Move code from class Instance.
* GetBaseUTF8Max Kellermann2013-10-211-1/+1
|
* util/NumberParser: utilities for parsing numbers from ASCII stringsMax Kellermann2013-10-211-0/+1
|
* Util/ASCII: add function StringEqualsCaseASCII()Max Kellermann2013-10-201-0/+1
| | | | Replaces GLib's g_ascii_strcasecmp().
* *Commands: move to src/command/Max Kellermann2013-10-201-12/+12
|
* command: convert command_return to to a strictly-typed enumMax Kellermann2013-10-201-1/+1
|
* decoder/sidplay: add header fileMax Kellermann2013-10-201-1/+2
|
* decoder/sidplay: update file nameMax Kellermann2013-10-201-1/+2
|
* Client: move message functions into the classMax Kellermann2013-10-191-1/+1
|
* util/FormatString: new library to replace g_strdup_printf()Max Kellermann2013-10-191-0/+1
|
* encoder/{opus,vorbis}: new serial generator replacing g_random_int()Max Kellermann2013-10-191-0/+6
|
* ZeroconfAvahi: integrate into the EventLoopMax Kellermann2013-10-181-2/+5
| | | | Finally fixes the regression by commit c1f4f1fd.
* test/run_avahi: new debug programMax Kellermann2013-10-181-0/+16
|
* test/run_inotify: use SignalMonitorMax Kellermann2013-10-181-0/+1
|
* fs/Path: rename to AllocatedPathMax Kellermann2013-10-171-0/+1
| | | | | | | The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object.