aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-25cmdline: Add --no-config to explicitly set daemon default options.Avuton Olrich1-2/+7
2009-02-25alsa: fall back to 16 bit audioMax Kellermann1-3/+8
When the sample format is unknown, fall back to 16 bit samples.
2009-02-25alsa: moved code from alsa_open() to alsa_setup()Max Kellermann1-32/+49
Simplify error handling a bit by moving some code into a separate function. This eliminates a good bunch of gotos, but that's not finished yet.
2009-02-25mvp: check for reopen errorsMax Kellermann1-2/+7
When the MVP device has been closed in the cancel() method, and the play() method attempts to reopen it, check for errors.
2009-02-25mvp: moved code to mvp_find_sample_rate()Max Kellermann1-9/+17
Moved the table lookup code to a separate function.
2009-02-25mvp: make the mvp_sample_rates array constMax Kellermann1-1/+1
The array must never be modified, it's a constant lookup table.
2009-02-25mvp: fall back to 16 bit audio samplesMax Kellermann1-1/+5
Looks like the MVP audio output only supports 16 and 24 bit audio samples. If MPD generates any other sample formats, force it to use 16 bit.
2009-02-25mvp: fall back to stereoMax Kellermann1-1/+5
When the channel count is greater than 2, fall back to stereo sound.
2009-02-25mvp: mvp_set_pcm_params() returns boolMax Kellermann1-9/+14
Return true/false instead of 0/-1. Also check its return value in mvp_output_open().
2009-02-25mvp: pass audio_format struct to mvp_set_pcm_params()Max Kellermann1-13/+23
Pass a pointer to the audio_format struct instead of 3 separate integers.
2009-02-25mvp: removed big_endian parameter from mvp_set_pcm_params()Max Kellermann1-16/+3
Don't pass the big_endian flag to mvp_set_pcm_params(), do a simple "G_BYTE_ORDER==G_LITTLE_ENDIAN" instead.
2009-02-25mvp: use G_N_ELEMENTS(mvp_sample_rates)Max Kellermann1-5/+2
Instead of manually calculating the number of elements in the mvp_sample_rates array, use GLib's convenience macro G_N_ELEMENTS().
2009-02-25mvp: no CamelCaseMax Kellermann2-36/+40
Renamed types, functions and variables.
2009-02-25output: audio_output_init() returns boolMax Kellermann2-5/+5
Return true/false instead of 1/0.
2009-02-25output: set a GLib log domainMax Kellermann3-0/+10
2009-02-25fifo: return bool valuesMax Kellermann1-12/+12
Return true/false for success/failure instead of returning 0/-1.
2009-02-25fifo: no CamelCaseMax Kellermann2-45/+52
Renamed types, functions and variables.
2009-02-25fifo: removed timer!=NULL checksMax Kellermann1-12/+1
The MPD core guarantees that the audio_output object is always consistent, and our timer!=NULL checks are superfluous.
2009-02-25ao: no CamelCaseMax Kellermann2-50/+43
Renamed functions and variables.
2009-02-25ao: removed AoData.device!=NULL checksMax Kellermann1-12/+1
The MPD core guarantees that the audio_output object is always in a consistent state: either open or closed. When open, it will not call the open() method again, and when closed, it will not call play(). Removed several checks and the NULL initialization.
2009-02-25ao: removed implementation of method cancel()Max Kellermann1-6/+0
The method is empty, and we can simply set the method pointer to NULL instead.
2009-02-25output_plugin: don't pass audio_output object to method init()Max Kellermann12-34/+19
audio_output_get_name() has been removed, which was the only function left in output_api.h. The output plugin doesn't need the audio_output object at all, remove the parameter from the init() method.
2009-02-25output_api: removed audio_output_get_name()Max Kellermann5-52/+14
Use config_get_block_string("name") instead of audio_output_get_name().
2009-02-25ls: moved generic URI utilities to uri.cMax Kellermann13-29/+80
"ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later.
2009-02-24vorbis_encoder: vorbis_encoder_clear() returns voidMax Kellermann1-5/+1
Don't return an uninitialized bool variable.
2009-02-24jack: initialize local variable "space"Max Kellermann1-1/+1
Fix a gcc warning, initialize the "space" variable at the beginning of mpd_jack_play().
2009-02-24listen: fix unused parameter warnings when TCP is disabledMax Kellermann1-0/+3
Work around gcc warnings by casting the parameters to void.
2009-02-24listen: removed is_ipv6_enabled()Max Kellermann1-19/+14
Don't explicitly check is_ipv6_enabled(), just try calling listen_add_port_ipv6(), but check its error code.
2009-02-24listen: splitted listen_add_port() into IPv4 and IPv6Max Kellermann1-20/+52
Some more code simplification.
2009-02-24listen: don't call listen_add_config_param(NULL)Max Kellermann1-10/+25
For default bind_to_address settings, don't call listen_add_config_param(NULL), use listen_add_port() directly.
2009-02-24listen: moved code to listen_add_host()Max Kellermann1-58/+78
Split code from the rather large function listen_add_config_param(), part 3.
2009-02-24listen: moved code to listen_add_path()Max Kellermann1-25/+38
Split code from the rather large function listen_add_config_param(), part 2.
2009-02-24listen: moved code to listen_add_port()Max Kellermann1-33/+50
Split code from the rather large function listen_add_config_param().
2009-02-24listen: listen_add_address() returns bool/GErrorMax Kellermann1-38/+93
Don't return -1 on failure, and abort on fatal error - do proper error reporting with GError, and return false on failure.
2009-02-24listen: removed unused macro "MAXHOSTNAME"Max Kellermann1-2/+0
2009-02-24listen: no CamelCaseMax Kellermann5-30/+31
Renamed functions.
2009-02-23ffmpeg: add all known ffmpeg extensions and mime-types.Avuton Olrich1-18/+77
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
2009-02-23Makefile.am: no recursive makefilesMax Kellermann1-446/+0
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.
2009-02-23output: pass the music chunk pointer as void*, not char*Max Kellermann14-21/+21
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.
2009-02-23output_api: play() returns a lengthMax Kellermann12-119/+103
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.
2009-02-22shout: removed shout_plugin.hMax Kellermann3-54/+28
There are no plugins left which require shout_plugin.h. Moved the struct declaration to shout_plugin.c.
2009-02-22shout: removed shout_encoder_pluginsMax Kellermann1-11/+0
This array is empty, and is not used anymore.
2009-02-22shout: use the new encoder APIMax Kellermann5-559/+102
Removed shout's encoder plugin API in favor of the new generic encoder plugin API.
2009-02-22encoder: added lame mp3 encoderMax Kellermann3-0/+292
This new LAME encoder plugin is based on the existing shout_mp3.c plugin.
2009-02-22encoder: added vorbis encoderMax Kellermann3-0/+397
This new vorbis encoder plugin is based on the existing shout_ogg.c plugin.
2009-02-22added the encoder APIMax Kellermann5-0/+306
The new generic encoder API will replace shout's custom encoder API.
2009-02-22shout: merged open_shout_conn() into my_shout_open_device()Max Kellermann1-10/+2
The method implementation my_shout_open_device() consists of only one line, the call to open_shout_conn(). Merge both functions into one.
2009-02-22shout: bool return values instead of intMax Kellermann1-27/+28
Return true/false instead of 0/-1.
2009-02-21pcm: added API documentationMax Kellermann6-1/+130
2009-02-20crossfade: added API documentationMax Kellermann1-0/+21