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
8b57ccb4
Commit
8b57ccb4
authored
Sep 04, 2015
by
Jonathan Wilkes
Browse files
pdogg: add A_CANT to dsp method
parent
2b665362
Changes
4
Hide whitespace changes
Inline
Side-by-side
externals/pdogg/oggamp~.c
View file @
8b57ccb4
...
...
@@ -1419,7 +1419,7 @@ void oggamp_tilde_setup(void)
(
t_method
)
oggamp_free
,
sizeof
(
t_oggamp
),
0
,
A_DEFFLOAT
,
A_DEFFLOAT
,
A_DEFFLOAT
,
0
);
class_addfloat
(
oggamp_class
,
(
t_method
)
oggamp_float
);
class_addmethod
(
oggamp_class
,
(
t_method
)
oggamp_disconnect
,
gensym
(
"disconnect"
),
0
);
class_addmethod
(
oggamp_class
,
(
t_method
)
oggamp_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
oggamp_class
,
(
t_method
)
oggamp_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addmethod
(
oggamp_class
,
(
t_method
)
oggamp_connect
,
gensym
(
"connect"
),
A_GIMME
,
0
);
class_addmethod
(
oggamp_class
,
(
t_method
)
oggamp_connect_url
,
gensym
(
"connecturl"
),
A_SYMBOL
,
0
);
class_addmethod
(
oggamp_class
,
(
t_method
)
oggamp_recover
,
gensym
(
"recover"
),
A_FLOAT
,
0
);
...
...
externals/pdogg/oggcast~.c
View file @
8b57ccb4
...
...
@@ -1455,7 +1455,7 @@ void oggcast_tilde_setup(void)
CLASS_MAINSIGNALIN
(
oggcast_class
,
t_oggcast
,
x_f
);
class_addfloat
(
oggcast_class
,
(
t_method
)
oggcast_float
);
class_addmethod
(
oggcast_class
,
(
t_method
)
oggcast_disconnect
,
gensym
(
"disconnect"
),
0
);
class_addmethod
(
oggcast_class
,
(
t_method
)
oggcast_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
oggcast_class
,
(
t_method
)
oggcast_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addmethod
(
oggcast_class
,
(
t_method
)
oggcast_connect
,
gensym
(
"connect"
),
A_GIMME
,
0
);
class_addmethod
(
oggcast_class
,
(
t_method
)
oggcast_print
,
gensym
(
"print"
),
0
);
class_addmethod
(
oggcast_class
,
(
t_method
)
oggcast_password
,
gensym
(
"passwd"
),
A_SYMBOL
,
0
);
...
...
externals/pdogg/oggread~.c
View file @
8b57ccb4
...
...
@@ -407,7 +407,7 @@ void oggread_tilde_setup(void)
sizeof
(
t_oggread
),
0
,
A_DEFFLOAT
,
A_NULL
);
class_addfloat
(
oggread_class
,
(
t_method
)
oggread_float
);
class_addmethod
(
oggread_class
,
nullfn
,
gensym
(
"signal"
),
0
);
class_addmethod
(
oggread_class
,
(
t_method
)
oggread_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
oggread_class
,
(
t_method
)
oggread_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addmethod
(
oggread_class
,
(
t_method
)
oggread_open
,
gensym
(
"open"
),
A_SYMBOL
,
0
);
class_addmethod
(
oggread_class
,
(
t_method
)
oggread_start
,
gensym
(
"start"
),
0
);
class_addmethod
(
oggread_class
,
(
t_method
)
oggread_resume
,
gensym
(
"resume"
),
0
);
...
...
externals/pdogg/oggwrite~.c
View file @
8b57ccb4
...
...
@@ -738,7 +738,7 @@ void oggwrite_tilde_setup(void)
oggwrite_class
=
class_new
(
gensym
(
"oggwrite~"
),
(
t_newmethod
)
oggwrite_new
,
(
t_method
)
oggwrite_free
,
sizeof
(
t_oggwrite
),
0
,
0
);
CLASS_MAINSIGNALIN
(
oggwrite_class
,
t_oggwrite
,
x_f
);
class_addmethod
(
oggwrite_class
,
(
t_method
)
oggwrite_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
oggwrite_class
,
(
t_method
)
oggwrite_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addmethod
(
oggwrite_class
,
(
t_method
)
oggwrite_open
,
gensym
(
"open"
),
A_SYMBOL
,
0
);
class_addmethod
(
oggwrite_class
,
(
t_method
)
oggwrite_start
,
gensym
(
"start"
),
0
);
class_addmethod
(
oggwrite_class
,
(
t_method
)
oggwrite_stop
,
gensym
(
"stop"
),
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