aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-12-14decoder/flac: VorbisComment_Entry is null-terminatedMax Kellermann1-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-14util/SplitString: new utility classMax Kellermann4-20/+119
To replace g_strdup().
2013-12-14decoder/vorbis: remove useless castMax Kellermann1-1/+1
2013-12-14decoder/mad: use new[] instead of g_malloc()Max Kellermann1-9/+9
2013-12-14DecoderAPI: add function decoder_read_full()Max Kellermann3-12/+31
Move code from the "mad" plugin.
2013-12-14DecoderAPI: add function decoder_skip()Max Kellermann3-14/+25
Move code from the "mad" plugin.
2013-12-13Tag: swap "base" and "add" in method Merge()Max Kellermann1-2/+2
Fixes broken CUE sheet song tags (regression by commmit 7e8d254b).
2013-12-13mixer/alsa: use BlockingCall() instead of EventLoop::AddCall()Max Kellermann1-1/+2
This is safer, and works without epoll(). Fixes a build failure with uClibc, which does not support epoll().
2013-12-10SongUpdate: accept files without metadatamobidyc1-2/+1
If the file was recognized by a decoder plugin, accept it - don't require metadata.
2013-12-10TagFile: add return value API documentationMax Kellermann1-0/+3
2013-12-10output/osx: fix build failureLukas Stabe1-3/+3
2013-12-08CommandLine: refactor config search, use standard directory APIDenis Krjuchkov1-41/+49
2013-12-08Main: use standard directory APIDenis Krjuchkov1-7/+4
2013-12-08ConfigPath: use standard directory APIDenis Krjuchkov1-6/+7
2013-12-08fs: implemented standard directories APIDenis Krjuchkov2-0/+358
2013-12-08TextFile: move to fs subsystemDenis Krjuchkov11-9/+9
2013-12-05util/DynamicFifoBuffer: new class replacing growing_fifoMax Kellermann6-230/+229
2013-12-05fs/FileSystem.hxx: don't define CheckAccess() with mode on WindowsDenis Krjuchkov1-8/+2
2013-12-05db/SimpleDatabasePlugin.cxx: don't use CheckAccess with mode on WindowsDenis Krjuchkov1-2/+5
2013-12-05fs/FileSystem.hxx: add CheckAccess without mode parameterDenis Krjuchkov1-0/+14
2013-12-05fs/Traits.cxx: don't return drive path without trailing separatorDenis Krjuchkov1-0/+4
2013-12-05fs/Traits.hxx: introduce PathTraitsXXX::IsDrive functionDenis Krjuchkov1-2/+16
2013-12-05fs/Charset.cxx: replace \ with / when converting path to UTF-8 on WindowsDenis Krjuchkov1-3/+24
2013-12-05PlaylistSong.cxx: don't use g_build_filenameDenis Krjuchkov1-4/+6
2013-12-05fs/Traits.hxx: add shorter forms of PathTraitsXXX::Build()Denis Krjuchkov1-0/+10
2013-12-05fs/Traits.hxx: add PathTraitsUTF8::GetLength for consistencyDenis Krjuchkov1-0/+5
2013-12-05fs/AllocatedPath.cxx: don't use g_path_get_dirnameDenis Krjuchkov1-1/+1
2013-12-05fs/Traits: implement GetBase/GetParent/Build using templatesDenis Krjuchkov2-22/+88
2013-12-05fs/Traits.cxx: don't return empty string if parent dir is rootDenis Krjuchkov1-3/+5
2013-12-05fs/Traits.hxx: add FindLastSeparator function to PathTraitsXXXDenis Krjuchkov1-0/+19
2013-12-05fs/Traits: improve compatibility between PathTraitsFS and PathTraitsUTF8Denis Krjuchkov2-9/+14
2013-12-05fs/Traits.hxx: add gcc_nonnull_all where applicableDenis Krjuchkov1-3/+3
2013-12-05fs/Traits: split PathTraits type into PathTraitsFS and PathTraitsUTF8Denis Krjuchkov24-90/+95
2013-12-04tag/ApeLoader: use new[]/delete[] instead of g_malloc()/g_free()Max Kellermann1-5/+3
2013-12-04DirectorySave: don't duplicate stringMax Kellermann1-11/+3
Not necessary anymore for playlist_metadata_load().
2013-12-04PlaylistFile: use std::string for temporary string allocationMax Kellermann1-4/+3
2013-12-04Mapper: update API documentationMax Kellermann1-2/+1
2013-12-04IcyMetaDataParser: use new[]/delete[] instead of g_malloc()/g_free()Max Kellermann1-3/+3
2013-12-04TagId3: make variables more localMax Kellermann1-76/+41
2013-12-04TagId3: use std::string for partial string copyMax Kellermann1-3/+4
2013-12-04TagId3: use free() instead of g_free() for libid3tag allocationsMax Kellermann1-3/+3
2013-12-04TagId3: use new[]/delete[] instead of g_malloc()/g_free()Max Kellermann1-11/+6
2013-12-04TagId3: gcc_unlikely instead of G_UNLIKELYMax Kellermann1-4/+2
2013-12-04system/Resolver: use std::string to allocate internal bufferMax Kellermann1-13/+11
No GLib memory allocation.
2013-12-04system/Resolver: sockaddr_to_string() returns std::string()Max Kellermann5-61/+41
No GLib memory allocation.
2013-12-03Tag: destructor calls Clear()Max Kellermann2-11/+3
Eliminate duplicate code.
2013-12-03Tag: use new[]/delete[] instead of g_new()/g_free()Max Kellermann2-11/+4
2013-12-03Tag: remove method AddItem()Max Kellermann2-61/+0
Use class TagBuilder instead.
2013-12-03input/curl: use class TagBuilderMax Kellermann1-4/+10
2013-12-03PaylistTag: use class TagBuilderMax Kellermann5-44/+54