aboutsummaryrefslogtreecommitdiff
path: root/src/replay_gain_info.h
Commit message (Collapse)AuthorAge
* replay_gain_info, ...: use cmath instead of math.h in C++ modeMax Kellermann2013-01-07
| | | | Fixes build problems with mingw32.
* decoder_api.h, ...: add "extern C"Max Kellermann2013-01-07
|
* copyright year 2011Max Kellermann2011-01-29
|
* filter/replay_gain: added option "replaygain_limit"Daniel Seuthe2010-05-30
|
* replay_gain: added mode "auto"Daniel Seuthe2010-04-25
|
* replay_gain: fall back to track gain if album gain is unavailableMax Kellermann2010-02-17
|
* replay_gain_info: allocate the struct staticallyMax Kellermann2010-02-17
| | | | | | 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.
* replay_gain_info: use INFINITY to mark undefined valuesMax Kellermann2010-02-17
| | | | | | | | | The previous patch not only moved code, it also changed the check. Negative gain values seem to be valid after all, there just was the "magic" value 0.0 which means "not available". This patch changes the "magic" value to "INFINITY", and uses the C99 function isinf() to check. It might have been a better idea to use "NAN", but the "NAN" macro is a GNU extension.
* replay_gain_state: moved code to replay_gain_tuple_scale()Max Kellermann2010-02-15
| | | | | Moved (and renamed) the function calc_replay_gain_scale() to replay_gain_info.c.
* replay_gain: added function defined()Max Kellermann2010-02-15
| | | | This function determines whether replay gain data is available.
* replay_gain: moved code to replay_gain_info.cMax Kellermann2010-01-04