Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-10-30 | *: update copyright year to 2013 | Max Kellermann | 1 | -1/+1 | |
2013-10-26 | DecoderControl: move code/attributes to new class MixRampInfo | Max Kellermann | 1 | -5/+2 | |
2013-10-25 | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | 1 | -2/+2 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 1 | -2/+2 | |
2013-10-21 | decoder: rename the struct to "Decoder" | Max Kellermann | 1 | -2/+2 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -4/+4 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-27 | DecoderCommand: convert to strictly-typed enum | Max Kellermann | 1 | -8/+7 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -8/+7 | |
Replaces GLib's GError. | |||||
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -12/+12 | |
2013-07-31 | Tag: add method Clear() | Max Kellermann | 1 | -10/+3 | |
Allow reusing Tag instances. | |||||
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -2/+1 | |
2013-07-30 | pcm_buffer: convert to C++ | Max Kellermann | 1 | -4/+1 | |
2013-07-29 | audio_check: convert to C++ | Max Kellermann | 1 | -4/+1 | |
2013-05-06 | decoder/FLAC*: rename files and symbols to Flac* | Denis Krjuchkov | 1 | -4/+4 | |
2013-01-05 | DecoderAPI: _replay_gain() returns void | Max Kellermann | 1 | -3/+2 | |
Let the function decoder_replay_gain() update decoder_control::replay_gain_db instead of letting each decoder plugin take care for that. | |||||
2012-10-02 | decoder/flac: move callbacks to class FLACInput | Max Kellermann | 1 | -10/+2 | |
2012-10-02 | decoder/flac: add ctor/dtor to struct flac_data | Max Kellermann | 1 | -20/+11 | |
2012-10-02 | decoder/flac: eliminate the obsolete "track number" code | Max Kellermann | 1 | -1/+1 | |
This has been deprecated by the "embcue" playlist plugin. | |||||
2012-10-02 | decoder/flac: use C++ compiler | Max Kellermann | 1 | -11/+14 | |
2012-09-04 | decoder/_ogg_common: rename to ogg_common.c | Max Kellermann | 1 | -1/+1 | |
2012-02-11 | decoder/flac: use error messages from libFLAC | Max Kellermann | 1 | -15/+2 | |
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2010-05-08 | mixramp: Adjust MixRamp threshold to account for ReplayGain. | Tim Phipps | 1 | -2/+4 | |
2010-03-21 | Add support for MixRamp tags | Tim Phipps | 1 | -5/+6 | |
Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading. | |||||
2010-02-17 | replay_gain_info: allocate the struct statically | Max Kellermann | 1 | -6/+3 | |
Don't allocate each replay_gain_info object on the heap. Those objects who held a pointer now store a full replay_gain_info object. This reduces the number of allocations and heap fragmentation. | |||||
2010-01-06 | decoder/flac: support streams without STREAMINFO block | Max Kellermann | 1 | -1/+40 | |
2010-01-06 | decoder/flac: pass bits_per_sample to flac_sample_format() | Max Kellermann | 1 | -3/+3 | |
Easier to reuse the function. | |||||
2010-01-06 | decoder/flac: moved decoder initialization to _flac_common.c | Max Kellermann | 1 | -20/+12 | |
Invoke decoder_initialized() in the libFLAC metadata callback. This merges code from the FLAC and the OggFLAC decoder plugin into the common library. | |||||
2010-01-06 | decoder/flac: remember audio_format, not stream_info | Max Kellermann | 1 | -12/+28 | |
2010-01-06 | decoder/flac: removed CUE sheet support | Max Kellermann | 1 | -53/+0 | |
This feature has been moved to the "flac" playlist plugin. | |||||
2010-01-04 | decoder_api: added function decoder_replay_gain() | Max Kellermann | 1 | -9/+8 | |
This function replaces the replay_gain_info parameter for decoder_data(). This allows the decoder to announce replay gain changes, instead of having to pass the same object over and over. | |||||
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-26 | decoder_api: added function decoder_timestamp() | Max Kellermann | 1 | -8/+1 | |
Remove the data_time parameter from decoder_data(). This patch eliminates the timestamp counting in most decoder plugins, because the MPD core will do it automatically by default. | |||||
2009-12-02 | audio_format: changed "bits" to "enum sample_format" | Max Kellermann | 1 | -2/+25 | |
This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value. | |||||
2009-11-19 | decoder/flac: fixed compiler warning | Max Kellermann | 1 | -3/+1 | |
Removed the "vtrack" local variable (which triggered a gcc warning because it was after the newly introduced NULL check), and run strtol() on the original parameter. | |||||
2009-11-18 | decoder/flac: fixed NULL pointer dereference in CUE code | Max Kellermann | 1 | -0/+2 | |
The function flac_vtrack_tnum() was missing a strrchr()==NULL check. | |||||
2009-11-14 | decoder: use audio_format_init_checked() | Max Kellermann | 1 | -9/+9 | |
Let the audio_check library verify the audio format in all (relevant, i.e. non-hardcoded) plugins. | |||||
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -0/+1 | |
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue. | |||||
2009-11-11 | decoder/flac: moved code to flac_data_get_audio_format() | Max Kellermann | 1 | -7/+28 | |
Remove the audio_format attribute, add "frame_size" instead. The audio_format initialization and check is moved both to flac_data_get_audio_format(). | |||||
2009-11-11 | decoder/flac: use frame header instead of audio_format | Max Kellermann | 1 | -3/+3 | |
When calculating the properties of the frame, use sample_rate and other information from the frame header instead of the stored audio_format object. | |||||
2009-11-11 | decoder/flac: calculate time stamp from current frame | Max Kellermann | 1 | -2/+9 | |
Don't update a float timestamp, this will make imprecisions add up after a while. We already have the number of the current frame, let's just calculate the float timestamp from that for every decoder_data() command. For this, we need to add the attribute "first_frame", for CUE sheet songs. | |||||
2009-11-11 | decoder/flac: calculate bit rate in flac_common_write() | Max Kellermann | 1 | -3/+10 | |
Removed the "bit_rate" attribute from the flac_data struct. Pass the number of bytes since the last call to flac_common_write(), and let it calculate the bit rate. | |||||
2009-11-11 | decoder/flac: store the whole stream info object, not duration | Max Kellermann | 1 | -1/+4 | |
We don't want to work with floating point values if possible. Get the integer number of frames from the FLAC__StreamMetadata_StreamInfo object, and convert it into a float duration on demand. This patch adds a check if the STREAMINFO packet has been received yet. | |||||
2009-11-11 | decoder/flac: keep track of current frame number | Max Kellermann | 1 | -0/+3 | |
We need this for more exact end-of-subsong detection for CUE files. | |||||
2009-11-11 | decoder/flac: moved code to flac_pcm.c | Max Kellermann | 1 | -81/+1 | |
2009-11-11 | decoder/flac: moved code to flac_metadata.c | Max Kellermann | 1 | -164/+1 | |
2009-11-11 | decoder/flac: return replay_gain_info object from helper function | Max Kellermann | 1 | -28/+24 | |
Make the function more generic by not passing "struct flac_data" to it. | |||||
2009-11-11 | decoder/flac: merged some code into flac_tag_apply_metadata() | Max Kellermann | 1 | -1/+20 | |
2009-11-10 | decoder/flac: pass VorbisComment to comments_to_tag() | Max Kellermann | 1 | -7/+5 | |
2009-11-10 | decoder/flac: use pcm_buffer instead of fixed buffer | Max Kellermann | 1 | -37/+27 | |
This is a great simplification for flac_common_write(), because we can convert and submit all of the buffer in one turn. No more partial buffers with complicated formulas. |