aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* audio_format: support packed 24 bit samplesMax Kellermann2010-01-16
|
* output/alsa: probe all sample formats in a loopMax Kellermann2010-01-16
| | | | | More code simplification. Probe all formats, no matter which input format.
* output/alsa: merged code into alsa_output_try_format()Max Kellermann2010-01-16
| | | | | 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 Kellermann2010-01-16
|
* output/alsa: moved code to alsa_output_setup_format()Max Kellermann2010-01-16
|
* test/run_convert: implement a GLib log callbackMax Kellermann2010-01-16
| | | | | Log to stderr instead of the default stdout. We need a pristine stdout for the conversion result.
* test/run_convert: use fifo_buffer to adapt to odd sample sizesMax Kellermann2010-01-16
| | | | | Ensure that the pcm_convert() length argument is aligned to the sample size.
* decoder/flac: support streams without STREAMINFO blockMax Kellermann2010-01-06
|
* decoder/flac: pass bits_per_sample to flac_sample_format()Max Kellermann2010-01-06
| | | | Easier to reuse the function.
* decoder/flac: moved decoder initialization to _flac_common.cMax Kellermann2010-01-06
| | | | | | 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_infoMax Kellermann2010-01-06
|
* decoder/flac: removed CUE sheet supportMax Kellermann2010-01-06
| | | | This feature has been moved to the "flac" playlist plugin.
* playlist: added a FLAC playlist pluginMax Kellermann2010-01-06
| | | | This playlist plugin handles FLAC files with embedded CUE sheets.
* decoder/flac: moved flac_tag_load() to flac_metadata.cMax Kellermann2010-01-06
| | | | Make this code is reusable.
* tag: fixed memmove() size argument in tag_delete_item()Max Kellermann2010-01-06
| | | | This function has always been broken, but fortunately nobody used it.
* playlist_queue: convert absolute pathsMax Kellermann2010-01-06
| | | | Accept absolute paths if they point into the music directory.
* playlist_queue: use the "uri" variable earlierMax Kellermann2010-01-06
| | | | Preparation for the next patch.
* input/rewind: enable the "rewind" wrapper for all non-seekable streamsMax Kellermann2010-01-04
| | | | Don't limit the "rewind" input plugin to CURL streams.
* renamed decoder plugin sourcesMax Kellermann2010-01-04
| | | | Make it X_decoder_plugin.c.
* decoder/mad: fix build error without libid3tagMax Kellermann2010-01-04
|
* replay_gain: moved code to replay_gain_config.cMax Kellermann2010-01-04
|
* replay_gain: moved code to replay_gain_info.cMax Kellermann2010-01-04
|
* replay_gain: refactor API, move code to replay_gain_state.cMax Kellermann2010-01-04
| | | | | 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 Kellermann2010-01-04
| | | | | | 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 Kellermann2010-01-04
|
* valgrind.suppressions: added new suppressionsMax Kellermann2010-01-04
|
* replay_gain: removed overly verbose debug messageMax Kellermann2010-01-02
| | | | Don't log "ReplayGain is missing".
* configure.ac: disable -Wdeclaration-after-statementMax Kellermann2010-01-02
| | | | Allow declaration after statement.
* output_all: reset elapsed_time at song borderMax Kellermann2010-01-02
| | | | | | | | Another quirk fixed: after the last chunk of a song has been played, the "elapsed_time" variable is set to the chunk's time stamp. When the client receives the PLAYER idle event and asks MPD for the current time stamp, MPD will return the last time stamp of the previous song when it hasn't played the first chunk of the current song yet.
* input_stream: return allocated input_stream objectsMax Kellermann2010-01-01
| | | | | | | | Major API redesign: don't let the caller allocate the input_stream object. Let each input plugin allocate its own (derived/extended) input_stream pointer. The "data" attribute can now be removed, and all input plugins simply cast the input_stream pointer to their own structure (with an "struct input_stream base" as the first attribute).
* updated valgrind.suppressionsMax Kellermann2010-01-01
| | | | Mostly OpenSSL and GLib one-time allocations.
* configure.ac: expose variables OPENAL_CFLAGS and OPENAL_LIBSMax Kellermann2010-01-01
| | | | | Don't add these to the global MPD_CFLAGS and MPD_LIBS. This allows test programs to link without libopenal.
* Update copyright notices.Avuton Olrich2009-12-31
|
* decoder: switch a bunch of plugins to stream_tag()Max Kellermann2009-12-31
| | | | | | | | | | This patch changes the following decoder plugins to implement stream_tag() instead of tag_dup(): faad, ffmpeg, mad, modplug, mp4ff, mpcdec, oggflac This simplifies their code, because they do not need to take care of opening/closing the stream.
* decoder_plugin: added method stream_tag()Max Kellermann2009-12-31
| | | | | This is like tag_dup(), but works with an input_stream object instead of a file path.
* song_update: use decoder_plugin_tag_dup()Max Kellermann2009-12-31
| | | | Minor code simplification.
* archive: use reference counting for archive+inputMax Kellermann2009-12-31
| | | | | | | Make the input_stream implementation hold a reference on the archive_file object. Allow the caller to "close" the archive_file object immediately, no matter if the open_stream() method has succeeded or not.
* refcount: library for reference countingMax Kellermann2009-12-31
|
* input/archive: don't initialize input_stream.readyMax Kellermann2009-12-31
| | | | The archive plugin should decide this.
* archive/bz2: allocate buffer staticallyMax Kellermann2009-12-31
| | | | Reduce the number of malloc()/free() calls.
* archive/bz2: added struct bz2_input_streamMax Kellermann2009-12-31
| | | | Don't use the bz2_archive_file object for the input_stream.
* archive/iso9660: added struct iso9660_input_streamMax Kellermann2009-12-31
| | | | Don't use the iso9660_archive_file object for the input_stream.
* archive/iso9660: set input_stream.{size,offset}Max Kellermann2009-12-31
|
* archive/zzip: added struct zzip_input_streamMax Kellermann2009-12-31
| | | | Don't use the zzip_archive object for the input_stream.
* archive/zzip: set input_stream.{size,offset}Max Kellermann2009-12-31
|
* Makefile.am: added unit tests for the archive pluginsMax Kellermann2009-12-31
|
* Merge vorbis+icy fixes from branch 'v0.15.x'Max Kellermann2009-12-30
|\ | | | | | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/input/curl_input_plugin.c src/input_stream.c
| * input/curl: removed the built-in rewinding codeMax Kellermann2009-12-30
| | | | | | | | This has been reimplemented in the "rewind" input plugin.
| * input/rewind: new input_stream wrapper to allow stream rewindingMax Kellermann2009-12-29
| | | | | | | | | | | | | | | | | | | | | | | | This replaces the rewinding buffer code from the CURL input plugin. It is more generic, and allows rewinding even when the server sends Icy-Metadata (which would have been too difficult to implement within the CURL plugin). This is a rather complex patch for the stable branch (v0.15.x), but it fixes a serious problem: the "vorbis" decoder plugin was unable to play streams with Icy-Metadata, because it couldn't rewind the stream after detecting the codec (Vorbis vs. FLAC).
| * decoder/{ffmpeg,flac,vorbis}: added more flac/vorbis MIME typesMax Kellermann2009-12-29
| | | | | | | | | | Support deprecated MIME types such as "audio/x-ogg". Support new types such as "audio/flac".