aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-09-29Tag: support "AlbumSort"Max Kellermann3-0/+5
The new tag is supported by all decoders that use the tag name table, and the ID3v2 tag "TSOA" maps to it.
2014-09-28storage/nfs: convert file name to UTF-8Max Kellermann1-8/+30
Assume the configured filesystem character set is also used by the NFS server.
2014-09-28storage/nfs: use string::append() instead of string::insert()Max Kellermann1-3/+2
Swap the order of adding the URI and the slash, because appending is cheaper than inserting.
2014-09-28storage/nfs: move code to UriToNfsPath()Max Kellermann1-6/+13
2014-09-28fs/AllocatedPath: add method Steal()Max Kellermann1-0/+8
2014-09-28fs/AllocatedPath: API documentation grammar fixesMax Kellermann1-5/+5
2014-09-27Add MusicBrainz' Release Track Id tagWieland Hoffmann5-0/+11
The Release Track Id uniquely identifies a recording on a release - that is, even if a recording appears twice on a release (meaning that the combination of recording and release id are not enough to figure out which one it is), the release track id will allow differentiating the two. The tag names are taken from https://musicbrainz.org/doc/MusicBrainz_Picard/Tags/Mapping
2014-09-26pcm: --disable-dsd also disables the dsd2pcm libraryMax Kellermann2-1/+11
2014-09-26PcmConvert: eliminate unused local variable "format"Max Kellermann1-12/+2
2014-09-26output/alsa: change a few "dsd" to "dop"Max Kellermann1-4/+4
2014-09-26CommandLine: update copyright yearMax Kellermann1-2/+2
2014-09-26configure.ac: add option to disable the DSD decodersMax Kellermann1-0/+2
Allow building a smaller MPD binary for people who don't need DSD.
2014-09-26playlist/embcue: change name string to "embcue"Max Kellermann1-1/+1
The name "cue" was listed twice in "mpd --version".
2014-09-24decoder/mp4v2: add tag tableMax Kellermann1-10/+19
2014-09-24decoder/mpg123: support ID3v2, ReplayGain and MixRampMax Kellermann1-1/+90
2014-09-24decoder/mpg123: make variables more localMax Kellermann1-20/+11
2014-09-24decoder/flac: pass VorbisComment to flac_parse_mixramp()Max Kellermann3-6/+4
2014-09-24decoder/flac: move code to tag/MixRamp.cxxMax Kellermann3-35/+29
2014-09-24decoder/mad: move code to tag/MixRamp.cxxMax Kellermann3-5/+95
2014-09-24decoder/flac: pass VorbisComment to flac_parse_replay_gain()Max Kellermann3-6/+3
2014-09-24tag/ReplayGain: add VorbisComment parserMax Kellermann4-41/+31
Move code from the Vorbis and FLAC decoder plugins.
2014-09-24tag/ReplayGain: move code to template functionMax Kellermann1-8/+30
2014-09-24decoder/{vorbis,flac}: move duplicate code to tag/VorbisComment.cxxMax Kellermann4-24/+78
2014-09-24tag/ApeReplayGain, decoder/mad: move duplicate code to tag/ReplayGain.cxxMax Kellermann4-27/+82
2014-09-22CommandLine: make all OptionDefs "constexpr"Max Kellermann1-9/+9
2014-09-22DecoderBuffer: struct to classMax Kellermann1-1/+2
2014-09-22DecoderBuffer: convert functions to methodsMax Kellermann3-121/+85
2014-09-22decoder/faad: use DecoderBuffer referencesMax Kellermann1-27/+27
2014-09-22decoder/faad: allocate DecoderBuffer on stackMax Kellermann1-13/+8
2014-09-22DecoderBuffer: export the structMax Kellermann3-58/+28
Eliminates the functions _new() and _free().
2014-09-21DecoderBuffer: make "decoder" constMax Kellermann1-1/+1
2014-09-21DecoderBuffer: convert pointer to referenceMax Kellermann1-5/+5
2014-09-21DecoderBuffer: use class DynamicFifoBufferMax Kellermann1-69/+23
2014-09-21decoder/adplug: log version numberMax Kellermann1-0/+6
2014-09-21decoder/adplug: move the buffer into the loopMax Kellermann1-2/+2
2014-09-21decoder/sndfile: include cleanupMax Kellermann1-1/+0
2014-09-19decoder/audiofile: fix indentMax Kellermann1-1/+1
2014-09-19decoder/sndfile: remove obsolete code commentMax Kellermann1-3/+0
2014-09-19decoder/sndfile: remove debug printf()Max Kellermann1-2/+0
2014-09-19decoder/sndfile: log detailed sf_open_virtual() error messageMax Kellermann1-1/+2
2014-09-19decoder/sndfile: support float and 16 bit samplesMax Kellermann1-4/+32
Support these PCM formats natively, instead of letting libsndfile convert everything to 32 bit.
2014-09-19decoder/sndfile: move sf_readf_int() call to sndfile_read_frames()Max Kellermann1-2/+10
2014-09-19decoder/sndfile: add sndfile_sample_format()Max Kellermann1-1/+9
Prepare for other sample formats.
2014-09-18db/proxy: support empty values in VisitUniqueTags()Max Kellermann1-0/+9
Workaround for assertion failure in PrintUniqueTag().
2014-09-18OutputThread: retain negative mix ratioMax Kellermann1-1/+10
Fixes MixRamp breakage.
2014-09-18command/list: reset used size after the list has been processedAndrzej Rybczak1-0/+1
2014-09-16android/Bridge: add shutdown()Thomas Guillem1-0/+9
Break the mainloop and terminate run call.
2014-09-16CurlInputPlugin: fix crash after second init callThomas Guillem1-0/+1
The second time init was called, http_200_aliases pointed to a freed pointer and leaded to a SEGFAULT.
2014-09-13thread/Posix{Cond,Mutex}: don't ues PTHREAD_*_INITIALIZER on NetBSDMax Kellermann3-1/+29
On NetBSD, PTHREAD_MUTEX_INITIALIZER and PTHREAD_COND_INITIALIZER are not compatible with C++11 "constexpr" (see Mantis ticket 0004110). As a workaround, don't ues "constexpr", and use the functions pthread_mutex_init(), pthread_mutex_destroy(), pthread_cond_init() and pthread_cond_destroy() instead. This adds some runtime overhead, but is portable to POSIX implementations that have awkward initializer macros.
2014-09-09decoder/ffmpeg: use memset() to initialize AVProbeDataMax Kellermann1-0/+6