mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
gst/elements/gstfilesink.c: Set sync to FALSE by default.
Original commit message from CVS: * gst/elements/gstfilesink.c: (gst_file_sink_init): Set sync to FALSE by default.
This commit is contained in:
parent
46d159afce
commit
bd2986edb7
3 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-09-20 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/elements/gstfilesink.c: (gst_file_sink_init):
|
||||
Set sync to FALSE by default.
|
||||
|
||||
2005-09-20 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
|
||||
|
|
|
@ -160,6 +160,8 @@ gst_file_sink_init (GstFileSink * filesink, GstFileSinkClass * g_class)
|
|||
|
||||
filesink->filename = NULL;
|
||||
filesink->file = NULL;
|
||||
|
||||
GST_BASE_SINK (filesink)->sync = FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -160,6 +160,8 @@ gst_file_sink_init (GstFileSink * filesink, GstFileSinkClass * g_class)
|
|||
|
||||
filesink->filename = NULL;
|
||||
filesink->file = NULL;
|
||||
|
||||
GST_BASE_SINK (filesink)->sync = FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue