aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* log: added log_early_init() for early debug messagesMax Kellermann2009-02-19
|
* Makefile.am: add new headers to $(mpd_headers)Max Kellermann2009-02-19
| | | | I forgot to add these, and this broke "make distcheck".
* mms: fix assertion in input_stream_openPeter Colberg2009-02-19
| | | | | | | | | | | | | | | Hi, upon trying to play an MMS stream added to the play list, I got this: mpd: /tmp/mpd/./src/input_stream.c:85: input_stream_open: Assertion `is->plugin->open == ((void *)0) || is->plugin == plugin' failed. With the following patch applied, it works perfectly. Thanks for having implemented MMS support :-). Best regards, Peter
* configure.ac: check ${host_os} instead of ${host}Max Kellermann2009-02-18
| | | | | | The configure.ac script does not care about the host architecture, it only cares about the OS. Use ${host_os} instead of ${host} to simplify the matching expressions.
* configure.ac: added AC_CANONICAL_HOSTMax Kellermann2009-02-18
| | | | Without AC_CANONICAL_HOST, ${host_os} etc. are not defined.
* pcm_volume: optimized pcm_volume_change_24() on i386Max Kellermann2009-02-18
| | | | | | | | | | | Added an inline assembly function for the 64 bit multiplication. Benchmark results on a Pentium II 266 MHz, 512 MB of 24 bit PCM data: dd if=/dev/zero bs=64k count=8k | time ./test/software_volume 48000:24:2 >/dev/null Before this patch 22.94s, after this patch 7.24s.
* test: added command line test program for pcm_volume.cMax Kellermann2009-02-18
| | | | | This program is a simple utility for debugging and benchmarking the software volume code.
* configure.ac: added switch for test programsMax Kellermann2009-02-18
| | | | The switch syntax is "--enable-test". There are no test programs yet.
* mp4ff: always free the mp4ff_read_sample() bufferMax Kellermann2009-02-18
| | | | | When mp4ff_read_sample() returns a value bigger than zero, it guarantees that the buffer is set. Remove the check.
* mp4ff: don't allocate seek_table when input is not seekableMax Kellermann2009-02-18
| | | | Don't waste any precious memory when the seek_table cannot be used.
* mp4ff: include cleanupMax Kellermann2009-02-18
| | | | Don't include limits.h, use GLib constants instead.
* mp4ff: use faacDecInit2() to find the AAC trackMax Kellermann2009-02-18
| | | | | | | | | Use faacDecInit2() instead of AudioSpecificConfig() to detect the AAC track in the MP4 file. This has a great advantage: it initializes the libfaad decoder, which the caller would normally do anyway - but now we can go without the AudioSpecificConfig() call. When decoder==NULL (called from mp4_tag_dup()), fall back to a mp4ff_get_track_type()==1 check, like other audio players do.
* mp4ff: moved code to mp4_faad_new()Max Kellermann2009-02-18
| | | | | | Moved the libfaad decoder initialization to mp4_faad_new(), and also fill the audio_format struct there. This eliminates a little bit of complexity in mp4_decode().
* mp4ff: call decoder_initialized() after libfaad initializationMax Kellermann2009-02-18
| | | | | Don't wait for the first frame to be decoded. We already have the sample rate and the channel count from faacDecInit2().
* mp4ff: merged mp4_load_tag() into mp4_tag_dup()Max Kellermann2009-02-18
| | | | | The function mp4_load_tag() is used only once, and mp4_tag_dup() is a one-liner. Merge them.
* player_thread: don't drop audio buffers when not seekableMax Kellermann2009-02-17
| | | | | | | When a file is not seekable, MPD dropped the audio buffers before even attempting to seek. This caused noticable sound corruption. Fix: first attempt to seek, and only if that succeeds, call audio_output_all_cancel().
* faad: variable cleanupMax Kellermann2009-02-17
| | | | Make some variables more local, and eliminate superfluous ones.
* faad: added source code commentsMax Kellermann2009-02-17
|
* faad: faad_decoder_init() returns an audio_formatMax Kellermann2009-02-17
| | | | | Instead of returning the sample rate and channel count as separate values, fill an audio_format struct.
* faad: call decoder_initialized() after libfaad initializationMax Kellermann2009-02-17
| | | | | Don't wait for the first frame to be decoded. We already have the sample rate and the channel count from faacDecInit().
* faad: removed DECODE_COMMAND_SEEK checkMax Kellermann2009-02-17
| | | | | The MPD core will never send a SEEK command to a decoder which has declared to be not seekable.
* input_file, input_curl, icy_metadata: added GLib log domainsMax Kellermann2009-02-17
| | | | Define G_LOG_DOMAIN.
* faad: use the decoder_buffer libraryMax Kellermann2009-02-17
| | | | | Replace this plugin's own buffer library with the new decoder_buffer library.
* faad: check the result of adts_find_frame()Max Kellermann2009-02-17
| | | | | Instead of checking if the buffer is empty after adts_find_frame(), check adts_find_frame()'s return value. This is more robust.
* faad: added libfaad wrappersMax Kellermann2009-02-17
| | | | | Moved libfaad API quirks to the wrapper functions faad_decoder_init() and faad_decoder_decode().
* faad: functions return duration, no float pointerMax Kellermann2009-02-17
| | | | | Instead of writing the song duration into a float pointer, return it from the function.
* faad: removed length==NULL check in faad_song_duration()Max Kellermann2009-02-17
| | | | There are no callers which pass NULL here.
* faad: fill buffer in adts_find_frame()Max Kellermann2009-02-17
| | | | | | All callers of adts_find_frame() use faad_buffer_fill() before that. Move that faad_buffer_fill() call into adts_find_frame() instead. adts_find_frame() will get its own logic for on-demand filling.
* added the "decoder buffer" libraryMax Kellermann2009-02-17
| | | | | The decoder buffer library may be used by decoder libraries such as "faad".
* faad: converted length check to assertion in adts_check_frame()Max Kellermann2009-02-17
| | | | | | adts_check_frame() must not be called with a buffer length smaller than 8. We can eliminate that duplicate check, and convert it into an assertion.
* faad: added length check before comparing "ADIF"Max Kellermann2009-02-17
| | | | | It's not valid to use the buffer's data without ensuring that the buffer contains enough data.
* faad: renamed internal functionsMax Kellermann2009-02-17
| | | | "aac" -> "faad"
* wavpack: added GLib log domainMax Kellermann2009-02-17
|
* pcm_convert: removed pcm_convert_size()Max Kellermann2009-02-17
| | | | The function is unused, since we added the pcm_buffer library.
* pcm_buffer: set size after allocationMax Kellermann2009-02-17
| | | | | | When I implemented the pcm_buffer library, I forgot to set the new buffer size. This caused a new allocation in each pcm_buffer_get(), fortunately no memory was leaked.
* decoders: added and fixed GLib log domainsMax Kellermann2009-02-17
| | | | | Fixed the log domains of the renamed decoders. Added G_LOG_DOMAIN macros in decoders which don't have one already.
* renamed decoder plugin "mpc" to "mpcdec"Max Kellermann2009-02-17
| | | | This plugin is based on "libmpcdec".
* renamed decoder plugin "mp4" to "mp4ff"Max Kellermann2009-02-17
| | | | This plugin is based on "libmp4ff".
* tag: fixed typo in MUSICBRAINZ_TRACKID tag nameMax Kellermann2009-02-17
|
* faad: no CamelCaseMax Kellermann2009-02-16
| | | | Renamed functions and variables.
* faad: removed AacBuffer.fileOffsetMax Kellermann2009-02-16
| | | | | The element fileOffset is only written, but never read. It can be removed safely.
* renamed decoder plugin "oggvorbis" to "vorbis"Max Kellermann2009-02-16
| | | | This plugin uses libvorbis.
* renamed decoder plugin "aac" to "faad"Max Kellermann2009-02-16
| | | | A decoder plugin should be named after the library which is used.
* renamed decoder plugin "mp3" to "mad"Max Kellermann2009-02-16
| | | | A decoder plugin should be named after the library which is used.
* output_api: don't include config.hMax Kellermann2009-02-16
| | | | If an output plugin requires config.h, it should include it directly.
* mixer: include cleanupMax Kellermann2009-02-16
| | | | | Don't include conf.h in mixer_api.h. Use a forward struct declaration instead.
* output: include cleanupMax Kellermann2009-02-16
| | | | | Don't include output_api.h in output_internal.h. This change requires adding missing includes in several sources.
* mixer_api: replaced method "control()" with "{get,set}_volume()"Max Kellermann2009-02-16
| | | | | The method control() is too complicated, and overengineered. Replace it with two trivial functions: get_volume() and set_volume().
* output_plugin: replaced method "control()" with "mixer()"Max Kellermann2009-02-16
| | | | | The output plugin shouldn't know any specifics of the mixer API. Make it return the mixer object, and let the caller deal with it.
* output_plugin: added inline wrapper functionsMax Kellermann2009-02-16
| | | | | Similar to the decoder plugin API: added wrapper functions to increase code readability.