Home
last modified time | relevance | path

Searched refs:MPC_OLD_GAIN_REF (Results 1 – 15 of 15) sorted by relevance

/dports/audio/p5-Audio-Scan/Audio-Scan-1.01/src/
H A Dmpc.c40 #define MPC_OLD_GAIN_REF 64.82 macro
235 int tmp = (int)((MPC_OLD_GAIN_REF - (int16_t)si->gain_title / 100.) * 256. + .5); in _mpc_read_header_sv7()
241 int tmp = (int)((MPC_OLD_GAIN_REF - (int16_t)si->gain_album / 100.) * 256. + .5); in _mpc_read_header_sv7()
351 …my_hv_store(info, "track_gain", newSVpvf("%2.2f dB", si->gain_title == 0 ? 0 : MPC_OLD_GAIN_REF - … in get_mpcfileinfo()
352 …my_hv_store(info, "album_gain", newSVpvf("%2.2f dB", si->gain_album == 0 ? 0 : MPC_OLD_GAIN_REF - … in get_mpcfileinfo()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/musepack/
H A Dstreaminfo.c138 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_title / 100.) * 256. + .5); in streaminfo_read_header_sv7()
144 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_album / 100.) * 256. + .5); in streaminfo_read_header_sv7()
/dports/emulators/mednafen/mednafen/src/mpcdec/
H A Dstreaminfo.c137 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_title / 100.) * 256. + .5); in streaminfo_read_header_sv7()
143 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_album / 100.) * 256. + .5); in streaminfo_read_header_sv7()
H A Dmpcdec.h96 #define MPC_OLD_GAIN_REF 64.82 macro
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/libmpcdec/
H A Dstreaminfo.c156 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_title / 100.) * 256. + .5); in streaminfo_read_header_sv7()
162 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_album / 100.) * 256. + .5); in streaminfo_read_header_sv7()
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/libmpcdec/
H A Dstreaminfo.c156 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_title / 100.) * 256. + .5); in streaminfo_read_header_sv7()
162 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_album / 100.) * 256. + .5); in streaminfo_read_header_sv7()
/dports/audio/musepack/musepack_src_r475/libmpcdec/
H A Dstreaminfo.c138 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_title / 100.) * 256. + .5); in streaminfo_read_header_sv7()
144 int tmp = (int)((MPC_OLD_GAIN_REF - (mpc_int16_t)si->gain_album / 100.) * 256. + .5); in streaminfo_read_header_sv7()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/musepack/mpc/
H A Dmpcdec.h96 #define MPC_OLD_GAIN_REF 64.82 macro
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/libmpcdec/mpc/
H A Dmpcdec.h96 #define MPC_OLD_GAIN_REF 64.82 macro
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/libmpcdec/mpc/
H A Dmpcdec.h96 #define MPC_OLD_GAIN_REF 64.82 macro
/dports/audio/musepack/musepack_src_r475/include/mpc/
H A Dmpcdec.h96 #define MPC_OLD_GAIN_REF 64.82 macro
/dports/audio/aqualung/aqualung-1.0/src/decoder/
H A Ddec_mpc.c164 float track_gain = MPC_OLD_GAIN_REF - (si->gain_title / 256.0); in mpc_add_rg_meta()
165 float album_gain = MPC_OLD_GAIN_REF - (si->gain_album / 256.0); in mpc_add_rg_meta()
/dports/audio/musicpd/mpd-0.23.6/src/decoder/plugins/
H A DMpcdecDecoderPlugin.cxx144 t.gain = MPC_OLD_GAIN_REF - (gain / 256.); in ImportMpcdecReplayGain()
/dports/audio/cmus/cmus-2.9.1/ip/
H A Dmpc.c316 float g = MPC_OLD_GAIN_REF - gain / 256.f;
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/
H A Dmpc.c199 # define CONVERT_GAIN( mpc_gain ) (MPC_OLD_GAIN_REF - (mpc_gain) / 256.0) in Open()