aboutsummaryrefslogtreecommitdiffstats
path: root/src/replay_gain.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* pcm_utils: moved code to pcm_volume.cMax Kellermann2009-01-071-1/+1
| | | | Moved the software volume code to a separate library.
* replay_gain: don't include os_compat.hMax Kellermann2008-11-111-1/+3
| | | | | os_compat.h is deprecated and should be replaced with well-defined standard headers.
* replay_gain: use GLib instead of utils.h/log.hMax Kellermann2008-11-111-14/+11
| | | | Eliminated deprecated libraries.
* replay_gain: use pcm_volume() to apply replay gainMax Kellermann2008-11-111-37/+2
| | | | | | | The currently replay_gain_apply() implementation duplicates code from pcm_volume(), except that it uses a floating point scale. Eliminate all duplicated code from and make it utilize the pcm_volume() library function. This introduces replay gain support for 24 bit audio.
* replay_gain: converted struct replay_gain_info elements to an arrayMax Kellermann2008-11-111-19/+19
| | | | | Having an array instead of individual variables allows the use of the replay_gain_mode enum as an array index.
* replay_gain: converted replay_gain_mode to an enumMax Kellermann2008-11-111-1/+1
| | | | Prefer C enums over CPP macros.
* replay_gain: removed superfluous author name commentMax Kellermann2008-11-111-1/+0
| | | | The author's name is already mentioned in the copyright declaration.
* replay_gain: no CamelCaseMax Kellermann2008-11-111-30/+31
| | | | Renamed functions and variables.
* replay_gain: renamed sources to replay_gain.c, replay_gain.hMax Kellermann2008-11-111-0/+167
No CamelCase file names.