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
Seungha Yang
gst-plugins-base
Commits
082cedef
Commit
082cedef
authored
Sep 14, 2012
by
Tim-Philipp Müller
🐠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
streamsynchronizer: don't shadow function parameter
parent
b35bc51e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
gst/playback/gststreamsynchronizer.c
gst/playback/gststreamsynchronizer.c
+3
-4
No files found.
gst/playback/gststreamsynchronizer.c
View file @
082cedef
...
@@ -454,16 +454,15 @@ gst_stream_synchronizer_sink_event (GstPad * pad, GstObject * parent,
...
@@ -454,16 +454,15 @@ gst_stream_synchronizer_sink_event (GstPad * pad, GstObject * parent,
/* if EOS, but no data has passed, then send something to replace EOS
/* if EOS, but no data has passed, then send something to replace EOS
* for preroll purposes */
* for preroll purposes */
if
(
!
seen_data
)
{
if
(
!
seen_data
)
{
GstEvent
*
event
;
GstEvent
*
gap_
event
;
event
=
gst_event_new_gap
(
0
,
0
);
gap_
event
=
gst_event_new_gap
(
0
,
0
);
gst_pad_push_event
(
srcpad
,
event
);
gst_pad_push_event
(
srcpad
,
gap_
event
);
}
}
}
}
gst_object_unref
(
srcpad
);
gst_object_unref
(
srcpad
);
gst_event_unref
(
event
);
gst_event_unref
(
event
);
goto
done
;
goto
done
;
break
;
}
}
default:
default:
break
;
break
;
...
...
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