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
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
brittney allen
purr-data
Commits
0317d79a
Commit
0317d79a
authored
4 years ago
by
Jonathan Wilkes
Browse files
Options
Downloads
Patches
Plain Diff
fix some global vars erroneously declared in headers and other places
parent
f71dd19f
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
pd/src/s_audio_mmio.c
+2
-6
2 additions, 6 deletions
pd/src/s_audio_mmio.c
pd/src/s_audio_oss.c
+0
-5
0 additions, 5 deletions
pd/src/s_audio_oss.c
pd/src/s_path.c
+1
-0
1 addition, 0 deletions
pd/src/s_path.c
pd/src/s_stuff.h
+1
-1
1 addition, 1 deletion
pd/src/s_stuff.h
with
4 additions
and
12 deletions
pd/src/s_audio_mmio.c
+
2
−
6
View file @
0317d79a
...
@@ -32,7 +32,8 @@ int nt_realdacblksize;
...
@@ -32,7 +32,8 @@ int nt_realdacblksize;
#define MAXBUFFER 100
/* number of buffers in use at maximum advance */
#define MAXBUFFER 100
/* number of buffers in use at maximum advance */
#define DEFBUFFER 30
/* default is about 30x6 = 180 msec! */
#define DEFBUFFER 30
/* default is about 30x6 = 180 msec! */
static
int
nt_naudiobuffer
=
DEFBUFFER
;
static
int
nt_naudiobuffer
=
DEFBUFFER
;
t_float
sys_dacsr
=
DEFAULTSRATE
;
sys_dacsr
=
DEFAULTSRATE
;
static
int
nt_whichapi
=
API_MMIO
;
static
int
nt_whichapi
=
API_MMIO
;
static
int
nt_meters
;
/* true if we're metering */
static
int
nt_meters
;
/* true if we're metering */
...
@@ -486,11 +487,6 @@ void nt_logerror(int which)
...
@@ -486,11 +487,6 @@ void nt_logerror(int which)
#endif
#endif
}
}
/* system buffer with t_sample types for one tick */
t_sample
*
sys_soundout
;
t_sample
*
sys_soundin
;
t_float
sys_dacsr
;
int
mmio_send_dacs
(
void
)
int
mmio_send_dacs
(
void
)
{
{
HMMIO
hmmio
;
HMMIO
hmmio
;
...
...
This diff is collapsed.
Click to expand it.
pd/src/s_audio_oss.c
+
0
−
5
View file @
0317d79a
...
@@ -67,11 +67,6 @@ static t_oss_dev linux_adcs[OSS_MAXDEV];
...
@@ -67,11 +67,6 @@ static t_oss_dev linux_adcs[OSS_MAXDEV];
static
int
linux_noutdevs
=
0
;
static
int
linux_noutdevs
=
0
;
static
int
linux_nindevs
=
0
;
static
int
linux_nindevs
=
0
;
/* exported variables */
t_float
sys_dacsr
;
t_sample
*
sys_soundout
;
t_sample
*
sys_soundin
;
/* OSS-specific private variables */
/* OSS-specific private variables */
static
int
oss_blockmode
=
1
;
/* flag to use "blockmode" */
static
int
oss_blockmode
=
1
;
/* flag to use "blockmode" */
...
...
This diff is collapsed.
Click to expand it.
pd/src/s_path.c
+
1
−
0
View file @
0317d79a
...
@@ -45,6 +45,7 @@ t_namelist *sys_searchpath;
...
@@ -45,6 +45,7 @@ t_namelist *sys_searchpath;
t_namelist
*
sys_staticpath
;
t_namelist
*
sys_staticpath
;
t_namelist
*
sys_helppath
;
t_namelist
*
sys_helppath
;
t_namelist
*
pd_extrapath
;
/* change '/' characters to the system's native file separator */
/* change '/' characters to the system's native file separator */
void
sys_bashfilename
(
const
char
*
from
,
char
*
to
)
void
sys_bashfilename
(
const
char
*
from
,
char
*
to
)
...
...
This diff is collapsed.
Click to expand it.
pd/src/s_stuff.h
+
1
−
1
View file @
0317d79a
...
@@ -18,7 +18,7 @@ typedef struct _namelist /* element in a linked list of stored strings */
...
@@ -18,7 +18,7 @@ typedef struct _namelist /* element in a linked list of stored strings */
char
*
nl_string
;
/* the string */
char
*
nl_string
;
/* the string */
}
t_namelist
;
}
t_namelist
;
t_namelist
*
pd_extrapath
;
extern
t_namelist
*
pd_extrapath
;
t_namelist
*
namelist_append
(
t_namelist
*
listwas
,
const
char
*
s
,
int
allowdup
);
t_namelist
*
namelist_append
(
t_namelist
*
listwas
,
const
char
*
s
,
int
allowdup
);
t_namelist
*
namelist_append_files
(
t_namelist
*
listwas
,
const
char
*
s
);
t_namelist
*
namelist_append_files
(
t_namelist
*
listwas
,
const
char
*
s
);
void
namelist_free
(
t_namelist
*
listwas
);
void
namelist_free
(
t_namelist
*
listwas
);
...
...
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