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
luzpaz
gstreamer
Commits
7e16eb73
Commit
7e16eb73
authored
Dec 19, 2002
by
Wim Taymans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete chains only once..
Original commit message from CVS: Delete chains only once..
parent
61763adf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
gst/schedulers/gstoptimalscheduler.c
gst/schedulers/gstoptimalscheduler.c
+1
-2
No files found.
gst/schedulers/gstoptimalscheduler.c
View file @
7e16eb73
...
...
@@ -414,10 +414,10 @@ merge_chains (GstOptSchedulerChain *chain1, GstOptSchedulerChain *chain2)
walk
=
chain2
->
groups
;
while
(
walk
)
{
GstOptSchedulerGroup
*
group
=
(
GstOptSchedulerGroup
*
)
walk
->
data
;
walk
=
g_slist_next
(
walk
);
group
->
chain
=
NULL
;
add_to_chain
(
chain1
,
group
);
walk
=
g_slist_next
(
walk
);
}
delete_chain
(
chain2
);
...
...
@@ -1138,7 +1138,6 @@ gst_opt_scheduler_remove_element (GstScheduler *sched, GstElement *element)
chain
=
group
->
chain
;
if
(
chain
)
{
remove_from_chain
(
chain
,
group
);
delete_chain
(
chain
);
}
delete_group
(
group
);
}
...
...
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