aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* PlaylistVector: use std::listMax Kellermann2013-01-03
|
* Directory: initialise in default constructorMax Kellermann2013-01-03
|
* Directory: add constructor and destructorMax Kellermann2013-01-03
|
* Directory: rename struct directory to DirectoryMax Kellermann2013-01-03
|
* database.h: rename to DatabaseSimple.hxxMax Kellermann2013-01-03
|
* database.h: move prototypes to DatabaseGlue.hxxMax Kellermann2013-01-03
|
* database.h: eliminate db_*_song()Max Kellermann2013-01-03
| | | | Use the C++ API.
* playlist_edit: convert to C++Max Kellermann2013-01-03
|
* Directory: turn functions to methodsMax Kellermann2013-01-02
|
* Directory: make the header C++ onlyMax Kellermann2013-01-02
|
* mapper: convert to C++Max Kellermann2013-01-02
|
* song_update: convert to C++Max Kellermann2013-01-02
|
* sticker: convert to C++Max Kellermann2013-01-02
|
* PlaylistInfo: rename class, use std::stringMax Kellermann2013-01-02
|
* PlaylistVector: move struct playlist_metadata to PlaylistInfo.hxxMax Kellermann2013-01-02
|
* db_lock: convert to C++Max Kellermann2013-01-02
|
* don't include stdbool.h in C++ sourcesMax Kellermann2013-01-02
| | | | The "bool" type is built-in.
* {decoder,player}_thread: convert to C++Max Kellermann2013-01-02
|
* *_print: convert to C++Max Kellermann2013-01-02
|
* playlist_vector: convert to C++Max Kellermann2013-01-02
|
* db_save, state_file: convert to C++Max Kellermann2013-01-02
|
* string_util: use const_cast in C++ modeMax Kellermann2013-01-02
|
* update: convert to C++Max Kellermann2013-01-02
|
* playlist_{any,song,queue}: convert to C++Max Kellermann2013-01-02
|
* configure.ac: disable C++ RTTIMax Kellermann2013-01-02
| | | | RTTI adds overhead to the binary, and we don't need that.
* configure.ac: disable C++ exceptionsMax Kellermann2013-01-02
| | | | | We don't use exceptions currently. Since allowing exceptions means a lot of overhead, this commit disables the feature.
* Add tag support for DSD (DSDIFF & DSF) decodersJurgen Kramer2012-10-27
|
* Merge branch 'v0.17.x'Max Kellermann2012-10-05
|\ | | | | | | | | Conflicts: src/PlaylistSave.cxx
| * playlist_song: fix potential charset bug in apply_song_metadata()Max Kellermann2012-10-05
| | | | | | | | The song's URI must be UTF-8, not filesystem character set.
| * playlist_save: use temp2 instead of tempMax Kellermann2012-10-05
| | | | | | | | Fixes minor Windows compatibility problem.
| * decoder/ffmpeg: support planar audioMax Kellermann2012-10-05
| | | | | | | | Implements Mantis feature request 3582.
| * decoder/ffmpeg: fix playback of planar PCM dataMax Kellermann2012-10-05
| | | | | | | | | | Interleaving was completely wrong. This code was never used, so it didn't have an effect.
| * decoder/ffmpeg: move code to copy_interleave_frame2()Max Kellermann2012-10-05
| |
| * decoder/ffmpeg: ignore negative time stampsMax Kellermann2012-10-05
| | | | | | | | Works around assertion failure in decoder_timestamp().
| * decoder/ffmpeg: show unsupported sample format nameMax Kellermann2012-10-05
| | | | | | | | Use av_get_sample_fmt_string() to obtain a human-readable string.
| * decoder/ffmpeg: pass AVSampleFormat to ffmpeg_sample_format()Max Kellermann2012-10-05
| | | | | | | | API simplification.
| * decoder/ffmpeg: remove duplicate sample format error messageMax Kellermann2012-10-05
| |
* | decoder/flac: support FLAC files inside archivesMax Kellermann2012-10-04
| | | | | | | | | | | | Implement the "scan_stream" method that can read tags from any input_stream object. This requires a FLAC__IOCallbacks implementation based on the input_stream API.
* | decoder/flac: move flac_scan_file2() to main plugin fileMax Kellermann2012-10-04
| |
* | input/file: use errno_quark()Max Kellermann2012-10-04
| |
* | PlaylistFile, client_file, tag_id3: don't use g_file_error_quark()Max Kellermann2012-10-04
| | | | | | | | | | | | | | | | | | g_file_error_quark() is meant to be used with the GFileError enum which does not correspond with errno, but must be converted with g_file_error_from_errno(). At the same time, this removes g_strerror() use for g_file_error_quark().
* | decoder/flac: move callbacks to class FLACInputMax Kellermann2012-10-02
| |
* | decoder/flac: add ctor/dtor to struct flac_dataMax Kellermann2012-10-02
| |
* | decoder/flac: add method FLACMetadataChain::Scan()Max Kellermann2012-10-02
| | | | | | | | Merge common code.
* | decoder/flac: don't use FLAC__Metadata_SimpleIteratorMax Kellermann2012-10-02
| | | | | | | | Use the new FLACMetadataIterator C++ class, which is more powerful.
* | decoder/flac: add C++ libFLAC wrappersMax Kellermann2012-10-02
| | | | | | | | | | Not using libFLAC++ because this library adds a lot of overhead due to virtual method calls. This new class library is zero-overhead.
* | decoder/flac: eliminate the obsolete "track number" codeMax Kellermann2012-10-02
| | | | | | | | This has been deprecated by the "embcue" playlist plugin.
* | Merge branch 'v0.17.x'Max Kellermann2012-10-02
|\|
| * OSX: Set mDataByteSize correctly on AudioBuffers during render.Gregory Smith2012-10-02
| |
* | decoder/flac: remove unused function flac_tag_load()Max Kellermann2012-10-02
| |