Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
eb339fbb
Commit
eb339fbb
authored
Sep 04, 2015
by
Jonathan Wilkes
Browse files
postlude: add A_CANT to dsp method
parent
1e512f56
Changes
18
Hide whitespace changes
Inline
Side-by-side
externals/postlude/flib/src/bmax~.c
View file @
eb339fbb
...
...
@@ -97,7 +97,7 @@ void bmax_tilde_setup(void) {
CLASS_DEFAULT
,
A_DEFFLOAT
,
0
);
class_addmethod
(
bmax_class
,
(
t_method
)
bmax_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
bmax_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
bmax_class
,
t_bmax
,
f
);
class_sethelpsymbol
(
bmax_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/cc~.c
View file @
eb339fbb
...
...
@@ -300,7 +300,7 @@ void cc_tilde_setup(void) {
class_addbang
(
cc_class
,
(
t_method
)
cc_bang
);
class_addmethod
(
cc_class
,
(
t_method
)
cc_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
cc_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
cc_class
,
t_cc
,
f
);
class_sethelpsymbol
(
cc_class
,
gensym
(
"help-flib"
));
}
...
...
externals/postlude/flib/src/clean~.c
View file @
eb339fbb
...
...
@@ -101,6 +101,6 @@ void clean_tilde_setup(void) {
CLASS_MAINSIGNALIN
(
clean_class
,
t_clean
,
f
);
class_addfloat
(
clean_class
,
clean_float
);
class_addmethod
(
clean_class
,
(
t_method
)
clean_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
clean_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_sethelpsymbol
(
clean_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/cross~.c
View file @
eb339fbb
...
...
@@ -193,7 +193,7 @@ void cross_tilde_setup(void) {
CLASS_DEFAULT
,
A_GIMME
,
0
);
class_addmethod
(
cross_class
,
(
t_method
)
cross_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
cross_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
cross_class
,
t_cross
,
f
);
class_sethelpsymbol
(
cross_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/ha~.c
View file @
eb339fbb
...
...
@@ -76,7 +76,7 @@ void hca_tilde_setup(void) {
CLASS_DEFAULT
,
A_DEFFLOAT
,
0
);
class_addmethod
(
hca_class
,
(
t_method
)
hca_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
hca_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
hca_class
,
t_hca
,
f
);
class_addfloat
(
hca_class
,
hca_float
)
...
...
externals/postlude/flib/src/hca~.c
View file @
eb339fbb
...
...
@@ -100,7 +100,7 @@ void hca_tilde_setup(void) {
CLASS_DEFAULT
,
A_DEFFLOAT
,
0
);
class_addmethod
(
hca_class
,
(
t_method
)
hca_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
hca_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
hca_class
,
t_hca
,
f
);
...
...
externals/postlude/flib/src/irreg~.c
View file @
eb339fbb
...
...
@@ -64,7 +64,7 @@ void irreg_tilde_setup(void) {
CLASS_DEFAULT
,
0
);
class_addmethod
(
irreg_class
,
(
t_method
)
irreg_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
irreg_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
irreg_class
,
t_irreg
,
f
);
class_sethelpsymbol
(
irreg_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/melf~.c
View file @
eb339fbb
...
...
@@ -212,7 +212,7 @@ void melf_tilde_setup(void) {
CLASS_DEFAULT
,
A_GIMME
,
0
);
class_addmethod
(
melf_class
,
(
t_method
)
melf_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
melf_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
melf_class
,
t_melf
,
f
);
class_sethelpsymbol
(
melf_class
,
gensym
(
"help-mfcc"
));
}
externals/postlude/flib/src/mspec~.c
View file @
eb339fbb
...
...
@@ -83,7 +83,7 @@ void mspec_tilde_setup(void) {
CLASS_DEFAULT
,
A_DEFFLOAT
,
0
);
class_addmethod
(
mspec_class
,
(
t_method
)
mspec_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
mspec_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
mspec_class
,
t_mspec
,
f
);
class_sethelpsymbol
(
mspec_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/peak~.c
View file @
eb339fbb
...
...
@@ -122,7 +122,7 @@ void peak_tilde_setup(void) {
(
t_method
)
peak_free
,
sizeof
(
t_peak
),
CLASS_DEFAULT
,
A_GIMME
,
0
);
class_addmethod
(
peak_class
,
(
t_method
)
peak_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
peak_class
,
(
t_method
)
peak_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
peak_class
,
t_peak
,
f
);
class_sethelpsymbol
(
peak_class
,
gensym
(
"help-flib"
));
...
...
externals/postlude/flib/src/pp~.c
View file @
eb339fbb
...
...
@@ -64,7 +64,7 @@ void pp_tilde_setup(void) {
class_addcreator
((
t_newmethod
)
pp_new
,
gensym
(
"++~"
),
A_DEFFLOAT
,
0
);
class_addmethod
(
pp_class
,
(
t_method
)
pp_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
pp_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
pp_class
,
t_pp
,
f
);
class_sethelpsymbol
(
pp_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/pspec~.c
View file @
eb339fbb
...
...
@@ -71,7 +71,7 @@ void pspec_tilde_setup(void) {
CLASS_DEFAULT
,
0
);
class_addmethod
(
pspec_class
,
(
t_method
)
pspec_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
pspec_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
pspec_class
,
t_pspec
,
f
);
class_sethelpsymbol
(
pspec_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/sc~.c
View file @
eb339fbb
...
...
@@ -71,7 +71,7 @@ void sc_tilde_setup(void) {
A_DEFFLOAT
,
0
);
class_addmethod
(
sc_class
,
(
t_method
)
sc_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
sc_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
sc_class
,
t_sc
,
f
);
class_sethelpsymbol
(
sc_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/sfm~.c
View file @
eb339fbb
...
...
@@ -69,7 +69,7 @@ void sfm_tilde_setup(void) {
CLASS_DEFAULT
,
0
);
class_addmethod
(
sfm_class
,
(
t_method
)
sfm_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
sfm_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
sfm_class
,
t_sfm
,
f
);
class_sethelpsymbol
(
sfm_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/ss~.c
View file @
eb339fbb
...
...
@@ -65,7 +65,7 @@ void ss_tilde_setup(void) {
CLASS_DEFAULT
,
0
);
class_addmethod
(
ss_class
,
(
t_method
)
ss_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
ss_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
ss_class
,
t_ss
,
f
);
class_sethelpsymbol
(
ss_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/trist~.c
View file @
eb339fbb
...
...
@@ -86,7 +86,7 @@ void trist_tilde_setup(void) {
CLASS_DEFAULT
,
A_DEFSYMBOL
,
0
);
class_addmethod
(
trist_class
,
(
t_method
)
trist_dsp
,
gensym
(
"dsp"
),
0
);
(
t_method
)
trist_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
trist_class
,
t_trist
,
f
);
class_sethelpsymbol
(
trist_class
,
gensym
(
"help-flib"
));
}
externals/postlude/flib/src/wdv~.c
View file @
eb339fbb
...
...
@@ -228,7 +228,7 @@ void wdv_tilde_setup(void) {
0
,
sizeof
(
t_wdv
),
CLASS_DEFAULT
,
A_GIMME
,
0
);
class_addmethod
(
wdv_class
,
(
t_method
)
wdv_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
wdv_class
,
(
t_method
)
wdv_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
CLASS_MAINSIGNALIN
(
wdv_class
,
t_wdv
,
f
);
class_sethelpsymbol
(
wdv_class
,
gensym
(
"help-flib"
));
}
externals/postlude/pluginhost~/pluginhost~.c
View file @
eb339fbb
...
...
@@ -66,7 +66,7 @@ void pluginhost_tilde_setup(void)
(
t_method
)
ph_free
,
sizeof
(
ph
),
0
,
A_GIMME
,
0
);
class_addlist
(
ph_class
,
handle_pd_list
);
class_addbang
(
ph_class
,
handle_pd_bang
);
class_addmethod
(
ph_class
,
(
t_method
)
handle_pd_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
ph_class
,
(
t_method
)
handle_pd_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addmethod
(
ph_class
,(
t_method
)
handle_pd_info
,
gensym
(
"info"
),
0
);
class_addmethod
(
ph_class
,
(
t_method
)
handle_pd_dssi
,
gensym
(
"dssi"
),
A_GIMME
,
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment