Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
fa9adbe9
Commit
fa9adbe9
authored
Sep 25, 2017
by
Edward Hervey
Committed by
Edward Hervey
Feb 10, 2018
Browse files
playbin3: Remove unused variable
The lock is never used
parent
1717e33d
Changes
1
Hide whitespace changes
Inline
Side-by-side
gst/playback/gstplaybin3.c
View file @
fa9adbe9
...
...
@@ -355,7 +355,6 @@ struct _GstSourceGroup
gulong
block_id
;
GMutex
stream_changed_pending_lock
;
gboolean
stream_changed_pending
;
/* buffering message stored for after switching */
...
...
@@ -1186,7 +1185,6 @@ init_group (GstPlayBin3 * playbin, GstSourceGroup * group)
g_mutex_init
(
&
group
->
lock
);
group
->
stream_changed_pending
=
FALSE
;
g_mutex_init
(
&
group
->
stream_changed_pending_lock
);
group
->
playbin
=
playbin
;
}
...
...
@@ -1199,7 +1197,6 @@ free_group (GstPlayBin3 * playbin, GstSourceGroup * group)
g_mutex_clear
(
&
group
->
lock
);
group
->
stream_changed_pending
=
FALSE
;
g_mutex_clear
(
&
group
->
stream_changed_pending_lock
);
if
(
group
->
pending_buffering_msg
)
gst_message_unref
(
group
->
pending_buffering_msg
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment