Lines Matching refs:replaygain

85 	RI(flac_cfg.output.replaygain.enable, 1);  in ReadConfig()
86 RI(flac_cfg.output.replaygain.album_mode, 0); in ReadConfig()
87 RI(flac_cfg.output.replaygain.hard_limit, 0); in ReadConfig()
88 RI(flac_cfg.output.replaygain.preamp, 0); in ReadConfig()
90 RI(flac_cfg.output.resolution.replaygain.dither, 0); in ReadConfig()
91 RI(flac_cfg.output.resolution.replaygain.noise_shaping, 1); in ReadConfig()
92 RI(flac_cfg.output.resolution.replaygain.bps_out, 16); in ReadConfig()
103 WI(flac_cfg.output.replaygain.enable); in WriteConfig()
104 WI(flac_cfg.output.replaygain.album_mode); in WriteConfig()
105 WI(flac_cfg.output.replaygain.hard_limit); in WriteConfig()
106 WI(flac_cfg.output.replaygain.preamp); in WriteConfig()
108 WI(flac_cfg.output.resolution.replaygain.dither); in WriteConfig()
109 WI(flac_cfg.output.resolution.replaygain.noise_shaping); in WriteConfig()
110 WI(flac_cfg.output.resolution.replaygain.bps_out); in WriteConfig()
208 Check(IDC_ENABLE, flac_cfg.output.replaygain.enable); in OutputProc()
209 Check(IDC_ALBUM, flac_cfg.output.replaygain.album_mode); in OutputProc()
210 Check(IDC_LIMITER, flac_cfg.output.replaygain.hard_limit); in OutputProc()
212 Check(IDC_DITHERRG, flac_cfg.output.resolution.replaygain.dither); in OutputProc()
217 SendMessage(hamp, TBM_SETPOS, 1, flac_cfg.output.replaygain.preamp+PREAMP_RANGE); in OutputProc()
225 SendMessage(hlist, CB_SETCURSEL, flac_cfg.output.resolution.replaygain.bps_out/8 - 2, 0); in OutputProc()
232 SendMessage(hlist, CB_SETCURSEL, flac_cfg.output.resolution.replaygain.noise_shaping, 0); in OutputProc()
243 flac_cfg.output.replaygain.enable = GetCheck(IDC_ENABLE); in OutputProc()
244 flac_cfg.output.replaygain.album_mode = GetCheck(IDC_ALBUM); in OutputProc()
245 flac_cfg.output.replaygain.hard_limit = GetCheck(IDC_LIMITER); in OutputProc()
246 flac_cfg.output.replaygain.preamp = GetPos(IDC_PREAMP) - PREAMP_RANGE; in OutputProc()
248 flac_cfg.output.resolution.replaygain.dither = GetCheck(IDC_DITHERRG); in OutputProc()
249 flac_cfg.output.resolution.replaygain.noise_shaping = GetSel(IDC_SHAPE); in OutputProc()
250 flac_cfg.output.resolution.replaygain.bps_out = (GetSel(IDC_TO)+2)*8; in OutputProc()