Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | playlist_queue: moved code to playlist_mapper.c | Max Kellermann | 2010-02-08 | 3 | -70/+137 |
| | |||||
* | playlist_queue: moved check_translate_song() to playlist_song.c | Max Kellermann | 2010-02-08 | 3 | -118/+172 |
| | |||||
* | song_print: song_print() returns void | Max Kellermann | 2010-02-08 | 3 | -10/+12 |
| | | | | The only "return" statement always returns 0. | ||||
* | ffmpeg: read more metadata. | Anton Khirnov | 2010-02-02 | 1 | -1/+12 |
| | |||||
* | decoder/flac: fix replay gain (short-circuiting "or") | Tim Phipps | 2010-01-28 | 1 | -8/+13 |
| | |||||
* | client: optionally use libwrap | Davide Camurri | 2010-01-20 | 1 | -0/+30 |
| | |||||
* | decoder/wavpack: fixed WVC URI | Max Kellermann | 2010-01-20 | 1 | -4/+5 |
| | | | | Pass the current URI to wavpack_open_wvc(). | ||||
* | decoder/ffmpeg: call decoder_timestamp() once per packet | Max Kellermann | 2010-01-18 | 1 | -5/+5 |
| | |||||
* | decoder/ffmpeg: merged ffmpeg_helper() into ffmpeg_decode() | Max Kellermann | 2010-01-18 | 1 | -116/+67 |
| | |||||
* | decoder/ffmpeg: optimized the stream_tag() method | Max Kellermann | 2010-01-18 | 1 | -25/+27 |
| | | | | Don't use the function ffmpeg_helper(), don't initialize the codec. | ||||
* | decoder/ffmpeg: free AVFormatContext on error | Max Kellermann | 2010-01-18 | 1 | -0/+4 |
| | | | | Fix a memory leak in some code paths. | ||||
* | decoder_api: removed function decoder_get_uri() | Max Kellermann | 2010-01-18 | 5 | -44/+11 |
| | | | | Use input_stream.uri. | ||||
* | input_stream: added attribute "uri" | Max Kellermann | 2010-01-18 | 8 | -10/+18 |
| | |||||
* | input_stream: added function input_stream_deinit() | Max Kellermann | 2010-01-18 | 9 | -2/+16 |
| | | | | All close() implementations must call this method. | ||||
* | Merge release 0.15.8 from branch 'v0.15.x | Max Kellermann | 2010-01-18 | 3 | -7/+40 |
|\ | | | | | | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/decoder/ffmpeg_decoder_plugin.c src/decoder_thread.c | ||||
| * | decoder/ffmpeg: added more MIME types | Max Kellermann | 2010-01-17 | 1 | -0/+6 |
| | | | | | | | | Taken from the ffmpeg sources. | ||||
| * | decoder/ffmpeg: append file name suffix to virtual stream URL | Max Kellermann | 2010-01-17 | 1 | -4/+28 |
| | | | | | | | | | | | | | | To allow libavformat to detect the format of the input file, append the suffix of the input file to the URL of the virtual stream. This specifically enables the "shorten" codec, which is supported by libavformat/raw.c, detected only by the suffix. | ||||
| * | queue: don't repeat current song in consume mode | Max Kellermann | 2010-01-16 | 1 | -2/+2 |
| | | | | | | | | | | Check consume mode in queue_next_order(), because the current song would be deleted as soon as it's finished; it cannot be played again. | ||||
| * | decoder_thread: fix CUE track playback | Max Kellermann | 2010-01-16 | 1 | -5/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | The patch "input/file: don't fall back to parent directory" introduced a regression: when trying to play a CUE track, decoder_run_song() tries to open the file as a stream first, but this fails, because the path is virtual. This patch fixes decoder_run_song() (instead of reverting the previous patch) to accept input_stream_open() failures if the song is a local file. It passes the responsibility to handle non-existing files to the decoder's file_decode() method. | ||||
| * | dbUtils: return empty tag value only if no value was found | Max Kellermann | 2010-01-02 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | This fixes a regression in the patch "return multiple tag values per song": even when the song has values for the specified tag type, the empty string gets added to the set, because the "return" was removed. This patch adds a flag which remembers whether at least one value was found. | ||||
* | | decoder_thread: don't fall back to "mad" unless no plugin matches | Max Kellermann | 2010-01-17 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | When all plugins have failed, MPD used to fall back to the "mad" decoder plugin, to handle those radio streams without a Content-Type response header. This however leads to unexpected results (garbage being played) when the stream isn't really mp3. Since we care little about "bad" streams, we shouldn't have hacks which have bad side effects. Let's get rid of this hack now! Only try to "mad" plugin if there was no match at all (Content-Type, path suffix) and no other plugin has been tried. | ||||
* | | decoder_thread: don't try a plugin twice (MIME type & suffix) | Max Kellermann | 2010-01-17 | 1 | -10/+56 |
| | | | | | | | | Manage a linked list of plugins which were already tried. | ||||
* | | fd_util: include ws2tcpip.h for socklen_t | Max Kellermann | 2010-01-17 | 1 | -0/+1 |
| | | |||||
* | | fd_util: fixed WIN32 versions of pipe() | Max Kellermann | 2010-01-17 | 1 | -2/+2 |
| | | | | | | | | Use the correct parameter name. | ||||
* | | text_file: don't strip trailing whitespace | Max Kellermann | 2010-01-17 | 1 | -1/+6 |
| | | | | | | | | | | Only delete the newline characters (\n and optionally \r). This allows the database file to store file names with trailing whitespace. | ||||
* | | output/pulse: clear the "mainloop" attribute on error | Max Kellermann | 2010-01-17 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | When enabling the pulse device fails, clear po->mainloop after pa_threaded_mainloop_free() has finished. This is important for the assertions. Two wrong g_free() calls were also removed. | ||||
* | | output/alsa: support packed 24 bit samples | Max Kellermann | 2010-01-17 | 1 | -0/+13 |
| | | |||||
* | | audio_format: support packed 24 bit samples | Max Kellermann | 2010-01-16 | 9 | -1/+263 |
| | | |||||
* | | output/alsa: probe all sample formats in a loop | Max Kellermann | 2010-01-16 | 1 | -36/+34 |
| | | | | | | | | | | More code simplification. Probe all formats, no matter which input format. | ||||
* | | output/alsa: merged code into alsa_output_try_format() | Max Kellermann | 2010-01-16 | 1 | -51/+71 |
| | | | | | | | | | | Remove the debug log messages, because they are duplicate (see ao_open() in output_thread.c). | ||||
* | | output/alsa: pass sample_format to get_bitformat() | Max Kellermann | 2010-01-16 | 1 | -3/+3 |
| | | |||||
* | | output/alsa: moved code to alsa_output_setup_format() | Max Kellermann | 2010-01-16 | 1 | -72/+80 |
| | | |||||
* | | decoder/flac: support streams without STREAMINFO block | Max Kellermann | 2010-01-06 | 2 | -1/+52 |
| | | |||||
* | | decoder/flac: pass bits_per_sample to flac_sample_format() | Max Kellermann | 2010-01-06 | 1 | -3/+3 |
| | | | | | | | | Easier to reuse the function. | ||||
* | | decoder/flac: moved decoder initialization to _flac_common.c | Max Kellermann | 2010-01-06 | 4 | -51/+23 |
| | | | | | | | | | | | | Invoke decoder_initialized() in the libFLAC metadata callback. This merges code from the FLAC and the OggFLAC decoder plugin into the common library. | ||||
* | | decoder/flac: remember audio_format, not stream_info | Max Kellermann | 2010-01-06 | 4 | -25/+47 |
| | | |||||
* | | decoder/flac: removed CUE sheet support | Max Kellermann | 2010-01-06 | 3 | -359/+1 |
| | | | | | | | | This feature has been moved to the "flac" playlist plugin. | ||||
* | | playlist: added a FLAC playlist plugin | Max Kellermann | 2010-01-06 | 3 | -0/+199 |
| | | | | | | | | This playlist plugin handles FLAC files with embedded CUE sheets. | ||||
* | | decoder/flac: moved flac_tag_load() to flac_metadata.c | Max Kellermann | 2010-01-06 | 3 | -53/+56 |
| | | | | | | | | Make this code is reusable. | ||||
* | | tag: fixed memmove() size argument in tag_delete_item() | Max Kellermann | 2010-01-06 | 1 | -1/+1 |
| | | | | | | | | This function has always been broken, but fortunately nobody used it. | ||||
* | | playlist_queue: convert absolute paths | Max Kellermann | 2010-01-06 | 1 | -4/+16 |
| | | | | | | | | Accept absolute paths if they point into the music directory. | ||||
* | | playlist_queue: use the "uri" variable earlier | Max Kellermann | 2010-01-06 | 1 | -6/+7 |
| | | | | | | | | Preparation for the next patch. | ||||
* | | input/rewind: enable the "rewind" wrapper for all non-seekable streams | Max Kellermann | 2010-01-04 | 2 | -15/+2 |
| | | | | | | | | Don't limit the "rewind" input plugin to CURL streams. | ||||
* | | renamed decoder plugin sources | Max Kellermann | 2010-01-04 | 15 | -0/+0 |
| | | | | | | | | Make it X_decoder_plugin.c. | ||||
* | | decoder/mad: fix build error without libid3tag | Max Kellermann | 2010-01-04 | 1 | -1/+0 |
| | | |||||
* | | replay_gain: moved code to replay_gain_config.c | Max Kellermann | 2010-01-04 | 6 | -13/+7 |
| | | |||||
* | | replay_gain: moved code to replay_gain_info.c | Max Kellermann | 2010-01-04 | 9 | -52/+108 |
| | | |||||
* | | replay_gain: refactor API, move code to replay_gain_state.c | Max Kellermann | 2010-01-04 | 7 | -76/+207 |
| | | | | | | | | | | The replay_gain_state struct holds the precalculated scale factor, which is removed from struct replay_gain_info. | ||||
* | | decoder_api: added function decoder_replay_gain() | Max Kellermann | 2010-01-04 | 21 | -92/+99 |
| | | | | | | | | | | | | This function replaces the replay_gain_info parameter for decoder_data(). This allows the decoder to announce replay gain changes, instead of having to pass the same object over and over. | ||||
* | | replay_gain: added function replay_gain_info_dup() | Max Kellermann | 2010-01-04 | 2 | -0/+12 |
| | |