aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/plugins/MadDecoderPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-10-28decoder/mad: fix negative replay gain valuesMax Kellermann1-1/+1
Negating an unsigned integer does not work.
2014-09-24decoder/mad: move code to tag/MixRamp.cxxMax Kellermann1-5/+2
2014-09-24tag/ApeReplayGain, decoder/mad: move duplicate code to tag/ReplayGain.cxxMax Kellermann1-12/+2
2014-08-29TagHandler: pass SongTime to duration()Max Kellermann1-5/+3
2014-08-29DecoderAPI: pass SignedSongTime to decoder_initialized()Max Kellermann1-15/+24
2014-08-26DecoderAPI: use std::chrono::duration for decoder_seek*()Max Kellermann1-10/+16
For type safety and code readability.
2014-08-26decoder/mad: use integer seek timesMax Kellermann1-10/+9
Avoid roundtrips to floating point.
2014-08-26decoder/mad: move duplicate code to RecoverFrameError()Max Kellermann1-20/+16
2014-08-26decoder/mad: simplify if/else chainMax Kellermann1-20/+18
2014-08-26decoder/mad: make variables more localMax Kellermann1-9/+5
2014-08-26decoder/mad: simplify "return", eliminate checkMax Kellermann1-3/+1
This check was redundant, because we could only exit the loop when ret==DECODE_OK.
2014-08-25decoder/mad: don't reset the xing structMax Kellermann1-3/+1
Not necessary.
2014-08-25decoder/mad: remove unused flag "found_xing"Max Kellermann1-3/+1
2014-08-24decoder/mad: convert enums/macros to constexprMax Kellermann1-22/+17
2014-08-24decoder/mad: make variables more localMax Kellermann1-60/+31
2014-08-19InputStream: move typedef offset_type to Offset.hxxMax Kellermann1-5/+5
Reduce header dependencies.
2014-08-19decoder/mad: check InputStream::KnownSize()Max Kellermann1-2/+2
2014-05-22InputStream: make Seek() always absoluteMax Kellermann1-1/+1
Remove the "whence" parameter that is not actually necessary, and only complicates the InputStream implementations.
2014-01-24Input*: move to input/Max Kellermann1-2/+2
2014-01-24Config*: move to config/Max Kellermann1-1/+1
2014-01-24decoder/*: move to decoder/plugins/Max Kellermann1-1/+1
2014-01-13copyright year 2014Max 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 Kellermann1-12/+2
Move code from the "mad" plugin.
2013-12-14DecoderAPI: add function decoder_skip()Max Kellermann1-14/+1
Move code from the "mad" plugin.
2013-11-28Util/StringUtil: add StringStartsWith()Max Kellermann1-1/+2
Replaces GLib's g_str_has_prefix().
2013-11-28include cleanup using iwyuMax Kellermann1-1/+0
2013-10-26DecoderControl: move code/attributes to new class MixRampInfoMax Kellermann1-15/+8
2013-10-25ReplayGainInfo: refactor to a classMax Kellermann1-2/+2
2013-10-25ReplayGainInfo: use CamelCase for struct nameMax Kellermann1-10/+10
2013-10-23input_stream: rename struct to InputStreamMax Kellermann1-17/+17
2013-10-21decoder: rename the struct to "Decoder"Max Kellermann1-15/+15
2013-10-21decoder_plugin: rename struct to DecoderPluginMax Kellermann1-1/+1
2013-10-20Util/ASCII: add function StringEqualsCaseASCII()Max Kellermann1-6/+7
Replaces GLib's g_ascii_strcasecmp().
2013-10-17InputStream: use int64_t instead of goffsetMax Kellermann1-6/+6
Decouple some more from GLib.
2013-10-02Log: new logging library APIMax Kellermann1-22/+26
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-27DecoderCommand: convert to strictly-typed enumMax Kellermann1-20/+20
2013-09-05Tag, ...: move to libtag.aMax Kellermann1-1/+1
2013-09-05conf.h: remove obsolete headerMax Kellermann1-1/+1
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-05InputLegacy: move functions to the input_stream classMax Kellermann1-8/+7
2013-09-04Tag*: move libtag.a sources to src/tag/Max Kellermann1-2/+2
2013-09-04util/Error: new error passing libraryMax Kellermann1-6/+6
Replaces GLib's GError.
2013-08-04DecoderPlugin: pass config_param referenceMax Kellermann1-1/+1
2013-08-03audio_format: convert to C++Max Kellermann1-4/+4
2013-07-31DecoderAPI: pass rvalue reference to decoder_tag()Max Kellermann1-2/+3
Avoid duplicating the tag.
2013-07-30tag: convert to C++Max Kellermann1-17/+15
2013-07-29audio_check: convert to C++Max Kellermann1-1/+1
2013-07-29tag_handler: convert to C++Max Kellermann1-1/+1
2013-07-28tag_id3: convert to C++Max Kellermann1-5/+1
2013-07-28decoder_api: convert to C++Max Kellermann1-1/+1