Home
last modified time | relevance | path

Searched refs:loudness (Results 1 – 25 of 1368) sorted by relevance

12345678910>>...55

/dports/audio/mixxx/mixxx-2.3.0/src/effects/builtin/
H A Dloudnesscontoureffect.cpp36 loudness->setId("loudness"); in getManifest()
37 loudness->setName(QObject::tr("Loudness")); in getManifest()
39 loudness->setDescription(QObject::tr( in getManifest()
45 loudness->setNeutralPointOnScale(1); in getManifest()
46 loudness->setDefault(-kMaxLoGain / 2); in getManifest()
47 loudness->setMinimum(-kMaxLoGain); in getManifest()
48 loudness->setMaximum(0); in getManifest()
122 double loudness = m_pLoudness->value(); in processChannel() local
125 filterGainDb = loudness; in processChannel()
134 pState->m_oldLoudness = loudness; in processChannel()
[all …]
/dports/math/kfr/kfr-4.2.1/tools/
H A Debu_test.cpp83 ebu_r128<float> loudness(48000, speakers); in main() local
87 for (size_t i = 0; i < length / loudness.packet_size(); i++) in main()
92 channels.push_back(data[ch].slice(i * loudness.packet_size(), loudness.packet_size())); in main()
94 loudness.process_packet(channels); in main()
95 loudness.get_values(M, S, I, RL, RH); in main()
103 univector_dyn<float>(loudness.packet_size())); in main()
105 loudness.process_packet(channels); in main()
107 loudness.get_values(dummyM, dummyS, dummyI, RL, RH); in main()
/dports/multimedia/mlt7-qt5/mlt-7.0.1/src/modules/plus/
H A Dfilter_dynamic_loudness.yml11 description: Dynamically correct audio loudness as recommended by EBU R128.
13 This filter adjusts the level of the audio based on the loudness of the input.
14 It performs loudness measurement over a specified sliding window of time.
16 measured loudness and the target loudness in order to achieve the desired
17 loudness.
24 The target program loudness in LUFS (Loudness Units Full Scale).
36 The duration of time in seconds over which the loudness is calculated.
72 The program loudness measured on the input over the duration of the
89 The number of times the filter has reset the loudness measurement. The
H A Dfilter_loudness_meter.c117 double loudness = 0.0; in analyze_audio() local
123 result = ebur128_loudness_global( pdata->r128, &loudness ); in analyze_audio()
124 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
126 mlt_properties_set_double( properties, "program", loudness ); in analyze_audio()
132 result = ebur128_loudness_shortterm( pdata->r128, &loudness ); in analyze_audio()
133 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
135 mlt_properties_set_double( properties, "shortterm", loudness ); in analyze_audio()
141 result = ebur128_loudness_momentary( pdata->r128, &loudness ); in analyze_audio()
142 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
144 mlt_properties_set_double( properties, "momentary", loudness ); in analyze_audio()
/dports/multimedia/mlt7/mlt-7.0.1/src/modules/plus/
H A Dfilter_dynamic_loudness.yml11 description: Dynamically correct audio loudness as recommended by EBU R128.
13 This filter adjusts the level of the audio based on the loudness of the input.
14 It performs loudness measurement over a specified sliding window of time.
16 measured loudness and the target loudness in order to achieve the desired
17 loudness.
24 The target program loudness in LUFS (Loudness Units Full Scale).
36 The duration of time in seconds over which the loudness is calculated.
72 The program loudness measured on the input over the duration of the
89 The number of times the filter has reset the loudness measurement. The
H A Dfilter_loudness_meter.c117 double loudness = 0.0; in analyze_audio() local
123 result = ebur128_loudness_global( pdata->r128, &loudness ); in analyze_audio()
124 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
126 mlt_properties_set_double( properties, "program", loudness ); in analyze_audio()
132 result = ebur128_loudness_shortterm( pdata->r128, &loudness ); in analyze_audio()
133 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
135 mlt_properties_set_double( properties, "shortterm", loudness ); in analyze_audio()
141 result = ebur128_loudness_momentary( pdata->r128, &loudness ); in analyze_audio()
142 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
144 mlt_properties_set_double( properties, "momentary", loudness ); in analyze_audio()
/dports/multimedia/mlt6-qt5/mlt-6.26.1/src/modules/plus/
H A Dfilter_dynamic_loudness.yml12 description: Dynamically correct audio loudness as recommended by EBU R128.
14 This filter adjusts the level of the audio based on the loudness of the input.
15 It performs loudness measurement over a specified sliding window of time.
17 measured loudness and the target loudness in order to achieve the desired
18 loudness.
25 The target program loudness in LUFS (Loudness Units Full Scale).
37 The duration of time in seconds over which the loudness is calculated.
73 The program loudness measured on the input over the duration of the
90 The number of times the filter has reset the loudness measurement. The
H A Dfilter_loudness_meter.c117 double loudness = 0.0; in analyze_audio() local
123 result = ebur128_loudness_global( pdata->r128, &loudness ); in analyze_audio()
124 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
126 mlt_properties_set_double( properties, "program", loudness ); in analyze_audio()
132 result = ebur128_loudness_shortterm( pdata->r128, &loudness ); in analyze_audio()
133 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
135 mlt_properties_set_double( properties, "shortterm", loudness ); in analyze_audio()
141 result = ebur128_loudness_momentary( pdata->r128, &loudness ); in analyze_audio()
142 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
144 mlt_properties_set_double( properties, "momentary", loudness ); in analyze_audio()
/dports/multimedia/mlt6/mlt-6.26.1/src/modules/plus/
H A Dfilter_dynamic_loudness.yml12 description: Dynamically correct audio loudness as recommended by EBU R128.
14 This filter adjusts the level of the audio based on the loudness of the input.
15 It performs loudness measurement over a specified sliding window of time.
17 measured loudness and the target loudness in order to achieve the desired
18 loudness.
25 The target program loudness in LUFS (Loudness Units Full Scale).
37 The duration of time in seconds over which the loudness is calculated.
73 The program loudness measured on the input over the duration of the
90 The number of times the filter has reset the loudness measurement. The
H A Dfilter_loudness_meter.c117 double loudness = 0.0; in analyze_audio() local
123 result = ebur128_loudness_global( pdata->r128, &loudness ); in analyze_audio()
124 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
126 mlt_properties_set_double( properties, "program", loudness ); in analyze_audio()
132 result = ebur128_loudness_shortterm( pdata->r128, &loudness ); in analyze_audio()
133 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
135 mlt_properties_set_double( properties, "shortterm", loudness ); in analyze_audio()
141 result = ebur128_loudness_momentary( pdata->r128, &loudness ); in analyze_audio()
142 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
144 mlt_properties_set_double( properties, "momentary", loudness ); in analyze_audio()
/dports/multimedia/py-mlt6/mlt-6.26.1/src/modules/plus/
H A Dfilter_dynamic_loudness.yml12 description: Dynamically correct audio loudness as recommended by EBU R128.
14 This filter adjusts the level of the audio based on the loudness of the input.
15 It performs loudness measurement over a specified sliding window of time.
17 measured loudness and the target loudness in order to achieve the desired
18 loudness.
25 The target program loudness in LUFS (Loudness Units Full Scale).
37 The duration of time in seconds over which the loudness is calculated.
73 The program loudness measured on the input over the duration of the
90 The number of times the filter has reset the loudness measurement. The
H A Dfilter_loudness_meter.c117 double loudness = 0.0; in analyze_audio() local
123 result = ebur128_loudness_global( pdata->r128, &loudness ); in analyze_audio()
124 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
126 mlt_properties_set_double( properties, "program", loudness ); in analyze_audio()
132 result = ebur128_loudness_shortterm( pdata->r128, &loudness ); in analyze_audio()
133 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
135 mlt_properties_set_double( properties, "shortterm", loudness ); in analyze_audio()
141 result = ebur128_loudness_momentary( pdata->r128, &loudness ); in analyze_audio()
142 if( result == EBUR128_SUCCESS && loudness != HUGE_VAL && loudness != -HUGE_VAL ) in analyze_audio()
144 mlt_properties_set_double( properties, "momentary", loudness ); in analyze_audio()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/media/i2c/
H A Dtda7432.c50 static int loudness; /* disable loudness by default */ variable
54 module_param(loudness, int, S_IRUGO);
55 MODULE_PARM_DESC(loudness, "Turn loudness on(1) else off(0). Default is off(0).");
247 if (loudness) /* Turn loudness on? */ in tda7432_set()
254 buf[8] = loudness; in tda7432_set()
307 if (loudness) /* Turn on the loudness bit */ in tda7432_s_ctrl()
381 if (loudness < 0 || loudness > 15) { in tda7432_probe()
383 if (loudness < 0) in tda7432_probe()
384 loudness = 0; in tda7432_probe()
385 if (loudness > 15) in tda7432_probe()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/media/i2c/
H A Dtda7432.c50 static int loudness; /* disable loudness by default */ variable
54 module_param(loudness, int, S_IRUGO);
55 MODULE_PARM_DESC(loudness, "Turn loudness on(1) else off(0). Default is off(0).");
247 if (loudness) /* Turn loudness on? */ in tda7432_set()
254 buf[8] = loudness; in tda7432_set()
307 if (loudness) /* Turn on the loudness bit */ in tda7432_s_ctrl()
381 if (loudness < 0 || loudness > 15) { in tda7432_probe()
383 if (loudness < 0) in tda7432_probe()
384 loudness = 0; in tda7432_probe()
385 if (loudness > 15) in tda7432_probe()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/media/i2c/
H A Dtda7432.c50 static int loudness; /* disable loudness by default */ variable
54 module_param(loudness, int, S_IRUGO);
55 MODULE_PARM_DESC(loudness, "Turn loudness on(1) else off(0). Default is off(0).");
247 if (loudness) /* Turn loudness on? */ in tda7432_set()
254 buf[8] = loudness; in tda7432_set()
307 if (loudness) /* Turn on the loudness bit */ in tda7432_s_ctrl()
381 if (loudness < 0 || loudness > 15) { in tda7432_probe()
383 if (loudness < 0) in tda7432_probe()
384 loudness = 0; in tda7432_probe()
385 if (loudness > 15) in tda7432_probe()
[all …]
/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dsbc.c85 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
102 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
104 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb]; in ff_sbc_calculate_bits()
105 if (loudness > 0) in ff_sbc_calculate_bits()
106 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
108 bitneed[ch][sb] = loudness; in ff_sbc_calculate_bits()
167 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
186 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
189 if (loudness > 0) in ff_sbc_calculate_bits()
190 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dsbc.c85 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
102 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
104 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb]; in ff_sbc_calculate_bits()
105 if (loudness > 0) in ff_sbc_calculate_bits()
106 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
108 bitneed[ch][sb] = loudness; in ff_sbc_calculate_bits()
167 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
186 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
189 if (loudness > 0) in ff_sbc_calculate_bits()
190 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
[all …]
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavcodec/
H A Dsbc.c85 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
102 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
104 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb]; in ff_sbc_calculate_bits()
105 if (loudness > 0) in ff_sbc_calculate_bits()
106 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
108 bitneed[ch][sb] = loudness; in ff_sbc_calculate_bits()
167 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
186 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
189 if (loudness > 0) in ff_sbc_calculate_bits()
190 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavcodec/
H A Dsbc.c85 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
102 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
104 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb]; in ff_sbc_calculate_bits()
105 if (loudness > 0) in ff_sbc_calculate_bits()
106 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
108 bitneed[ch][sb] = loudness; in ff_sbc_calculate_bits()
167 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
186 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
189 if (loudness > 0) in ff_sbc_calculate_bits()
190 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/
H A Dsbc.c85 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
102 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
104 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb]; in ff_sbc_calculate_bits()
105 if (loudness > 0) in ff_sbc_calculate_bits()
106 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
108 bitneed[ch][sb] = loudness; in ff_sbc_calculate_bits()
167 int bitneed[2][8], loudness, max_bitneed, bitcount, slicecount, bitslice; in ff_sbc_calculate_bits() local
186 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb]; in ff_sbc_calculate_bits()
189 if (loudness > 0) in ff_sbc_calculate_bits()
190 bitneed[ch][sb] = loudness / 2; in ff_sbc_calculate_bits()
[all …]
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/hw/xfree86/os-support/solaris/
H A Dsun_bell.c46 xf86OSRingBell(int loudness, int pitch, int duration) in xf86OSRingBell() argument
62 if ((loudness <= 0) || (pitch <= 0) || (duration <= 0)) { in xf86OSRingBell()
103 loudness = max(0, loudness); in xf86OSRingBell()
104 loudness = min(loudness, 100); in xf86OSRingBell()
108 freq, loudness, duration, repeats); in xf86OSRingBell()
116 audioInfo.play.gain = min(AUDIO_MAX_GAIN, AUDIO_MAX_GAIN * loudness / 100); in xf86OSRingBell()
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/hw/xfree86/os-support/solaris/
H A Dsun_bell.c46 xf86OSRingBell(int loudness, int pitch, int duration) in xf86OSRingBell() argument
62 if ((loudness <= 0) || (pitch <= 0) || (duration <= 0)) { in xf86OSRingBell()
103 loudness = max(0, loudness); in xf86OSRingBell()
104 loudness = min(loudness, 100); in xf86OSRingBell()
108 freq, loudness, duration, repeats); in xf86OSRingBell()
116 audioInfo.play.gain = min(AUDIO_MAX_GAIN, AUDIO_MAX_GAIN * loudness / 100); in xf86OSRingBell()
/dports/x11-servers/xwayland-devel/xorg-xserver-xorg-server-21.0.99.1-177-g9e5a37961/hw/xfree86/os-support/solaris/
H A Dsun_bell.c46 xf86OSRingBell(int loudness, int pitch, int duration) in xf86OSRingBell() argument
62 if ((loudness <= 0) || (pitch <= 0) || (duration <= 0)) { in xf86OSRingBell()
103 loudness = max(0, loudness); in xf86OSRingBell()
104 loudness = min(loudness, 100); in xf86OSRingBell()
108 freq, loudness, duration, repeats); in xf86OSRingBell()
116 audioInfo.play.gain = min(AUDIO_MAX_GAIN, AUDIO_MAX_GAIN * loudness / 100); in xf86OSRingBell()
/dports/x11-servers/xwayland/xorg-server-1.20.13/hw/xfree86/os-support/solaris/
H A Dsun_bell.c46 xf86OSRingBell(int loudness, int pitch, int duration) in xf86OSRingBell() argument
62 if ((loudness <= 0) || (pitch <= 0) || (duration <= 0)) { in xf86OSRingBell()
103 loudness = max(0, loudness); in xf86OSRingBell()
104 loudness = min(loudness, 100); in xf86OSRingBell()
108 freq, loudness, duration, repeats); in xf86OSRingBell()
116 audioInfo.play.gain = min(AUDIO_MAX_GAIN, AUDIO_MAX_GAIN * loudness / 100); in xf86OSRingBell()
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/hw/xfree86/os-support/solaris/
H A Dsun_bell.c46 xf86OSRingBell(int loudness, int pitch, int duration) in xf86OSRingBell() argument
62 if ((loudness <= 0) || (pitch <= 0) || (duration <= 0)) { in xf86OSRingBell()
103 loudness = max(0, loudness); in xf86OSRingBell()
104 loudness = min(loudness, 100); in xf86OSRingBell()
108 freq, loudness, duration, repeats); in xf86OSRingBell()
116 audioInfo.play.gain = min(AUDIO_MAX_GAIN, AUDIO_MAX_GAIN * loudness / 100); in xf86OSRingBell()

12345678910>>...55