aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-12-24output/jack: use std::fill()Max Kellermann1-9/+6
2014-12-24output/jack: move functions into the structMax Kellermann1-208/+246
2014-12-24output/jack: merge two mpd_jack_available() callsMax Kellermann1-2/+2
2014-12-24output/jack: make variables more localMax Kellermann1-21/+15
2014-12-24output/jack: convert const to constexprMax Kellermann1-1/+1
2014-12-24output/jack: convert enum to constexprMax Kellermann1-3/+1
2014-12-23input/mms: limit the mmsx_read() sizeMax Kellermann1-0/+7
2014-12-23decoder/ffmpeg: fix indentMax Kellermann1-2/+2
2014-12-23decoder/DsdLib: add missing stdlib.h includeMax Kellermann1-0/+1
2014-12-23DSF ID3 tags hitting 4k size limitJan Brittenson1-6/+12
Here's a change to dynamically allocate the DSD ID3 tag buffer. Pretty much anything with cover art is going to exceed the existing, static 4k limit... Here's a change to dynamically allocate the buffer and sanity check it at some upper limit. I rather arbitrarily pulled 256k out of thin air just to keep a corrupt file from causing it to trying to allocate a buffer larger than available memory.
2014-12-22decoder/ffmpeg: simplify mpd_ffmpeg_open_input()Max Kellermann1-17/+12
2014-12-22decoder/ffmpeg: move functions into the AvioStream structMax Kellermann2-20/+37
2014-12-22configure.ac: use MPD_ENABLE_AUTO_PKG_LIB for libgmeMax Kellermann1-1/+1
2014-12-22configure.ac: remove redundant declaration "HAVE_ISO9660"Max Kellermann1-1/+1
2014-12-21input/ffmpeg: use FfmpegInit() instead of av_register_all()Max Kellermann1-2/+2
Make sure that the log callback is installed.
2014-12-21decoder/ffmpeg: move code to lib/ffmpeg/Init.cxxMax Kellermann3-4/+66
2014-12-20decoder/ffmpeg: move code to lib/ffmpeg/LogCallback.cxxMax Kellermann3-34/+98
2014-12-19decoder/ffmpeg: remove obsolete commentMax Kellermann1-1/+0
2014-12-19decoder/ffmpeg: convert enums to constexprMax Kellermann1-4/+2
2014-12-19decoder/ffmpeg: move struct AvioStream to FfmpegIo.hxxMax Kellermann3-74/+139
2014-12-19decoder/ffmpeg: remove unnecessary nullptr check for av_free()Max Kellermann1-2/+1
2014-12-19decoder/ffmpeg: use AVStream::durationMax Kellermann2-10/+31
Use the duration of the stream we're actually decoding - not the "global" attribute AVFormatContext::duration which may differ.
2014-12-19decoder/ffmpeg: skip _scan_stream() if no audio stream was foundMax Kellermann1-5/+9
2014-12-19decoder/ffmpeg: remove redundant audio stream checkMax Kellermann1-3/+3
2014-12-19decoder/ffmpeg: use more referencesMax Kellermann1-16/+16
2014-12-19decoder/ffmpeg: merge avformat_close_input() callsMax Kellermann1-57/+63
2014-12-19lib/ffmpeg/Time: add API documentationMax Kellermann1-0/+9
2014-12-19decoder/ffmpeg: move code to lib/ffmpeg/Time.hxxMax Kellermann2-48/+82
2014-12-19decoder/ffmpeg: use av_free() instead of av_freep()Max Kellermann1-1/+1
2014-12-19decoder/ffmpeg: add API documentationMax Kellermann1-1/+5
2014-12-18decoder/ffmpeg: copy_interleave_frame() returns ConstBufferMax Kellermann1-12/+12
2014-12-18decoder/ffmpeg: copy_interleave_frame() returns ErrorMax Kellermann1-14/+22
2014-12-18decoder/ffmpeg: pass AVPacket copy to ffmpeg_send_packet()Max Kellermann1-7/+5
2014-12-18decoder/ffmpeg: simplify ffmpeg_send_packet()Max Kellermann1-15/+15
2014-12-18decoder/ffmpeg: pass references instead of pointersMax Kellermann1-33/+33
2014-12-18decoder/ffmpeg: move code to class FfmpegBufferMax Kellermann2-17/+83
2014-12-18decoder/ffmpeg: fix crash on out-of-memoryMax Kellermann1-3/+7
Fixes regression by commit 7c8038e
2014-12-18decoder/ffmpeg: log detailed error messageMax Kellermann3-2/+76
2014-12-18decoder/ffmpeg: remove obsolete commentMax Kellermann1-1/+0
2014-12-18decoder/ffmpeg: add "pure" attributesMax Kellermann1-1/+2
2014-12-17output/winmm: show detailed error messagesMax Kellermann1-7/+18
2014-12-17LogBackend: force-flush stderr on WIN32Max Kellermann1-0/+6
setvbuf() does not seem to have an effect on Windows.
2014-12-17LogInit: make stderr line-bufferedMax Kellermann1-0/+3
Make sure everything gets logged right away. No delays because stdio's buffer is not yet full.
2014-12-17util/HugeAllocator: enable MEM_COMMIT on WindowsMax Kellermann1-1/+3
Without MEM_COMMIT, the reserved address space is not accessible, and MPD crashes.
2014-12-16playlist/embcue: fix filename suffix detectionk441-1/+1
The definition of the playlist_plugin struct member of the embcue plugin was incorrect.
2014-12-15storage/nfs: add timeoutMax Kellermann2-3/+13
2014-12-15decoder/ffmpeg: detect and fix negative time stampsMax Kellermann1-4/+7
Works around assertion failure due to something that appears to be a (minor) FFmpeg bug.
2014-12-15storage/nfs: clear last_error in SetState()Max Kellermann1-0/+1
Fixes bogus assertion failure.
2014-12-15lib/nfs/Connection: unregister socket with SocketMonitor::Steal()Max Kellermann1-1/+1
SocketMonitor::Cancel() does not actually unregister the socket; it only disables the event.
2014-12-15lib/nfs/Connection: implement mount timeoutMax Kellermann2-2/+31