Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
lscsoft
GstLAL
Commits
7c948a3c
Commit
7c948a3c
authored
1 year ago
by
Yun-Jing Huang
Committed by
Prathamesh Joshi
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
bug fix: fix missing output before gaps
parent
7ff3fbf7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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
+9
-2
9 additions, 2 deletions
gstlal-ugly/gst/lal/gstlal_interpolator.c
with
9 additions
and
2 deletions
gstlal-ugly/gst/lal/gstlal_interpolator.c
+
9
−
2
View file @
7c948a3c
...
...
@@ -831,6 +831,7 @@ static GstFlowReturn transform(GstBaseTransform *trans, GstBuffer *inbuf, GstBuf
guint
output_length
;
GstFlowReturn
result
=
GST_FLOW_OK
;
gboolean
copied_nongap
;
gboolean
copied_nongap_all
=
FALSE
;
GstMapInfo
mapinfo
;
g_assert
(
GST_BUFFER_PTS_IS_VALID
(
inbuf
));
...
...
@@ -915,6 +916,9 @@ static GstFlowReturn transform(GstBaseTransform *trans, GstBuffer *inbuf, GstBuf
else
gst_audioadapter_copy_samples
(
element
->
adapter
,
element
->
workspace32
->
data
,
element
->
blocksampsin
,
NULL
,
&
copied_nongap
);
if
(
copied_nongap
)
copied_nongap_all
=
TRUE
;
if
(
element
->
outrate
>
element
->
inrate
)
upsample32
(
output
,
element
->
kernel32
,
element
->
workspace32
->
data
,
kernel_length
(
element
),
element
->
outrate
/
element
->
inrate
,
element
->
channels
,
element
->
blockstrideout
,
copied_nongap
);
else
...
...
@@ -934,7 +938,7 @@ static GstFlowReturn transform(GstBaseTransform *trans, GstBuffer *inbuf, GstBuf
processed
+=
element
->
blockstrideout
;
}
GST_INFO_OBJECT
(
element
,
"Processed a %d samples"
,
processed
);
set_metadata
(
element
,
outbuf
,
output_length
,
!
copied_nongap
);
set_metadata
(
element
,
outbuf
,
output_length
,
!
copied_nongap
_all
);
gst_buffer_unmap
(
outbuf
,
&
mapinfo
);
}
if
(
element
->
width
==
64
)
{
...
...
@@ -962,6 +966,9 @@ static GstFlowReturn transform(GstBaseTransform *trans, GstBuffer *inbuf, GstBuf
else
gst_audioadapter_copy_samples
(
element
->
adapter
,
element
->
workspace64
->
data
,
element
->
blocksampsin
,
NULL
,
&
copied_nongap
);
if
(
copied_nongap
)
copied_nongap_all
=
TRUE
;
if
(
element
->
outrate
>
element
->
inrate
)
upsample64
(
output
,
element
->
kernel64
,
element
->
workspace64
->
data
,
kernel_length
(
element
),
element
->
outrate
/
element
->
inrate
,
element
->
channels
,
element
->
blockstrideout
,
copied_nongap
);
else
...
...
@@ -981,7 +988,7 @@ static GstFlowReturn transform(GstBaseTransform *trans, GstBuffer *inbuf, GstBuf
processed
+=
element
->
blockstrideout
;
}
GST_INFO_OBJECT
(
element
,
"Processed a %d samples"
,
processed
);
set_metadata
(
element
,
outbuf
,
output_length
,
!
copied_nongap
);
set_metadata
(
element
,
outbuf
,
output_length
,
!
copied_nongap
_all
);
gst_buffer_unmap
(
outbuf
,
&
mapinfo
);
}
}
...
...
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