Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-editing-services
Commits
e97c90fa
Commit
e97c90fa
authored
Jun 22, 2019
by
Thibault Saunier
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nlecomposition: Minor debugging enhancements
parent
564505e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
plugins/nle/nlecomposition.c
plugins/nle/nlecomposition.c
+11
-8
No files found.
plugins/nle/nlecomposition.c
View file @
e97c90fa
...
...
@@ -1293,7 +1293,7 @@ ghost_event_probe_handler (GstPad * ghostpad G_GNUC_UNUSED,
event
=
GST_PAD_PROBE_INFO_EVENT
(
info
);
GST_
DEBU
G_OBJECT
(
comp
,
"event: %s"
,
GST_EVENT_TYPE_NAME
(
event
));
GST_
LO
G_OBJECT
(
comp
,
"event: %s"
,
GST_EVENT_TYPE_NAME
(
event
));
switch
(
GST_EVENT_TYPE
(
event
))
{
case
GST_EVENT_FLUSH_STOP
:
...
...
@@ -1301,30 +1301,33 @@ ghost_event_probe_handler (GstPad * ghostpad G_GNUC_UNUSED,
_restart_task
(
comp
);
if
(
gst_event_get_seqnum
(
event
)
!=
comp
->
priv
->
flush_seqnum
)
{
GST_INFO_OBJECT
(
comp
,
"Dropping
flush stop
%d -- %d"
,
gst_event_get_seqnum
(
event
),
priv
->
seqnum
_to_restart_task
);
GST_INFO_OBJECT
(
comp
,
"Dropping
FLUSH_STOP
%d -- %d"
,
gst_event_get_seqnum
(
event
),
priv
->
flush_
seqnum
);
retval
=
GST_PAD_PROBE_DROP
;
}
else
{
GST_INFO_OBJECT
(
comp
,
"Forwarding
our flush stop
with seqnum %i"
,
GST_INFO_OBJECT
(
comp
,
"Forwarding
FLUSH_STOP
with seqnum %i"
,
comp
->
priv
->
flush_seqnum
);
gst_event_unref
(
event
);
event
=
gst_event_new_flush_stop
(
TRUE
);
GST_PAD_PROBE_INFO_DATA
(
info
)
=
event
;
gst_event_set_seqnum
(
event
,
comp
->
priv
->
flush_seqnum
);
if
(
comp
->
priv
->
seek_seqnum
)
{
GST_EVENT_SEQNUM
(
event
)
=
comp
->
priv
->
seek_seqnum
;
GST_INFO_OBJECT
(
comp
,
"Setting FLUSH_START seqnum: %d"
,
comp
->
priv
->
seek
_seqnum
)
;
}
else
{
GST_EVENT_SEQNUM
(
event
)
=
comp
->
priv
->
flush
_seqnum
;
}
GST_INFO_OBJECT
(
comp
,
"Set FLUSH_STOP seqnum: %d"
,
GST_EVENT_SEQNUM
(
event
));
comp
->
priv
->
flush_seqnum
=
0
;
}
break
;
case
GST_EVENT_FLUSH_START
:
if
(
gst_event_get_seqnum
(
event
)
!=
comp
->
priv
->
flush_seqnum
)
{
GST_INFO_OBJECT
(
comp
,
"Dropping
flush start
%d != %d"
,
GST_INFO_OBJECT
(
comp
,
"Dropping
FLUSH_START
%d != %d"
,
gst_event_get_seqnum
(
event
),
comp
->
priv
->
flush_seqnum
);
retval
=
GST_PAD_PROBE_DROP
;
}
else
{
GST_INFO_OBJECT
(
comp
,
"Forwarding FLUSH_START with seqnum %d"
,
comp
->
priv
->
flush_seqnum
);
if
(
comp
->
priv
->
seek_seqnum
)
{
GST_EVENT_SEQNUM
(
event
)
=
comp
->
priv
->
seek_seqnum
;
GST_INFO_OBJECT
(
comp
,
"Setting FLUSH_START seqnum: %d"
,
...
...
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