Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
YARAMALA SIVA SAI VARDHAN REDDY
purr-data
Commits
9705e683
Commit
9705e683
authored
7 years ago
by
Jonathan Wilkes
Browse files
Options
Downloads
Patches
Plain Diff
port garray_resize_long from Pd Vanilla
Pd Vanilla commit 98b4959f03f0fd9acfd7c117d8061589504c89e6
parent
ae8549ea
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pd/src/d_soundfile.c
+1
-1
1 addition, 1 deletion
pd/src/d_soundfile.c
pd/src/g_array.c
+17
-8
17 additions, 8 deletions
pd/src/g_array.c
pd/src/m_pd.h
+2
-1
2 additions, 1 deletion
pd/src/m_pd.h
with
20 additions
and
10 deletions
pd/src/d_soundfile.c
+
1
−
1
View file @
9705e683
...
@@ -1283,7 +1283,7 @@ static void soundfiler_read(t_soundfiler *x, t_symbol *s,
...
@@ -1283,7 +1283,7 @@ static void soundfiler_read(t_soundfiler *x, t_symbol *s,
{
{
int
vecsize
;
int
vecsize
;
garray_resize
(
garrays
[
i
],
finalsize
);
garray_resize
_long
(
garrays
[
i
],
finalsize
);
/* for sanity's sake let's clear the save-in-patch flag here */
/* for sanity's sake let's clear the save-in-patch flag here */
garray_setsaveit
(
garrays
[
i
],
0
);
garray_setsaveit
(
garrays
[
i
],
0
);
garray_getfloatwords
(
garrays
[
i
],
&
vecsize
,
garray_getfloatwords
(
garrays
[
i
],
&
vecsize
,
...
...
This diff is collapsed.
Click to expand it.
pd/src/g_array.c
+
17
−
8
View file @
9705e683
...
@@ -698,7 +698,7 @@ void garray_arraydialog(t_garray *x, t_symbol *s, int argc, t_atom *argv)
...
@@ -698,7 +698,7 @@ void garray_arraydialog(t_garray *x, t_symbol *s, int argc, t_atom *argv)
template_findbyname(x->x_scalar->sc_template),
template_findbyname(x->x_scalar->sc_template),
gensym("style"), x->x_scalar->sc_vec, 1);*/
gensym("style"), x->x_scalar->sc_vec, 1);*/
int
size
;
long
size
;
t_symbol
*
argname
=
sharptodollar
(
name
);
t_symbol
*
argname
=
sharptodollar
(
name
);
t_array
*
a
=
garray_getarray
(
x
);
t_array
*
a
=
garray_getarray
(
x
);
t_template
*
scalartemplate
;
t_template
*
scalartemplate
;
...
@@ -757,7 +757,7 @@ void garray_arraydialog(t_garray *x, t_symbol *s, int argc, t_atom *argv)
...
@@ -757,7 +757,7 @@ void garray_arraydialog(t_garray *x, t_symbol *s, int argc, t_atom *argv)
x
->
x_style
=
style
;
x
->
x_style
=
style
;
if
(
size
!=
a
->
a_n
)
if
(
size
!=
a
->
a_n
)
{
{
garray_resize
(
x
,
size
);
garray_resize
_long
(
x
,
size
);
}
}
else
else
{
{
...
@@ -1680,7 +1680,7 @@ static void garray_const(t_garray *x, t_floatarg g)
...
@@ -1680,7 +1680,7 @@ static void garray_const(t_garray *x, t_floatarg g)
}
}
/* sum of Fourier components; called from routines below */
/* sum of Fourier components; called from routines below */
static
void
garray_dofo
(
t_garray
*
x
,
int
npoints
,
t_float
dcval
,
static
void
garray_dofo
(
t_garray
*
x
,
long
npoints
,
t_float
dcval
,
int
nsin
,
t_float
*
vsin
,
int
sineflag
)
int
nsin
,
t_float
*
vsin
,
int
sineflag
)
{
{
double
phase
,
phaseincr
,
fj
;
double
phase
,
phaseincr
,
fj
;
...
@@ -1696,7 +1696,7 @@ static void garray_dofo(t_garray *x, int npoints, t_float dcval,
...
@@ -1696,7 +1696,7 @@ static void garray_dofo(t_garray *x, int npoints, t_float dcval,
if
(
npoints
!=
(
1
<<
ilog2
(
npoints
)))
if
(
npoints
!=
(
1
<<
ilog2
(
npoints
)))
post
(
"%s: rounding to %d points"
,
array
->
a_templatesym
->
s_name
,
post
(
"%s: rounding to %d points"
,
array
->
a_templatesym
->
s_name
,
(
npoints
=
(
1
<<
ilog2
(
npoints
))));
(
npoints
=
(
1
<<
ilog2
(
npoints
))));
garray_resize
(
x
,
npoints
+
3
);
garray_resize
_long
(
x
,
npoints
+
3
);
phaseincr
=
2
.
*
3
.
14159
/
npoints
;
phaseincr
=
2
.
*
3
.
14159
/
npoints
;
for
(
i
=
0
,
phase
=
-
phaseincr
;
i
<
array
->
a_n
;
i
++
,
phase
+=
phaseincr
)
for
(
i
=
0
,
phase
=
-
phaseincr
;
i
<
array
->
a_n
;
i
++
,
phase
+=
phaseincr
)
{
{
...
@@ -1716,7 +1716,8 @@ static void garray_dofo(t_garray *x, int npoints, t_float dcval,
...
@@ -1716,7 +1716,8 @@ static void garray_dofo(t_garray *x, int npoints, t_float dcval,
static
void
garray_sinesum
(
t_garray
*
x
,
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
)
static
void
garray_sinesum
(
t_garray
*
x
,
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
)
{
{
t_float
*
svec
;
t_float
*
svec
;
int
npoints
,
i
;
long
npoints
;
int
i
;
if
(
argc
<
2
)
if
(
argc
<
2
)
{
{
error
(
"sinesum: %s: need number of points and partial strengths"
,
error
(
"sinesum: %s: need number of points and partial strengths"
,
...
@@ -1739,7 +1740,8 @@ static void garray_sinesum(t_garray *x, t_symbol *s, int argc, t_atom *argv)
...
@@ -1739,7 +1740,8 @@ static void garray_sinesum(t_garray *x, t_symbol *s, int argc, t_atom *argv)
static
void
garray_cosinesum
(
t_garray
*
x
,
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
)
static
void
garray_cosinesum
(
t_garray
*
x
,
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
)
{
{
t_float
*
svec
;
t_float
*
svec
;
int
npoints
,
i
;
long
npoints
;
int
i
;
if
(
argc
<
2
)
if
(
argc
<
2
)
{
{
error
(
"sinesum: %s: need number of points and partial strengths"
,
error
(
"sinesum: %s: need number of points and partial strengths"
,
...
@@ -1956,10 +1958,11 @@ int garray_ambigendian(void)
...
@@ -1956,10 +1958,11 @@ int garray_ambigendian(void)
return
(
c
==
0
);
return
(
c
==
0
);
}
}
void
garray_resize
(
t_garray
*
x
,
t_floatar
g
f
)
void
garray_resize
_long
(
t_garray
*
x
,
lon
g
n
)
{
{
t_array
*
array
=
garray_getarray
(
x
);
t_array
*
array
=
garray_getarray
(
x
);
int
n
=
(
f
<
1
?
1
:
f
);
if
(
n
<
1
)
n
=
1
;
//fprintf(stderr,"garray_resize %d\n", n);
//fprintf(stderr,"garray_resize %d\n", n);
array_resize
(
array
,
n
);
array_resize
(
array
,
n
);
garray_fittograph
(
x
,
n
,
1
);
/*template_getfloat(
garray_fittograph
(
x
,
n
,
1
);
/*template_getfloat(
...
@@ -1970,6 +1973,12 @@ void garray_resize(t_garray *x, t_floatarg f)
...
@@ -1970,6 +1973,12 @@ void garray_resize(t_garray *x, t_floatarg f)
canvas_update_dsp
();
canvas_update_dsp
();
}
}
/* float version to use as Pd method */
void
garray_resize
(
t_garray
*
x
,
t_floatarg
f
)
{
garray_resize_long
(
x
,
f
);
}
static
void
garray_print
(
t_garray
*
x
)
static
void
garray_print
(
t_garray
*
x
)
{
{
t_array
*
array
=
garray_getarray
(
x
);
t_array
*
array
=
garray_getarray
(
x
);
...
...
This diff is collapsed.
Click to expand it.
pd/src/m_pd.h
+
2
−
1
View file @
9705e683
...
@@ -673,7 +673,8 @@ EXTERN t_float garray_get(t_garray *x, t_symbol *s, t_int indx);
...
@@ -673,7 +673,8 @@ EXTERN t_float garray_get(t_garray *x, t_symbol *s, t_int indx);
EXTERN
void
garray_redraw
(
t_garray
*
x
);
EXTERN
void
garray_redraw
(
t_garray
*
x
);
EXTERN
int
garray_npoints
(
t_garray
*
x
);
EXTERN
int
garray_npoints
(
t_garray
*
x
);
EXTERN
char
*
garray_vec
(
t_garray
*
x
);
EXTERN
char
*
garray_vec
(
t_garray
*
x
);
EXTERN
void
garray_resize
(
t_garray
*
x
,
t_floatarg
f
);
EXTERN
void
garray_resize
(
t_garray
*
x
,
t_floatarg
f
);
/* avoid; use this: */
EXTERN
void
garray_resize_long
(
t_garray
*
x
,
long
n
);
/* better version */
EXTERN
void
garray_usedindsp
(
t_garray
*
x
);
EXTERN
void
garray_usedindsp
(
t_garray
*
x
);
EXTERN
void
garray_setsaveit
(
t_garray
*
x
,
int
saveit
);
EXTERN
void
garray_setsaveit
(
t_garray
*
x
,
int
saveit
);
EXTERN
t_glist
*
garray_getglist
(
t_garray
*
x
);
EXTERN
t_glist
*
garray_getglist
(
t_garray
*
x
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment