mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
gst/qtdemux/qtdemux.c: Fix warning (#161191).
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event): Fix warning (#161191).
This commit is contained in:
parent
ab47cccf72
commit
d1ba429d91
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
|
||||
Fix warning (#161191).
|
||||
|
||||
2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
|
||||
|
||||
* ext/dvdread/stream_labels.c:
|
||||
|
|
|
@ -500,9 +500,8 @@ gst_qtdemux_handle_sink_event (GstQTDemux * qtdemux)
|
|||
//gst_bytestream_flush_fast(qtdemux->bs, remaining);
|
||||
break;
|
||||
default:
|
||||
res = FALSE;
|
||||
g_warning ("unhandled event %d", type);
|
||||
break;
|
||||
gst_pad_event_default (qtdemux->sinkpad, event);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
gst_event_unref (event);
|
||||
|
|
Loading…
Reference in a new issue