- 25 Feb, 2009 5 commits
-
-
Max Kellermann authored
Moved generic compiler options to AM_CFLAGS. MPD_CFLAGS/MPD_LIBS will hopefully fade away one day, in favor of more fine-grained variables.
-
Max Kellermann authored
Renamed the old AM_CFLAGS to AM_CPPFLAGS, because it contained only preprocessor options. Append it to src_mpd_CPPFLAGS. Removed GLIB_LIBS from src_mpd_CPPFLAGS, because it is already part of AM_LDFLAGS.
-
Max Kellermann authored
Added "make" variables for the sources and dependencies of each subsystem (archive, input, output, decoder, encoder, mixer).
-
Max Kellermann authored
"ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later.
-
Max Kellermann authored
Fix a gcc warning.
-
- 24 Feb, 2009 13 commits
-
-
Max Kellermann authored
Don't return an uninitialized bool variable.
-
Max Kellermann authored
Fix a gcc warning, initialize the "space" variable at the beginning of mpd_jack_play().
-
Max Kellermann authored
Work around gcc warnings by casting the parameters to void.
-
Max Kellermann authored
Don't explicitly check is_ipv6_enabled(), just try calling listen_add_port_ipv6(), but check its error code.
-
Max Kellermann authored
Some more code simplification.
-
Max Kellermann authored
For default bind_to_address settings, don't call listen_add_config_param(NULL), use listen_add_port() directly.
-
Max Kellermann authored
Split code from the rather large function listen_add_config_param(), part 3.
-
Max Kellermann authored
Split code from the rather large function listen_add_config_param(), part 2.
-
Max Kellermann authored
Split code from the rather large function listen_add_config_param().
-
Max Kellermann authored
Don't return -1 on failure, and abort on fatal error - do proper error reporting with GError, and return false on failure.
-
Max Kellermann authored
-
Max Kellermann authored
Renamed functions.
-
Max Kellermann authored
Removed superfluous commas.
-
- 23 Feb, 2009 4 commits
-
-
Avuton Olrich authored
After much research[1][2][3] this should be the majority of currently supported file extensions and mime-types for the currently supported ffmpeg formats. This list maybe incomplete, but it's more complete than anything else out there that I've been able to find. This list needs to be updated every now and again as the ffmpeg sources support more formats. 1. Sources 2. wiki.multimedia.cx 3. filext.com
-
Max Kellermann authored
Recursive Makefiles are inefficient and error prone (no proper way to declare dependencies). Since there's no disadvantage in having one single Makefile, let's do it.
-
Max Kellermann authored
The meaning of the chunk depends on the audio format; don't suggest a specific format by declaring the pointer as "char*", pass "void*" instead.
-
Max Kellermann authored
The old API required an output plugin to not return until all data passed to the play() method is consumed. Some output plugins have to loop to fulfill that requirement, and may block during that. Simplify these, by letting them consume only part of the buffer: make play() return the length of the consumed data.
-
- 22 Feb, 2009 8 commits
-
-
Max Kellermann authored
There are no plugins left which require shout_plugin.h. Moved the struct declaration to shout_plugin.c.
-
Max Kellermann authored
This array is empty, and is not used anymore.
-
Max Kellermann authored
Removed shout's encoder plugin API in favor of the new generic encoder plugin API.
-
Max Kellermann authored
This new LAME encoder plugin is based on the existing shout_mp3.c plugin.
-
Max Kellermann authored
This new vorbis encoder plugin is based on the existing shout_ogg.c plugin.
-
Max Kellermann authored
The new generic encoder API will replace shout's custom encoder API.
-
Max Kellermann authored
The method implementation my_shout_open_device() consists of only one line, the call to open_shout_conn(). Merge both functions into one.
-
Max Kellermann authored
Return true/false instead of 0/-1.
-
- 21 Feb, 2009 1 commit
-
-
Max Kellermann authored
-
- 20 Feb, 2009 3 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
The function path_set_fs_charset() is only used in path.c.
-
Max Kellermann authored
-
- 19 Feb, 2009 6 commits
-
-
Max Kellermann authored
The parameter name "wait" overlaps with the POSIX wait() function. Rename it.
-
Max Kellermann authored
Now that I've found this nice function in the GLib docs, we can finally remove our custom sleep function. Still all those callers of g_usleep() have to be migrated one day to use events, instead of regular polling.
-
Max Kellermann authored
Don't use libfaad's internal type names.
-
Max Kellermann authored
Define the GLib logging domain in the following libraries: conf, daemon, event_pipe, log.
-
Max Kellermann authored
For better debugging aid when something goes wrong, log the name of the effective configuration file.
-
Max Kellermann authored
-