aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-10-26DecoderControl: move code/attributes to new class MixRampInfoMax Kellermann4-43/+27
2013-10-25ReplayGainInfo: refactor to a classMax Kellermann6-12/+10
2013-10-25ReplayGainInfo: use CamelCase for struct nameMax Kellermann12-65/+57
2013-10-24decoder/opus: support replay gainMax Kellermann3-1/+24
Parse the R128_TRACK_GAIN comment string.
2013-10-24decoder/Opus: implement seekingMax Kellermann3-6/+49
2013-10-24decoder/opus: provide time stampsMax Kellermann1-0/+5
Call decoder_timestamp(). This is not necessary currently, but will be as soon as we implement seeking.
2013-10-24decoder/opus: show song duration during playbackMax Kellermann1-1/+57
This requires seeking to the end-of-stream, checking its granulepos, and then seeking back to the previous file position. We do this only for local files.
2013-10-24decoder/opus: call ogg_stream_reset() in OggSeekPageAtOffset()Max Kellermann1-0/+4
2013-10-24decoder/opus: move code to OggSeekPageAtOffset()Max Kellermann1-4/+11
2013-10-24decoder/opus: move SeekFindEOS() to OggFind.cxxMax Kellermann3-19/+31
2013-10-24decoder/opus: make opus_sample_rate constexprMax Kellermann1-1/+1
2013-10-24decoder/opus: use std::copy_n() instead of memcpy()Max Kellermann1-2/+3
2013-10-24decoder/opus: support all core tag namesMax Kellermann1-0/+5
2013-10-24decoder/opus: move code to ParseOpusTagName()Max Kellermann1-1/+8
2013-10-24decoder/opus: use delete[] for the OpusReader::ReadString() resultMax Kellermann1-1/+1
2013-10-23decoder/wavpack: move variable declarationsMax Kellermann1-53/+34
2013-10-23input_stream: rename struct to InputStreamMax Kellermann28-243/+244
2013-10-23InputStream: add method Rewind()Max Kellermann4-19/+7
2013-10-22decoder/flac: fix tag name comparisonMax Kellermann1-1/+1
2013-10-21decoder: rename the struct to "Decoder"Max Kellermann32-118/+124
2013-10-21decoder_plugin: rename struct to DecoderPluginMax Kellermann42-46/+46
2013-10-21decoder/modplug: use WritableBuffer instead of GByteArrayMax Kellermann1-31/+30
Eliminate the temporary buffer, do I/O right into the WritableBuffer.
2013-10-21decoder/modplug: move code to LoadModPlugFile()Max Kellermann1-21/+17
2013-10-21Util/ASCII: add StringEqualsCaseASCII() overload with lengthMax Kellermann2-2/+4
Replaces GLib's g_ascii_strncasecmp().
2013-10-20Util/ASCII: add function StringEqualsCaseASCII()Max Kellermann1-6/+7
Replaces GLib's g_ascii_strcasecmp().
2013-10-20TagType: rename enum tag_type to TagTypeMax Kellermann7-11/+11
2013-10-20decoder/sidplay: add header fileMax Kellermann2-0/+26
2013-10-20decoder/sidplay: update file nameMax Kellermann1-0/+0
2013-10-19*: use nullptr instead of NULLMax Kellermann3-58/+58
2013-10-19decoder/mpg123: use const_cast instead of g_strdup()Max Kellermann1-4/+2
2013-10-19decoder/mikmod: use const_cast instead of g_strdup()Max Kellermann1-8/+8
2013-10-19util/FormatString: new library to replace g_strdup_printf()Max Kellermann1-3/+3
2013-10-19decoder/gme,input/curl,...: use static buffers instead of g_strdup_printf()Max Kellermann3-29/+28
2013-10-19decoder/modplug: Add "loop_count" parameterSebastian Thorarensen1-1/+16
The "loop_count" configuration parameter allows the user to set how many times a module with backward loops shall loop. "0" (the default) means a module is not allowed to use backward loops at all. "-1" enables inifinite looping.
2013-10-18decoder/mikmod: Add loop configuration parameterSebastian Thorarensen1-2/+3
This patch allows the user to configure the mikmod decoder plugin to loop modules. It adds a configuration parameter to the mikmod decoder called "loop" which can be "no" (the old behaviour, default) or "yes" to allow modules to use backward loops.
2013-10-17fs/Path: rename to AllocatedPathMax Kellermann1-4/+5
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object.
2013-10-17InputStream: use int64_t instead of goffsetMax Kellermann8-38/+37
Decouple some more from GLib.
2013-10-16decoder/wildmidi: remove suport for libwildmidi 0.2.2 or olderMax Kellermann1-4/+0
2013-10-16system/ByteOrder: new library for byte ordering / endianessMax Kellermann4-29/+23
Replacing GLib macros.
2013-10-16util/byte_reverse: convert to C++Max Kellermann1-4/+1
2013-10-15Util/Macros: replacement for GLib's G_N_ELEMENTS()Max Kellermann5-10/+10
2013-10-15gcc.h: rename to Compiler.hMax Kellermann4-4/+4
2013-10-14decoder/modplug: fix include directoryFlorian Schlichting1-1/+1
2013-10-02replay_gain_*.h: rename to *.hxxMax Kellermann2-2/+3
2013-10-02Log: new logging library APIMax Kellermann31-230/+424
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-27DecoderCommand: convert to strictly-typed enumMax Kellermann23-135/+129
2013-09-26TagHandler: use a TagBuilder internallyMax Kellermann3-14/+17
Reduce heap allocator overhead.
2013-09-26decoder/modplug: fix include directoryMax Kellermann1-1/+3
Since Debian package 1:0.8.8.4-4, the pkg-config file does not contain -I/usr/include/libmodplug anymore, and we need to add the "libmodplug/" prefix to the #include line.
2013-09-05Tag, ...: move to libtag.aMax Kellermann23-28/+25
2013-09-05mpd_error.h: remove obsolete headerMax Kellermann1-3/+3
Migrate the remaining callers to FatalError().