aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-28mp3: no CamelCaseMax Kellermann1-255/+254
Renamed all functions and variables. Also removed the mp3DecodeData typedef.
2008-10-28mp3: remove obsolete commentsMax Kellermann1-4/+0
2008-10-28input_file: don't use buffered I/OMax Kellermann1-28/+31
Yet another superfluous buffering layer. input_file was using FILE*, but we're better off with unbuffered I/O using open(), read(), ...
2008-10-28input_stream: convert offset and size to the off_t data typeMax Kellermann5-13/+12
size_t and long aren't 64 bit safe (i.e. files larger than 2 GB on a 32 bit OS). Use off_t instead, which is a 64 bit integer if compiled with large file support.
2008-10-28utils: use g_str_has_prefix() instead of prefixcmp()Max Kellermann10-35/+28
Remove duplicated code from MPD.
2008-10-27player: reset pc.command when decoder startup failsMax Kellermann1-0/+1
When the decoder failed to start, the function do_play() returned, still having pc.command==PLAY. This is because pc.command was reset only when the decoder started up successfully. Add another player_command_finished() call in the error handler.
2008-10-27input_file, input_curl: check URL type before attempting to openMax Kellermann2-0/+6
Don't attempt to open a HTTP URL as a local file, and don't send a local path to libcurl.
2008-10-26output: don't compile plugins which are disabledMax Kellermann14-104/+72
Don't compile the sources of disabled output plugins at all.
2008-10-26dirvec: fixed GCC shadow warningMax Kellermann1-4/+4
On some systems, string.h declares basename(). This emits a shadow warning. Change the variable name.
2008-10-26curl: read stream name from HTTP response headersMax Kellermann1-0/+5
If the server sends the headers "icy-name", "ice-name", "x-audiocast-name", set the stream title.
2008-10-26input_curl: set input_stream.mime from Content-Type response headerMax Kellermann1-0/+3
2008-10-26input_curl: added local variable "value"Max Kellermann1-14/+22
Replaced the local variable "colon" (which had only temporary meaning) with the variable "value". It is a pointer to the first byte of the header value.
2008-10-26input_stream: use g_free() in input_stream_close()Max Kellermann1-8/+5
g_free() allows passing the NULL pointer.
2008-10-26input_stream: use "bool" instead of "int"Max Kellermann14-49/+55
For boolean values and success flags, use bool instead of integer (1/0 for true/false, 0/-1 for success/failure).
2008-10-26input_stream: input_stream_close() returns voidMax Kellermann4-13/+7
close() shouldn't fail with read-only streams.
2008-10-26input_stream: added struct input_pluginMax Kellermann6-56/+63
Instead of managing a set of method pointers in each input_stream struct, move these into the new input_plugin struct. Each input_stream has only a pointer to the plugin struct. Pointers to all implementations are kept in the array "input_plugins".
2008-10-26input_stream: no CamelCaseMax Kellermann17-160/+158
Renamed all functions and variables.
2008-10-26input_file: removed global constructorMax Kellermann3-7/+0
The global constructor is empty, and can be removed.
2008-10-26input_file: don't export internal methodsMax Kellermann2-19/+25
The methods are only used in inputStream_fileOpen(), and should not be exported.
2008-10-26input_stream: removed the InputStream typedefMax Kellermann13-50/+65
Everybody should use struct input_stream.
2008-10-26input_stream: renamed sources, no CamelCaseMax Kellermann8-11/+11
Renamed inputStream.c and inputStream_file.c.
2008-10-26http: use libcurlMax Kellermann7-1171/+525
MPD's HTTP client code has always been broken, no matter how effort was put into fixing it. Replace it with libcurl, which is known to be quite stable. This adds a fat library dependency, but only for people who need streaming.
2008-10-26input_stream: added input_stream_global_finish()Max Kellermann3-0/+7
The hook input_stream_global_finish() deinitializes global structures of all input stream implementations.
2008-10-26stored_playlist: fixed signed comparison warningMax Kellermann1-1/+1
Cast playlist_max_length to off_t before comparing it to stat.st_size.
2008-10-26command: removed range check from check_bool()Max Kellermann1-6/+0
check_bool() accepts only "0" or "1". The range check is superfluous.
2008-10-26renamed src/audioOutputs/ to src/output/Max Kellermann14-19/+18
Again, no CamelCase in the directory name.
2008-10-26renamed src/inputPlugins/ to src/decoder/Max Kellermann16-14/+14
These plugins are not input plugins, they are decoder plugins. No CamelCase in the directory name.
2008-10-25removed internal copy of libmp4ffMax Kellermann15-4645/+2
MPD shouldn't integrate sources of other libraries. Since libmp4ff is part of libfaad, we should remove the old copy from src/mp4ff and link with the current version from libfaad instead.
2008-10-25pulse: force 16 bit audio sample formatMax Kellermann1-5/+3
PA_SAMPLE_S16NE is the only sample format which is suported by both MPD and pulseaudio. Unfortunately, pulse does not accept 24 bit samples. Instead of bailing out with an error message, we should tell the MPD core to convert all samples to 16 bit for pulse.
2008-10-24player: don't clear command before do_play() returnsMax Kellermann1-1/+0
This bug caused the audio output devices to stay open, although MPD wasn't playing: quitDecode() resetted player_control.command, assuming that the command was STOP. This way, player_task() didn't see the CLOSE_AUDIO command, and the device was kept open. Don't clear player_control.command in quitDecode().
2008-10-24remove unused sourcesMax Kellermann2-221/+0
These are results from failed merges which I didn't notice.
2008-10-24jack: support for 24 bit samplesMax Kellermann1-1/+32
When the audio source provides 24 bit samples, don't bother to convert (lossily) them to 16 bit before jack's floating point conversion - go directly from 24 bit to float.
2008-10-24jack: moved code to jack_write_samples_16()Max Kellermann1-14/+42
Move sample format dependent code to a separate function.
2008-10-24jack: eliminated CamelCaseMax Kellermann1-73/+76
Renamed all variables and functions. Add the prefix "mpd_jack_" to function names.
2008-10-24jack: added assertions against partial framesMax Kellermann1-0/+2
We must never pass partial frames. Added assertions to debug this.
2008-10-24jack: optimize local variablesMax Kellermann1-9/+8
Merge the variables "avail_data" and "avail_frames" into "available". Both variables are never used at the same time.
2008-10-24jack: lockless data transfer to jack threadMax Kellermann1-47/+15
The JACK documentation postulates that the process() callback must not block, therefore locking is forbidden. Anyway, the old code was racy. Remove all locks, and don't wait for more data to become available - just send to the port what is already in the buffer.
2008-10-24jack: partial writes to ring bufferMax Kellermann1-15/+15
Don't wait until there is room for the full data chunk passed to jack_playAudio(). Try to incrementally send as much as possible into the ring buffer.
2008-10-24jack: added constant "frame_size"Max Kellermann1-1/+2
Don't hard-code a frame size of "4" (16 bit stereo), calculate the sample size from sizeof(*buffer), and create the constant "frame_size".
2008-10-24jack: fix indentationMax Kellermann1-33/+33
Indent with tabs.
2008-10-24pcm_resample: support for libsamplerate < 0.1.3Max Kellermann1-0/+20
libsamplerate 0.1.2 didn't have the 32 bit <-> float conversion routines. Emulate them in case they aren't supported.
2008-10-23player: don't send partial frames of silenceMax Kellermann1-1/+7
Another partial frame fix: the silence buffer was 1020 bytes, which had room for 127.5 24 bit stereo frames. Don't send the partial last frame in this case.
2008-10-23pcm_utils: added 24 bit conversion functionsMax Kellermann1-0/+108
24 bit output is as important as 16 bit output. Provide a pcm_convert() implementation which can convert to 24 bit with as little quality loss as possible.
2008-10-23pcm_utils: generic pcm_convert_size() implementationMax Kellermann1-21/+2
The old pcm_convert_size() ignored most of the destination format, e.g. it did not check its sample size, and assumed it is 16 bit. Simplify and universalize it by using audio_format_frame_size().
2008-10-23pcm_utils: moved code to pcm_convert_16()Max Kellermann1-21/+39
pcm_convert() converted only to 16 bit. To be able to support other sample sizes, move that 16 bit specific code to a separate function.
2008-10-23pcm_channels: added 24 bit implementationsMax Kellermann2-0/+84
The 24 bit implementation is mostly copy'n'paste of the 16 bit version, except that the data type is int32_t instead of int16_t.
2008-10-23pcm_utils: moved channel conversion functions to pcm_channels.cMax Kellermann4-82/+138
Separate code from pcm_utils.c to keep it small and simple.
2008-10-23pcm_resample: implemented 24 bit resamplingMax Kellermann3-0/+94
Similar to pcm_resample_16(), implement pcm_resample_24(). The 24 bit implementation is very similar, but it uses src_int_to_float_array() instead of src_short_to_float_array() before sending data to libsamplerate.
2008-10-23pcm_resample: moved code to pcm_resample_set()Max Kellermann1-29/+40
A future patch will implement a 24 bit resampler. To unify code, move code which can be shared to a separate function.
2008-10-23pcm_resample: eliminated "sample" local variablesMax Kellermann1-9/+3
Copy from source to destination buffer directly, don't use the temporary variables "lsample" and "rsample".