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
Sebastian Dröge
gst-plugins-base
Commits
7fc856ff
Commit
7fc856ff
authored
Aug 16, 2015
by
Edward Hervey
🤘
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decodebin: Fix list iteration
We were using the wrong variable ... CID #1316477
parent
eaf9ca90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gst/playback/gstdecodebin2.c
gst/playback/gstdecodebin2.c
+1
-1
No files found.
gst/playback/gstdecodebin2.c
View file @
7fc856ff
...
...
@@ -2048,7 +2048,7 @@ demuxer_source_pad_probe (GstPad * pad, GstPadProbeInfo * info,
GList
*
tmp2
;
GstDecodeGroup
*
tmpgroup
=
(
GstDecodeGroup
*
)
tmp
->
data
;
if
(
tmpgroup
!=
group
)
{
for
(
tmp2
=
tmpgroup
->
reqpads
;
tmp
;
tmp
=
tmp
->
next
)
{
for
(
tmp2
=
tmpgroup
->
reqpads
;
tmp
2
;
tmp
2
=
tmp
2
->
next
)
{
GstPad
*
reqpad
=
(
GstPad
*
)
tmp2
->
data
;
gst_pad_send_event
(
reqpad
,
gst_event_ref
(
event
));
}
...
...
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