Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-05-22 | InputStream: make Seek() always absolute | Max Kellermann | 15 | -37/+141 | |
Remove the "whence" parameter that is not actually necessary, and only complicates the InputStream implementations. | |||||
2014-05-22 | decoder/vorbis: make VorbisInputStream::input_stream a reference | Max Kellermann | 1 | -6/+6 | |
2014-05-22 | decoder/vorbis: add VorbisInputStream constructor | Max Kellermann | 1 | -14/+13 | |
2014-05-22 | decoder/vorbis: rename struct vorbis_input_stream to VorbisInputStream | Max Kellermann | 1 | -7/+7 | |
2014-05-22 | decoder/vorbis: add "restrict" to pointers in vorbis_interleave() | Max Kellermann | 1 | -2/+2 | |
Allows more compiler optimizations. | |||||
2014-05-22 | decoder/vorbis: log libvorbis version on startup | Max Kellermann | 1 | -1/+11 | |
2014-05-22 | decoder/wavpack: move code to WavpackInput::ReadBytes() | Max Kellermann | 1 | -6/+12 | |
2014-05-22 | decoder/wavpack: convert WavpackInput attributes to references | Max Kellermann | 1 | -12/+12 | |
2014-05-22 | decoder/wavpack: move wavpack_input_init into struct WavpackInput | Max Kellermann | 1 | -16/+7 | |
2014-05-22 | decoder/wavpack: wavpack_open_wvc() returns WavpackInput* | Max Kellermann | 1 | -14/+12 | |
2014-05-22 | DecoderAPI: add function decoder_open_uri() | Max Kellermann | 3 | -18/+43 | |
Move and refactor code from the Wavpack decoder plugin. | |||||
2014-05-22 | decoder/wavpack: rename struct wavpack_input to WavpackInput | Max Kellermann | 1 | -8/+8 | |
2014-05-12 | InputStream: "protect" attributes | Max Kellermann | 10 | -27/+27 | |
2014-05-11 | InputStream: add virtual destructor | Max Kellermann | 2 | -4/+4 | |
Replaces the method Close(). | |||||
2014-05-11 | InputStream: convert to class | Max Kellermann | 9 | -13/+14 | |
2014-04-29 | decoder/OggUtil: allow skipping up to 32 kB after seek | Max Kellermann | 1 | -1/+1 | |
Fixes missing song length on high-latency Opus files. According to tests with 320 kbit/s opus files with 60ms packets, we need to skip up to 29 kB. | |||||
2014-04-09 | decoder/sndfile: work around libsndfile bug on partial read | Marcello Desantis | 1 | -6/+20 | |
2014-03-18 | decoder/ffmpeg: handle unknown stream start time | Max Kellermann | 1 | -2/+25 | |
2014-03-18 | decoder/ffmpeg: pass AVSEEK_FLAG_ANY to av_seek_frame() | Max Kellermann | 1 | -1/+1 | |
This corrects a major mistake from commit 724a59aa - there was one small thing that commit was supposed to do, and it failed. AV_TIME_BASE is not a seek flag. | |||||
2014-03-06 | decoder/gme: fix memory leak in container_scan() | Max Kellermann | 1 | -0/+1 | |
2014-02-24 | decoder/gme: use free() instead of g_free() | Max Kellermann | 1 | -1/+1 | |
2014-02-24 | DecoderPlugin: free the container_scan() return value with delete[] | Max Kellermann | 2 | -4/+4 | |
2014-02-22 | decoder/opus: use new[] instead of g_malloc() | Max Kellermann | 1 | -6/+2 | |
2014-02-07 | DecoderPlugin: pass Path instance to file_decode() and scan_file() | Max Kellermann | 13 | -72/+91 | |
2014-02-07 | DecoderThread: use only DetachedSong::GetRealURI() | Max Kellermann | 1 | -4/+2 | |
Don't use the mapper - all DetachedSong instances we get have already been mapped. | |||||
2014-02-07 | DecoderThread: pass Path object around for local song files | Max Kellermann | 1 | -21/+27 | |
2014-02-07 | fixed possible format_context not closed in ffmpeg_decode | geneticdrift | 1 | -1/+4 | |
2014-01-24 | ConfigGlobal: add config_find_block() | Max Kellermann | 1 | -26/+1 | |
Merge duplicate code. | |||||
2014-01-24 | Input*: move to input/ | Max Kellermann | 19 | -20/+20 | |
2014-01-24 | Client*: move to client/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | Config*: move to config/ | Max Kellermann | 3 | -4/+4 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 97 | -26/+3040 | |
2014-01-15 | decoder/ffmpeg: support libav v10_alpha1 | Max Kellermann | 1 | -1/+11 | |
2014-01-15 | decoder/ffmpeg: include cleanup | Max Kellermann | 2 | -4/+1 | |
2014-01-15 | decoder/ffmpeg: check for av_samples_get_buffer_size() errors | Max Kellermann | 1 | -0/+3 | |
Fixes potential nullptr dereference. | |||||
2014-01-14 | decoder/ffmpeg: check for av_samples_get_buffer_size() errors | Max Kellermann | 1 | -0/+3 | |
Fixes potential nullptr dereference. | |||||
2014-01-14 | decoder/sidplay: use free() instead of g_free() | Max Kellermann | 1 | -2/+2 | |
This pointer was allocated by libc, not by GLib. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 78 | -78/+78 | |
2014-01-08 | decoder/faad: fix memory leak | Max Kellermann | 1 | -0/+2 | |
2014-01-08 | tag/TagBuilder: overload Commit() returning a Tag object | Max Kellermann | 4 | -11/+9 | |
2014-01-08 | tag/TagBuilder: rename Commit() to CommitNew() | Max Kellermann | 1 | -1/+1 | |
2014-01-07 | util/Alloc: new library replacing GLib's g_malloc() | Max Kellermann | 2 | -5/+7 | |
2014-01-06 | DecoderBuffer: _read() returns ConstBuffer object | Max Kellermann | 1 | -46/+37 | |
2014-01-06 | DecoderBuffer: add method _clear() | Max Kellermann | 1 | -8/+3 | |
2014-01-06 | decoder/faad: make variables more local | Max Kellermann | 1 | -47/+31 | |
2014-01-06 | decoder/faad: eliminate local variable "ret" | Max Kellermann | 1 | -5/+2 | |
2013-12-20 | fix FfmpegDecoderPlugin to use relative timestamps | Steven O'Brien | 1 | -4/+6 | |
2013-12-14 | decoder/flac: simplify the comment parsers | Max Kellermann | 1 | -30/+26 | |
2013-12-14 | decoder/flac: VorbisComment_Entry is null-terminated | Max Kellermann | 1 | -19/+6 | |
Don't duplicate the buffer just to null-terminate the string. According to libFLAC API documentation, the string is already null-terminated. | |||||
2013-12-14 | util/SplitString: new utility class | Max Kellermann | 2 | -20/+11 | |
To replace g_strdup(). |