1 /* GStreamer ReplayGain plugin 2 * 3 * Copyright (C) 2006 Rene Stadler <mail@renestadler.de> 4 * 5 * replaygain.h: Plugin providing ReplayGain related elements 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public License 9 * as published by the Free Software Foundation; either version 2.1 of 10 * the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, but 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 20 * 02110-1301 USA 21 */ 22 23 #ifndef __REPLAYGAIN_H__ 24 #define __REPLAYGAIN_H__ 25 26 G_BEGIN_DECLS 27 28 /* Reference level (in dBSPL). The 2001 proposal specifies 83. This was 29 * changed later in all implementations to 89, which is the new, official value: 30 * David Robinson acknowledged the change but didn't update the website yet. */ 31 32 #define RG_REFERENCE_LEVEL 89. 33 34 G_END_DECLS 35 36 #endif /* __REPLAYGAIN_H__ */ 37