Home
last modified time | relevance | path

Searched refs:p_effect (Results 1 – 25 of 36) sorted by relevance

12

/dports/multimedia/vlc/vlc-3.0.16/modules/visualization/visual/
H A Deffects.c209 p_buffs += p_effect->i_nb_chans; in spectrum_Run()
318 if(height[i] > p_effect->i_height) in spectrum_Run()
480 p_effect->p_data = (void*)p_data; in spectrometer_Run()
557 p_buffs += p_effect->i_nb_chans; in spectrometer_Run()
778 x = p_effect->i_width / 2; in spectrometer_Run()
779 y = p_effect->i_height / 2; in spectrometer_Run()
815 x = p_effect->i_width / 2; in spectrometer_Run()
816 y = p_effect->i_height / 2; in spectrometer_Run()
976 if( !p_effect->p_data ) in vuMeter_Run()
980 i_value = p_effect->p_data; in vuMeter_Run()
[all …]
H A Dvisual.c221 visual_effect_t *p_effect; in Open() local
224 if( !p_effect ) in Open()
230 p_effect->i_idx_right = __MIN( 1, p_effect->i_nb_chans-1 ); in Open()
267 free( p_effect ); in Open()
360 #define p_effect p_sys->effect[i] in DoRealWork() macro
361 if( p_effect->pf_run ) in DoRealWork()
363 p_effect->pf_run( p_effect, VLC_OBJECT(p_filter), in DoRealWork()
366 #undef p_effect in DoRealWork()
416 p_effect->pf_free( p_effect->p_data ); in Close()
417 free( p_effect ); in Close()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/servers/
H A Daudio_server.h312 void add_bus_effect(int p_bus, const Ref<AudioEffect> &p_effect, int p_at_pos = -1);
313 void remove_bus_effect(int p_bus, int p_effect);
316 Ref<AudioEffect> get_bus_effect(int p_bus, int p_effect);
317 Ref<AudioEffectInstance> get_bus_effect_instance(int p_bus, int p_effect, int p_channel = 0);
319 void swap_bus_effects(int p_bus, int p_effect, int p_by_effect);
321 void set_bus_effect_enabled(int p_bus, int p_effect, bool p_enabled);
322 bool is_bus_effect_enabled(int p_bus, int p_effect) const;
H A Daudio_server.cpp832 ERR_FAIL_COND(p_effect.is_null()); in add_bus_effect()
840 fx.effect = p_effect; in add_bus_effect()
858 void AudioServer::remove_bus_effect(int p_bus, int p_effect) { in remove_bus_effect() argument
866 buses[p_bus]->effects.remove(p_effect); in remove_bus_effect()
885 return buses[p_bus]->channels[p_channel].effect_instances[p_effect]; in get_bus_effect_instance()
893 return buses[p_bus]->effects[p_effect].effect; in get_bus_effect()
899 ERR_FAIL_INDEX(p_effect, buses[p_bus]->effects.size()); in swap_bus_effects()
913 ERR_FAIL_INDEX(p_effect, buses[p_bus]->effects.size()); in set_bus_effect_enabled()
917 buses.write[p_bus]->effects.write[p_effect].enabled = p_enabled; in set_bus_effect_enabled()
922 ERR_FAIL_INDEX_V(p_effect, buses[p_bus]->effects.size(), false); in is_bus_effect_enabled()
[all …]
/dports/devel/godot/godot-3.2.3-stable/servers/
H A Daudio_server.h312 void add_bus_effect(int p_bus, const Ref<AudioEffect> &p_effect, int p_at_pos = -1);
313 void remove_bus_effect(int p_bus, int p_effect);
316 Ref<AudioEffect> get_bus_effect(int p_bus, int p_effect);
317 Ref<AudioEffectInstance> get_bus_effect_instance(int p_bus, int p_effect, int p_channel = 0);
319 void swap_bus_effects(int p_bus, int p_effect, int p_by_effect);
321 void set_bus_effect_enabled(int p_bus, int p_effect, bool p_enabled);
322 bool is_bus_effect_enabled(int p_bus, int p_effect) const;
H A Daudio_server.cpp832 ERR_FAIL_COND(p_effect.is_null()); in add_bus_effect()
840 fx.effect = p_effect; in add_bus_effect()
858 void AudioServer::remove_bus_effect(int p_bus, int p_effect) { in remove_bus_effect() argument
866 buses[p_bus]->effects.remove(p_effect); in remove_bus_effect()
885 return buses[p_bus]->channels[p_channel].effect_instances[p_effect]; in get_bus_effect_instance()
893 return buses[p_bus]->effects[p_effect].effect; in get_bus_effect()
899 ERR_FAIL_INDEX(p_effect, buses[p_bus]->effects.size()); in swap_bus_effects()
913 ERR_FAIL_INDEX(p_effect, buses[p_bus]->effects.size()); in set_bus_effect_enabled()
917 buses.write[p_bus]->effects.write[p_effect].enabled = p_enabled; in set_bus_effect_enabled()
922 ERR_FAIL_INDEX_V(p_effect, buses[p_bus]->effects.size(), false); in is_bus_effect_enabled()
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/resources/
H A Denvironment.cpp56 void Environment::set_enable_fx(Fx p_effect, bool p_enabled) { in set_enable_fx() argument
58 ERR_FAIL_INDEX(p_effect, FX_MAX); in set_enable_fx()
59 fx_enabled[p_effect] = p_enabled; in set_enable_fx()
60 …VS::get_singleton()->environment_set_enable_fx(environment, VS::EnvironmentFx(p_effect), p_enabled… in set_enable_fx()
62 bool Environment::is_fx_enabled(Fx p_effect) const { in is_fx_enabled()
64 ERR_FAIL_INDEX_V(p_effect, FX_MAX, false); in is_fx_enabled()
65 return fx_enabled[p_effect]; in is_fx_enabled()
H A Denvironment.h137 void set_enable_fx(Fx p_effect, bool p_enabled);
138 bool is_fx_enabled(Fx p_effect) const;
/dports/devel/godot2/godot-2.1.6-stable/scene/resources/
H A Denvironment.cpp56 void Environment::set_enable_fx(Fx p_effect, bool p_enabled) { in set_enable_fx() argument
58 ERR_FAIL_INDEX(p_effect, FX_MAX); in set_enable_fx()
59 fx_enabled[p_effect] = p_enabled; in set_enable_fx()
60 …VS::get_singleton()->environment_set_enable_fx(environment, VS::EnvironmentFx(p_effect), p_enabled… in set_enable_fx()
62 bool Environment::is_fx_enabled(Fx p_effect) const { in is_fx_enabled()
64 ERR_FAIL_INDEX_V(p_effect, FX_MAX, false); in is_fx_enabled()
65 return fx_enabled[p_effect]; in is_fx_enabled()
H A Denvironment.h137 void set_enable_fx(Fx p_effect, bool p_enabled);
138 bool is_fx_enabled(Fx p_effect) const;
/dports/audio/guitarix-lv2/guitarix-0.43.1/src/LV2/faust/
H A Dduck_delay_st.dsp34 p_effect = hslider("effect", 0, -16, +4, 0.1) : ba.db2linear : si.smooth(0.999);
66 _,_*_,_*_,_:(_,_*p_effect:>_),(_*p_effect,_:>_);
/dports/audio/guitarix-lv2/guitarix-0.43.1/src/faust/
H A Dduck_delay_st.dsp34 p_effect = hslider("effect[name:Effect]", 0, -16, +4, 0.1) : ba.db2linear : si.smooth(0.999);
66 _,_*_,_*_,_:(_,_*p_effect:>_),(_*p_effect,_:>_);
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/media/i2c/m5mols/
H A Dm5mols_controls.c326 unsigned int p_effect = REG_EFFECT_OFF; in m5mols_set_color_effect() local
336 p_effect = REG_EFFECT_NEGA; in m5mols_set_color_effect()
339 p_effect = REG_EFFECT_EMBOSS; in m5mols_set_color_effect()
348 ret = m5mols_write(sd, PARM_EFFECT, p_effect); in m5mols_set_color_effect()
360 p_effect, m_effect, cfix_r, cfix_b, ret); in m5mols_set_color_effect()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/media/i2c/m5mols/
H A Dm5mols_controls.c326 unsigned int p_effect = REG_EFFECT_OFF; in m5mols_set_color_effect() local
336 p_effect = REG_EFFECT_NEGA; in m5mols_set_color_effect()
339 p_effect = REG_EFFECT_EMBOSS; in m5mols_set_color_effect()
348 ret = m5mols_write(sd, PARM_EFFECT, p_effect); in m5mols_set_color_effect()
360 p_effect, m_effect, cfix_r, cfix_b, ret); in m5mols_set_color_effect()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/media/i2c/m5mols/
H A Dm5mols_controls.c326 unsigned int p_effect = REG_EFFECT_OFF; in m5mols_set_color_effect() local
336 p_effect = REG_EFFECT_NEGA; in m5mols_set_color_effect()
339 p_effect = REG_EFFECT_EMBOSS; in m5mols_set_color_effect()
348 ret = m5mols_write(sd, PARM_EFFECT, p_effect); in m5mols_set_color_effect()
360 p_effect, m_effect, cfix_r, cfix_b, ret); in m5mols_set_color_effect()
/dports/devel/godot2-tools/godot-2.1.6-stable/platform/iphone/
H A Drasterizer_iphone.h846 virtual void fx_set_active(RID p_fx, const String &p_effect, bool p_active);
847 virtual bool fx_is_active(RID p_fx, const String &p_effect) const;
848 …virtual void fx_get_effect_params(RID p_fx, const String &p_effect, List<PropertyInfo> *p_params) …
849 virtual Variant fx_get_effect_param(RID p_fx, const String &p_effect, const String &p_param) const;
850 …virtual void fx_set_effect_param(RID p_fx, const String &p_effect, const String &p_param, const Va…
/dports/devel/godot2/godot-2.1.6-stable/platform/iphone/
H A Drasterizer_iphone.h846 virtual void fx_set_active(RID p_fx, const String &p_effect, bool p_active);
847 virtual bool fx_is_active(RID p_fx, const String &p_effect) const;
848 …virtual void fx_get_effect_params(RID p_fx, const String &p_effect, List<PropertyInfo> *p_params) …
849 virtual Variant fx_get_effect_param(RID p_fx, const String &p_effect, const String &p_param) const;
850 …virtual void fx_set_effect_param(RID p_fx, const String &p_effect, const String &p_param, const Va…
/dports/devel/godot2-tools/godot-2.1.6-stable/servers/visual/
H A Drasterizer_dummy.cpp1467 void RasterizerDummy::environment_set_enable_fx(RID p_env, VS::EnvironmentFx p_effect, bool p_enabl… in environment_set_enable_fx() argument
1469 ERR_FAIL_INDEX(p_effect, VS::ENV_FX_MAX); in environment_set_enable_fx()
1472 env->fx_enabled[p_effect] = p_enabled; in environment_set_enable_fx()
1474 bool RasterizerDummy::environment_is_fx_enabled(RID p_env, VS::EnvironmentFx p_effect) const { in environment_is_fx_enabled()
1476 ERR_FAIL_INDEX_V(p_effect, VS::ENV_FX_MAX, false); in environment_is_fx_enabled()
1479 return env->fx_enabled[p_effect]; in environment_is_fx_enabled()
H A Dvisual_server_raster.h1034 virtual void environment_set_enable_fx(RID p_env, EnvironmentFx p_effect, bool p_enabled);
1035 virtual bool environment_is_fx_enabled(RID p_env, EnvironmentFx p_effect) const;
1037 …virtual void environment_fx_set_param(RID p_env, EnvironmentFxParam p_effect, const Variant &p_par…
1038 virtual Variant environment_fx_get_param(RID p_env, EnvironmentFxParam p_effect) const;
H A Drasterizer_dummy.h701 virtual void environment_set_enable_fx(RID p_env, VS::EnvironmentFx p_effect, bool p_enabled);
702 virtual bool environment_is_fx_enabled(RID p_env, VS::EnvironmentFx p_effect) const;
/dports/devel/godot2/godot-2.1.6-stable/servers/visual/
H A Drasterizer_dummy.cpp1467 void RasterizerDummy::environment_set_enable_fx(RID p_env, VS::EnvironmentFx p_effect, bool p_enabl… in environment_set_enable_fx() argument
1469 ERR_FAIL_INDEX(p_effect, VS::ENV_FX_MAX); in environment_set_enable_fx()
1472 env->fx_enabled[p_effect] = p_enabled; in environment_set_enable_fx()
1474 bool RasterizerDummy::environment_is_fx_enabled(RID p_env, VS::EnvironmentFx p_effect) const { in environment_is_fx_enabled()
1476 ERR_FAIL_INDEX_V(p_effect, VS::ENV_FX_MAX, false); in environment_is_fx_enabled()
1479 return env->fx_enabled[p_effect]; in environment_is_fx_enabled()
H A Dvisual_server_raster.h1034 virtual void environment_set_enable_fx(RID p_env, EnvironmentFx p_effect, bool p_enabled);
1035 virtual bool environment_is_fx_enabled(RID p_env, EnvironmentFx p_effect) const;
1037 …virtual void environment_fx_set_param(RID p_env, EnvironmentFxParam p_effect, const Variant &p_par…
1038 virtual Variant environment_fx_get_param(RID p_env, EnvironmentFxParam p_effect) const;
/dports/games/odamex/odamex-src-0.7.0/odamex.xcodeproj/
H A Dproject.pbxproj16 …A0D7954C14869A70006AD6BA /* p_effect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0D7954B14…
17 …A0D7955014869AAB006AD6BA /* p_effect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0D7954E14…
288 …869A70006AD6BA /* p_effect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
290 …869AAB006AD6BA /* p_effect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
646 A0D7954E14869AAB006AD6BA /* p_effect.cpp */,
889 A0D7954B14869A70006AD6BA /* p_effect.cpp */,
1295 A0D7954C14869A70006AD6BA /* p_effect.cpp in Sources */,
1401 A0D7955014869AAB006AD6BA /* p_effect.cpp in Sources */,
/dports/devel/godot2-tools/godot-2.1.6-stable/servers/
H A Dvisual_server.h778 virtual void environment_set_enable_fx(RID p_env, EnvironmentFx p_effect, bool p_enabled) = 0;
825 …virtual void environment_fx_set_param(RID p_env, EnvironmentFxParam p_effect, const Variant &p_par…
826 virtual Variant environment_fx_get_param(RID p_env, EnvironmentFxParam p_effect) const = 0;
/dports/devel/godot2/godot-2.1.6-stable/servers/
H A Dvisual_server.h778 virtual void environment_set_enable_fx(RID p_env, EnvironmentFx p_effect, bool p_enabled) = 0;
825 …virtual void environment_fx_set_param(RID p_env, EnvironmentFxParam p_effect, const Variant &p_par…
826 virtual Variant environment_fx_get_param(RID p_env, EnvironmentFxParam p_effect) const = 0;

12