Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-08-31 | DecoderAPI: use std::min() | Max Kellermann | 1 | -3/+1 | |
2014-08-31 | MusicChunk: remove special case for num_frames==0 | Max Kellermann | 1 | -3/+1 | |
Simply return an empty WritableBuffer, not a nulled one. | |||||
2014-08-29 | DecoderAPI: pass SignedSongTime to decoder_initialized() | Max Kellermann | 1 | -4/+2 | |
2014-08-29 | MusicChunk: use SignedSongTime for the time stamp | Max Kellermann | 1 | -2/+2 | |
2014-08-29 | DecoderControl: use SignedSongTime for the song duration | Max Kellermann | 1 | -1/+3 | |
2014-08-28 | DecoderControl: use std::chrono::duration for start_ms and end_ms | Max Kellermann | 1 | -15/+5 | |
2014-08-28 | DetachedSong: use std::chrono::duration for start_ms and end_ms | Max Kellermann | 1 | -1/+1 | |
2014-08-27 | DecoderControl: use std::chrono::duration for Seek() | Max Kellermann | 1 | -3/+3 | |
2014-08-26 | DecoderAPI: use std::chrono::duration for decoder_seek*() | Max Kellermann | 1 | -20/+4 | |
For type safety and code readability. | |||||
2014-08-26 | DecoderAPI: add decoder_seek_where_frame() | Max Kellermann | 1 | -0/+18 | |
2014-08-26 | DecoderAPI: add decoder_seek_where_ms() | Max Kellermann | 1 | -0/+17 | |
Move to fixed-point integers instead of floating point. | |||||
2014-08-12 | PcmConvert: Convert() returns ConstBuffer | Max Kellermann | 1 | -3/+6 | |
2014-08-12 | MusicChunk: rename struct to MusicChunk | Max Kellermann | 1 | -2/+2 | |
2014-05-22 | DecoderAPI: add function decoder_open_uri() | Max Kellermann | 1 | -0/+32 | |
Move and refactor code from the Wavpack decoder plugin. | |||||
2014-01-24 | Input*: move to input/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -0/+0 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | 1 | -2/+2 | |
From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead. | |||||
2013-12-14 | DecoderAPI: add function decoder_read_full() | Max Kellermann | 1 | -0/+18 | |
Move code from the "mad" plugin. | |||||
2013-12-14 | DecoderAPI: add function decoder_skip() | Max Kellermann | 1 | -0/+16 | |
Move code from the "mad" plugin. | |||||
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -1/+0 | |
2013-11-13 | PcmConvert: add methods Open(), Close() | Max Kellermann | 1 | -3/+7 | |
Replaces Reset() and eliminates the AudioFormat parameters from the Convert() method. | |||||
2013-11-13 | DecoderAPI: stop decoder on MPD error | Max Kellermann | 1 | -0/+4 | |
This commit adds the basic infrastructure for reporting bugs from DecoderAPI.cxx via DecoderThread.cxx to DecoderControl. | |||||
2013-11-13 | DecoderInternal: allocate PcmConvert dynamically | Max Kellermann | 1 | -12/+21 | |
Reduce header dependencies and allow it to be nullptr to disable it. | |||||
2013-11-13 | DecoderInternal: move functions into the class | Max Kellermann | 1 | -6/+6 | |
2013-11-11 | DecoderAPI: add missing math.h include | Max Kellermann | 1 | -0/+1 | |
2013-11-08 | DecoderAPI: log without holding mutex | Max Kellermann | 1 | -2/+2 | |
2013-11-06 | DecoderInternal: wake up the player thread in _flush_chunk() | Max Kellermann | 1 | -4/+0 | |
Merge duplicate code. | |||||
2013-10-28 | MusicChunk: return WritableBuffer | Max Kellermann | 1 | -7/+8 | |
2013-10-28 | decoder_control: rename to DecoderControl | Max Kellermann | 1 | -10/+10 | |
2013-10-26 | DecoderControl: move code/attributes to new class MixRampInfo | Max Kellermann | 1 | -4/+2 | |
2013-10-25 | ReplayGainInfo: refactor to a class | Max Kellermann | 1 | -5/+6 | |
2013-10-25 | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | 1 | -2/+2 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 1 | -12/+11 | |
2013-10-21 | decoder: rename the struct to "Decoder" | Max Kellermann | 1 | -90/+86 | |
2013-10-19 | *: use references instead of pointers | Max Kellermann | 1 | -83/+82 | |
2013-10-19 | *: use nullptr instead of NULL | Max Kellermann | 1 | -38/+38 | |
2013-10-02 | replay_gain_*.h: rename to *.hxx | Max Kellermann | 1 | -1/+1 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -13/+10 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-27 | DecoderControl: convert "enum decoder_state" to strictly-typed enum | Max Kellermann | 1 | -8/+8 | |
2013-09-27 | DecoderCommand: convert to strictly-typed enum | Max Kellermann | 1 | -25/+25 | |
2013-09-26 | MusicBuffer: expose the C++ API | Max Kellermann | 1 | -2/+2 | |
2013-09-26 | MusicPipe: expose the C++ API | Max Kellermann | 1 | -2/+2 | |
2013-09-05 | InputLegacy: move functions to the input_stream class | Max Kellermann | 1 | -7/+7 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -12/+10 | |
Replaces GLib's GError. | |||||
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 1 | -7/+7 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -15/+13 | |
2013-07-31 | DecoderAPI: pass rvalue reference to decoder_tag() | Max Kellermann | 1 | -4/+3 | |
Avoid duplicating the tag. | |||||
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -22/+19 | |