Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-03-05 | fs/NarrowPath: new utility class | Max Kellermann | 1 | -2/+3 | |
2015-03-03 | *: change C-style prototypes, drop "(void)" | Max Kellermann | 2 | -3/+5 | |
2015-01-31 | DecoderThread: make variables more local | Max Kellermann | 1 | -6/+3 | |
2015-01-31 | decoder/sndfile, ...: update API documentation | Max Kellermann | 5 | -7/+7 | |
2015-01-30 | decoder/DsdLib: fix integer overflow in ID3 size calculation | Max Kellermann | 1 | -2/+4 | |
2015-01-30 | decoder/DsdLib: check size before seeking | Max Kellermann | 1 | -4/+3 | |
2015-01-30 | decoder/DsdLib: don't use InputStream::GetOffset() after seeking | Max Kellermann | 1 | -3/+2 | |
We already know the offset. | |||||
2015-01-30 | decoder/DsdLib: pass offset_type t dsdlib_tag_id3() | Max Kellermann | 2 | -4/+2 | |
2015-01-29 | decoder/DsdLib: use new[] to allocate the ID3 buffer | Max Kellermann | 1 | -3/+5 | |
Don't abort the process if there's not enough memory. This buffer is not important and can be large. | |||||
2015-01-29 | decoder/DsdLib: free ID3 buffer right after id3_tag_parse() | Max Kellermann | 1 | -5/+2 | |
Merge two free() calls. | |||||
2015-01-29 | decoder/DsdLib: raise ID3 tag limit to 1 MB | Max Kellermann | 1 | -1/+1 | |
A bug report was submitted with a 600 kB ID3 tag that could not be read by MPD. | |||||
2015-01-21 | config/Param: split block-specific attributes to new struct ConfigBlock | Max Kellermann | 18 | -38/+38 | |
The old struct config_param remains only for top-level string options. | |||||
2015-01-21 | config/Option: convert to strictly-typed enum | Max Kellermann | 2 | -2/+3 | |
2015-01-21 | ConfigData: move struct config_param to Param.hxx | Max Kellermann | 2 | -2/+2 | |
2015-01-01 | Copyright year 2015 | Max Kellermann | 99 | -99/+99 | |
2014-12-23 | decoder/ffmpeg: support interleaved floating point | Max Kellermann | 1 | -0/+1 | |
2014-12-23 | decoder/ffmpeg: fix indent | Max Kellermann | 1 | -2/+2 | |
2014-12-23 | decoder/DsdLib: add missing stdlib.h include | Max Kellermann | 1 | -0/+1 | |
2014-12-23 | DSF ID3 tags hitting 4k size limit | Jan Brittenson | 1 | -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-22 | decoder/ffmpeg: simplify mpd_ffmpeg_open_input() | Max Kellermann | 1 | -17/+12 | |
2014-12-22 | decoder/ffmpeg: move functions into the AvioStream struct | Max Kellermann | 2 | -20/+37 | |
2014-12-22 | configure.ac: use MPD_ENABLE_AUTO_PKG_LIB for libgme | Max Kellermann | 1 | -1/+1 | |
2014-12-21 | decoder/ffmpeg: move code to lib/ffmpeg/Init.cxx | Max Kellermann | 1 | -4/+2 | |
2014-12-20 | decoder/ffmpeg: move code to lib/ffmpeg/LogCallback.cxx | Max Kellermann | 1 | -34/+2 | |
2014-12-19 | decoder/ffmpeg: remove obsolete comment | Max Kellermann | 1 | -1/+0 | |
2014-12-19 | decoder/ffmpeg: convert enums to constexpr | Max Kellermann | 1 | -4/+2 | |
2014-12-19 | decoder/ffmpeg: move struct AvioStream to FfmpegIo.hxx | Max Kellermann | 3 | -74/+139 | |
2014-12-19 | decoder/ffmpeg: remove unnecessary nullptr check for av_free() | Max Kellermann | 1 | -2/+1 | |
2014-12-19 | decoder/ffmpeg: use AVStream::duration | Max Kellermann | 1 | -10/+6 | |
Use the duration of the stream we're actually decoding - not the "global" attribute AVFormatContext::duration which may differ. | |||||
2014-12-19 | decoder/ffmpeg: skip _scan_stream() if no audio stream was found | Max Kellermann | 1 | -5/+9 | |
2014-12-19 | decoder/ffmpeg: remove redundant audio stream check | Max Kellermann | 1 | -3/+3 | |
2014-12-19 | decoder/ffmpeg: use more references | Max Kellermann | 1 | -16/+16 | |
2014-12-19 | decoder/ffmpeg: merge avformat_close_input() calls | Max Kellermann | 1 | -57/+63 | |
2014-12-19 | decoder/ffmpeg: move code to lib/ffmpeg/Time.hxx | Max Kellermann | 1 | -48/+6 | |
2014-12-19 | decoder/ffmpeg: use av_free() instead of av_freep() | Max Kellermann | 1 | -1/+1 | |
2014-12-19 | decoder/ffmpeg: add API documentation | Max Kellermann | 1 | -1/+5 | |
2014-12-18 | decoder/ffmpeg: copy_interleave_frame() returns ConstBuffer | Max Kellermann | 1 | -12/+12 | |
2014-12-18 | decoder/ffmpeg: copy_interleave_frame() returns Error | Max Kellermann | 1 | -14/+22 | |
2014-12-18 | decoder/ffmpeg: pass AVPacket copy to ffmpeg_send_packet() | Max Kellermann | 1 | -7/+5 | |
2014-12-18 | decoder/ffmpeg: simplify ffmpeg_send_packet() | Max Kellermann | 1 | -15/+15 | |
2014-12-18 | decoder/ffmpeg: pass references instead of pointers | Max Kellermann | 1 | -33/+33 | |
2014-12-18 | decoder/ffmpeg: move code to class FfmpegBuffer | Max Kellermann | 1 | -17/+10 | |
2014-12-18 | decoder/ffmpeg: fix crash on out-of-memory | Max Kellermann | 1 | -3/+7 | |
Fixes regression by commit 7c8038e | |||||
2014-12-18 | decoder/ffmpeg: log detailed error message | Max Kellermann | 1 | -2/+2 | |
2014-12-18 | decoder/ffmpeg: remove obsolete comment | Max Kellermann | 1 | -1/+0 | |
2014-12-18 | decoder/ffmpeg: add "pure" attributes | Max Kellermann | 1 | -1/+2 | |
2014-12-15 | decoder/ffmpeg: detect and fix negative time stamps | Max Kellermann | 1 | -4/+7 | |
Works around assertion failure due to something that appears to be a (minor) FFmpeg bug. | |||||
2014-12-12 | vorbiscomments: Remove support for non-standard "album artist" tags. | Rasmus Steinke | 1 | -1/+0 | |
MPD used both "album artist" and "albumartist" tags and mapped them to one tag. This could lead to issues, if a file had both tags, causing MPD to send a list of albumartists instead of a single one. Since "album artist" is not a standard tag anyway and even its originators started to use the proper alternative, its time to say goodbye! | |||||
2014-12-11 | decoder/ffpmeg: make variables more local | Max Kellermann | 1 | -3/+2 | |
2014-12-11 | decoder/ffpmeg: simplify ffmpeg_send_packet() | Max Kellermann | 1 | -8/+8 | |