Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Duncan Macleod
gstlal
Commits
c0d54beb
Commit
c0d54beb
authored
6 years ago
by
Chad Hanna
Browse files
Options
Downloads
Patches
Plain Diff
gstlal_interpolator.c: fix namespace
parent
397ea9a9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-ugly/gst/lal/gstlal_interpolator.c
+7
-6
7 additions, 6 deletions
gstlal-ugly/gst/lal/gstlal_interpolator.c
with
7 additions
and
6 deletions
gstlal-ugly/gst/lal/gstlal_interpolator.c
+
7
−
6
View file @
c0d54beb
...
...
@@ -51,7 +51,7 @@
#define PI 3.141592653589793
gsl_vector_float
**
upkernel
(
int
half_length_at_original_rate
,
int
f
)
{
static
gsl_vector_float
**
upkernel
(
int
half_length_at_original_rate
,
int
f
)
{
/*
* This is a parabolic windowed sinc function kernel
...
...
@@ -136,7 +136,7 @@ gsl_vector_float** upkernel(int half_length_at_original_rate, int f) {
}
void
convolve
(
float
*
output
,
gsl_vector_float
*
thiskernel
,
float
*
input
,
guint
kernel_length
,
guint
channels
)
{
static
void
convolve
(
float
*
output
,
gsl_vector_float
*
thiskernel
,
float
*
input
,
guint
kernel_length
,
guint
channels
)
{
/*
* This function will multiply a matrix of input values by vector to
...
...
@@ -152,7 +152,7 @@ void convolve(float *output, gsl_vector_float *thiskernel, float *input, guint k
return
;
}
void
re
sample
(
float
*
output
,
gsl_vector_float
**
thiskernel
,
float
*
input
,
guint
kernel_length
,
guint
factor
,
guint
channels
,
guint
blockstrideout
,
gboolean
nongap
)
{
static
void
up
sample
(
float
*
output
,
gsl_vector_float
**
thiskernel
,
float
*
input
,
guint
kernel_length
,
guint
factor
,
guint
channels
,
guint
blockstrideout
,
gboolean
nongap
)
{
/*
* This function is responsible for the resampling of the input time
...
...
@@ -283,7 +283,7 @@ static void gstlal_interpolator_init(GSTLALInterpolator *element)
/* Upsample factor */
element
->
factor
=
0
;
element
->
kernel
=
NULL
;
element
->
up
kernel
=
NULL
;
element
->
workspace
=
NULL
;
/* hardcoded kernel size */
...
...
@@ -336,7 +336,8 @@ static gboolean set_caps (GstBaseTransform * base, GstCaps * incaps, GstCaps * o
g_return_val_if_fail
(
gst_structure_get_int
(
outstruct
,
"rate"
,
&
outrate
),
FALSE
);
g_return_val_if_fail
(
inchannels
==
outchannels
,
FALSE
);
g_return_val_if_fail
(
outrate
>=
inrate
,
FALSE
);
// enable downsampling too
//g_return_val_if_fail(outrate >= inrate, FALSE);
g_return_val_if_fail
(
outrate
%
inrate
==
0
,
FALSE
);
element
->
inrate
=
inrate
;
...
...
@@ -637,7 +638,7 @@ static GstFlowReturn transform(GstBaseTransform *trans, GstBuffer *inbuf, GstBuf
else
gst_audioadapter_copy_samples
(
element
->
adapter
,
element
->
workspace
->
data
,
element
->
blocksampsin
,
NULL
,
&
copied_nongap
);
re
sample
(
output
,
element
->
upkernel
,
element
->
workspace
->
data
,
element
->
kernel_length
,
element
->
factor
,
element
->
channels
,
element
->
blockstrideout
,
copied_nongap
);
up
sample
(
output
,
element
->
upkernel
,
element
->
workspace
->
data
,
element
->
kernel_length
,
element
->
factor
,
element
->
channels
,
element
->
blockstrideout
,
copied_nongap
);
if
(
element
->
need_pretend
)
{
element
->
need_pretend
=
FALSE
;
...
...
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