mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
ext/gio/gstgiosink.c: Update to API changes in GIO.
Original commit message from CVS: * ext/gio/gstgiosink.c: (gst_gio_sink_start): Update to API changes in GIO.
This commit is contained in:
parent
faa4937cdc
commit
a69e6332cd
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-10-02 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* ext/gio/gstgiosink.c: (gst_gio_sink_start):
|
||||
Update to API changes in GIO.
|
||||
|
||||
2007-10-01 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst/sdp/gstsdpdemux.c: (gst_sdp_demux_media_to_caps):
|
||||
|
|
|
@ -203,7 +203,8 @@ gst_gio_sink_start (GstBaseSink * base_sink)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
sink->stream = g_file_create (sink->file, sink->cancel, &err);
|
||||
sink->stream =
|
||||
g_file_create (sink->file, G_FILE_CREATE_FLAGS_NONE, sink->cancel, &err);
|
||||
success = (sink->stream != NULL);
|
||||
|
||||
if (!success && !gst_gio_error (sink, "g_file_create", &err, NULL)) {
|
||||
|
|
Loading…
Reference in a new issue