mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +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
767366a1e1
commit
d89fc173d6
1 changed files with 2 additions and 1 deletions
|
@ -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