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:
Tim-Philipp Müller 2006-03-09 20:02:44 +00:00
parent 603bb1567c
commit 1807bd210f
2 changed files with 2 additions and 3 deletions

2
common

@ -1 +1 @@
Subproject commit d576cc6779aa9555121d4c78ab69cc620fae3e2b
Subproject commit 9200457d08a57f0d7eaeb56915804fa8faf14418

View file

@ -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);
}