mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
gst/qtdemux/qtdemux.c: Fix build with gcc-4.1 (#327355).
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (gst_qtdemux_send_event): Fix build with gcc-4.1 (#327355).
This commit is contained in:
parent
603bb1567c
commit
1807bd210f
2 changed files with 2 additions and 3 deletions
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit d576cc6779aa9555121d4c78ab69cc620fae3e2b
|
||||
Subproject commit 9200457d08a57f0d7eaeb56915804fa8faf14418
|
|
@ -449,8 +449,7 @@ gst_qtdemux_send_event (GstQTDemux * qtdemux, GstEvent * event)
|
|||
GST_EVENT_TYPE_NAME (event));
|
||||
|
||||
for (n = 0; n < qtdemux->n_streams; n++) {
|
||||
gst_event_ref (event);
|
||||
gst_pad_push_event (qtdemux->streams[n]->pad, event);
|
||||
gst_pad_push_event (qtdemux->streams[n]->pad, gst_event_ref (event));
|
||||
}
|
||||
gst_event_unref (event);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue