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
79310910
Commit
79310910
authored
15 years ago
by
kipp
Browse files
Options
Downloads
Patches
Plain Diff
- add mkscopesink()
- cleanup mkplaybacksink() - a few other clean-ups here and there
parent
41e32790
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
src/utilities/lloid_gui
+41
-26
41 additions, 26 deletions
src/utilities/lloid_gui
with
41 additions
and
26 deletions
src/utilities/lloid_gui
+
41
−
26
View file @
79310910
...
...
@@ -265,20 +265,36 @@ def mktriggerxmlwritersink(pipeline, src, filename):
pipeline
.
add
(
elem
)
src
.
link
(
elem
)
def
mkscopesink
(
pipeline
,
src
):
elems
=
(
gst
.
element_factory_make
(
"
lal_multiscope
"
),
gst
.
element_factory_make
(
"
ffmpegcolorspace
"
),
gst
.
element_factory_make
(
"
cairotimeoverlay
"
),
gst
.
element_factory_make
(
"
autovideosink
"
)
)
elems
[
0
].
set_property
(
"
trace-duration
"
,
4.0
)
elems
[
0
].
set_property
(
"
frame-interval
"
,
1.0
/
16
)
elems
[
0
].
set_property
(
"
average-interval
"
,
32.0
)
elems
[
0
].
set_property
(
"
do-timestamp
"
,
False
)
pipeline
.
add
(
*
elems
)
gst
.
element_link_many
(
mkqueue
(
pipeline
,
src
),
*
elems
)
def
mkplaybacksink
(
pipeline
,
src
):
adder
=
gst
.
element_factory_make
(
"
adder
"
)
resampler
=
gst
.
element_factory_make
(
"
audioresample
"
)
conv1
=
gst
.
element_factory_make
(
"
audioconvert
"
)
filter
=
gst
.
element_factory_make
(
"
capsfilter
"
)
filter
.
set_property
(
"
caps
"
,
gst
.
Caps
(
"
audio/x-raw-float, width=32
"
))
amp
=
gst
.
element_factory_make
(
"
audioamplify
"
)
amp
.
set_property
(
"
amplification
"
,
5e-2
)
conv2
=
gst
.
element_factory_make
(
"
audioconvert
"
)
queue
=
gst
.
element_factory_make
(
"
queue
"
)
queue
.
set_property
(
"
max-size-time
"
,
3000000000
)
sink
=
gst
.
element_factory_make
(
"
alsasink
"
)
pipeline
.
add
(
adder
,
resampler
,
conv1
,
filter
,
amp
,
conv2
,
queue
,
sink
)
gst
.
element_link_many
(
src
,
adder
,
resampler
,
conv1
,
filter
,
amp
,
conv2
,
queue
,
sink
)
elems
=
(
gst
.
element_factory_make
(
"
adder
"
),
gst
.
element_factory_make
(
"
audioresample
"
),
gst
.
element_factory_make
(
"
audioconvert
"
),
gst
.
element_factory_make
(
"
capsfilter
"
),
gst
.
element_factory_make
(
"
audioamplify
"
),
gst
.
element_factory_make
(
"
audioconvert
"
),
gst
.
element_factory_make
(
"
queue
"
),
gst
.
element_factory_make
(
"
alsasink
"
)
)
elems
[
3
].
set_property
(
"
caps
"
,
gst
.
Caps
(
"
audio/x-raw-float, width=32
"
))
elems
[
4
].
set_property
(
"
amplification
"
,
5e-2
)
elems
[
6
].
set_property
(
"
max-size-time
"
,
3000000000
)
pipeline
.
add
(
*
elems
)
gst
.
element_link_many
(
*
elems
)
#
...
...
@@ -300,8 +316,7 @@ def mkLLOIDsingle(pipeline, instrument, detectors, banks, trigger_filename = "ou
rates
=
banks
.
get_rates
()
head
=
mkcapsfilter
(
pipeline
,
mkresample
(
pipeline
,
head
),
"
audio/x-raw-float, rate=%d
"
%
rates
[
0
])
head
=
mkwhiten
(
pipeline
,
head
,
detectors
[
instrument
].
psd
)
head
=
mkwhiten
(
pipeline
,
mkcapsfilter
(
pipeline
,
mkresample
(
pipeline
,
head
),
"
audio/x-raw-float, rate=%d
"
%
rates
[
0
]),
detectors
[
instrument
].
psd
)
hoft
=
{
rates
[
0
]:
mktee
(
pipeline
,
head
)}
for
rate
in
rates
[
1
:]:
...
...
@@ -317,23 +332,23 @@ def mkLLOIDsingle(pipeline, instrument, detectors, banks, trigger_filename = "ou
control_src
=
mktee
(
pipeline
,
control_src
)
mknxydumpsink
(
pipeline
,
mkqueue
(
pipeline
,
control_src
),
"
sumsquares_%s.txt
"
%
instrument
)
snr
_adder
=
gst
.
element_factory_make
(
"
lal_adder
"
)
snr
_adder
.
set_property
(
"
sync
"
,
True
)
pipeline
.
add
(
snr
_adder
)
snr
=
gst
.
element_factory_make
(
"
lal_adder
"
)
snr
.
set_property
(
"
sync
"
,
True
)
pipeline
.
add
(
snr
)
chisq
_adder
=
gst
.
element_factory_make
(
"
lal_adder
"
)
chisq
_adder
.
set_property
(
"
sync
"
,
True
)
pipeline
.
add
(
chisq
_adder
)
chisq
=
gst
.
element_factory_make
(
"
lal_adder
"
)
chisq
.
set_property
(
"
sync
"
,
True
)
pipeline
.
add
(
chisq
)
for
bank
in
banks
:
head
=
mkqueue
(
pipeline
,
hoft
[
bank
.
rate
],
max_size_time
=
int
(
max
(
bank
.
filt_length
for
bank
in
banks
))
*
2
*
1000000000
)
snr
,
chisq
=
mkbank
(
pipeline
,
head
,
detectors
[
instrument
],
bank
,
control_snk
,
control_src
)
bank_snr
,
bank_
chisq
=
mkbank
(
pipeline
,
head
,
detectors
[
instrument
],
bank
,
control_snk
,
control_src
)
mkqueue
(
pipeline
,
mkresample
(
pipeline
,
snr
,
quality
=
0
)).
link
(
snr
_adder
)
mkqueue
(
pipeline
,
mkresample
(
pipeline
,
chisq
,
quality
=
0
)).
link
(
chisq
_adder
)
mkqueue
(
pipeline
,
mkresample
(
pipeline
,
bank_
snr
,
quality
=
0
)).
link
(
snr
)
mkqueue
(
pipeline
,
mkresample
(
pipeline
,
bank_
chisq
,
quality
=
0
)).
link
(
chisq
)
snr
=
mkcapsfilter
(
pipeline
,
snr
_adder
,
"
audio/x-raw-float, rate=%d
"
%
rates
[
0
])
chisq
=
mkcapsfilter
(
pipeline
,
chisq
_adder
,
"
audio/x-raw-float, rate=%d
"
%
rates
[
0
])
snr
=
mkcapsfilter
(
pipeline
,
snr
,
"
audio/x-raw-float, rate=%d
"
%
rates
[
0
])
chisq
=
mkcapsfilter
(
pipeline
,
chisq
,
"
audio/x-raw-float, rate=%d
"
%
rates
[
0
])
if
progress_report
:
snr
=
mkprogressreport
(
pipeline
,
snr
,
"
progress_snr_%s
"
%
instrument
)
chisq
=
mkprogressreport
(
pipeline
,
chisq
,
"
progress_chisquare_%s
"
%
instrument
)
...
...
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