aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/plugins/VorbisDecoderPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-01-21config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann1-1/+1
The old struct config_param remains only for top-level string options.
2015-01-01Copyright year 2015Max Kellermann1-1/+1
2014-08-29TagHandler: pass SongTime to duration()Max Kellermann1-2/+4
2014-08-29DecoderAPI: pass SignedSongTime to decoder_initialized()Max Kellermann1-5/+12
2014-08-26decoder/vorbis: use integer seek timesMax Kellermann1-2/+2
2014-08-19InputStream: move typedef offset_type to Offset.hxxMax Kellermann1-1/+1
Reduce header dependencies.
2014-05-22InputStream: make Seek() always absoluteMax Kellermann1-6/+28
Remove the "whence" parameter that is not actually necessary, and only complicates the InputStream implementations.
2014-05-22decoder/vorbis: make VorbisInputStream::input_stream a referenceMax Kellermann1-6/+6
2014-05-22decoder/vorbis: add VorbisInputStream constructorMax Kellermann1-14/+13
2014-05-22decoder/vorbis: rename struct vorbis_input_stream to VorbisInputStreamMax Kellermann1-7/+7
2014-05-22decoder/vorbis: add "restrict" to pointers in vorbis_interleave()Max Kellermann1-2/+2
Allows more compiler optimizations.
2014-05-22decoder/vorbis: log libvorbis version on startupMax Kellermann1-1/+11
2014-05-12InputStream: "protect" attributesMax Kellermann1-1/+1
2014-01-24Input*: move to input/Max Kellermann1-1/+1
2014-01-24decoder/*: move to decoder/plugins/Max Kellermann1-1/+1
2014-01-13copyright year 2014Max Kellermann1-1/+1
2013-11-28include cleanup using iwyuMax Kellermann1-3/+0
2013-10-30*: update copyright year to 2013Max Kellermann1-1/+1
2013-10-28*: use nullptr instead of NULLMax Kellermann1-7/+7
2013-10-25ReplayGainInfo: use CamelCase for struct nameMax Kellermann1-2/+2
2013-10-23input_stream: rename struct to InputStreamMax Kellermann1-9/+9
2013-10-23InputStream: add method Rewind()Max Kellermann1-2/+1
2013-10-21decoder: rename the struct to "Decoder"Max Kellermann1-8/+9
2013-10-21decoder_plugin: rename struct to DecoderPluginMax Kellermann1-1/+1
2013-10-16system/ByteOrder: new library for byte ordering / endianessMax Kellermann1-9/+2
Replacing GLib macros.
2013-10-15Util/Macros: replacement for GLib's G_N_ELEMENTS()Max Kellermann1-1/+2
2013-10-02Log: new logging library APIMax Kellermann1-9/+11
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-27DecoderCommand: convert to strictly-typed enumMax Kellermann1-6/+5
2013-09-05Tag, ...: move to libtag.aMax Kellermann1-1/+1
2013-09-05InputLegacy: move functions to the input_stream classMax Kellermann1-3/+3
2013-09-04util/Error: new error passing libraryMax Kellermann1-7/+7
Replaces GLib's GError.
2013-08-04*: use gcc.h macros instead of GLibMax Kellermann1-1/+1
2013-08-03audio_format: convert to C++Max Kellermann1-5/+5
2013-07-31DecoderAPI: pass rvalue reference to decoder_tag()Max Kellermann1-1/+1
Avoid duplicating the tag.
2013-07-30tag: convert to C++Max Kellermann1-2/+2
2013-07-29audio_check: convert to C++Max Kellermann1-5/+1
2013-07-29tag_handler: convert to C++Max Kellermann1-1/+1
2013-07-28decoder_api: convert to C++Max Kellermann1-1/+1
2013-04-08uri: convert to C++Max Kellermann1-1/+1
2013-01-26input_stream: forward-declare the structMax Kellermann1-0/+1
Hide the definition from C code, to prepare the transition to C++.
2013-01-07input_stream: add method _cheap_seeking()Max Kellermann1-3/+1
Move code from the Vorbis decoder plugin.
2013-01-07decoder/ogg_codec: convert to C++Max Kellermann1-1/+1
2013-01-07decoder/vorbis: convert to C++Max Kellermann1-13/+24
2012-09-25decoder/vorbis: skip 16 bit quantisation, provide float samplesSimon Hosie1-0/+44
Internally the vorbis (non-Tremor) decoder is working in floating point, and it's not really necessary to cut the output back to 16-bit if the soundcard or OS supports higher resolution. The decoder can be trivially modified to bypass its internal quantisation and produce floating-point output, and a separate quantisation can be used as appropriate to the platform.
2012-09-25decoder/vorbis: rename local variablesMax Kellermann1-14/+13
2012-09-25decoder/vorbis: improved support for initial seekMax Kellermann1-1/+1
Call decoder_get_command() before doing anything else.
2012-09-25decoder/vorbis: make variables more localMax Kellermann1-26/+20
2012-09-04decoder/ogg_common: rename to ogg_codec.cMax Kellermann1-3/+3
2012-09-04decoder/ogg_common: pass decoder to _type_detect()Max Kellermann1-1/+1
Allow the function to be cancelled.
2012-09-04decoder/_ogg_common: rename to ogg_common.cMax Kellermann1-1/+1