Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-editing-services
Commits
b8b9441a
Commit
b8b9441a
authored
Jun 23, 2019
by
Thibault Saunier
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
validate: Use proper sink and give them good names
parent
5e4555c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
tests/validate/geslaunch.py
tests/validate/geslaunch.py
+9
-1
No files found.
tests/validate/geslaunch.py
View file @
b8b9441a
...
...
@@ -150,7 +150,15 @@ class GESTest(GstValidateTest):
GstValidateTest
.
build_arguments
(
self
)
if
self
.
options
.
mute
:
self
.
add_arguments
(
"--mute"
)
needs_clock
=
self
.
scenario
.
needs_clock_sync
()
\
if
self
.
scenario
else
False
audiosink
=
utils
.
get_fakesink_for_media_type
(
"audio"
,
needs_clock
)
videosink
=
utils
.
get_fakesink_for_media_type
(
"video"
,
needs_clock
)
else
:
audiosink
=
'autoaudiosink'
videosink
=
'autovideosink'
self
.
add_arguments
(
"--videosink"
,
videosink
+
" name=videosink"
)
self
.
add_arguments
(
"--audiosink"
,
audiosink
+
" name=audiosink"
)
self
.
set_sample_paths
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment