mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-01 13:49:58 +00:00
gst-libs/gst/app/gstappsink.c: Override the preroll vmethod instead of overriding the render method twice.
Original commit message from CVS: * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init): Override the preroll vmethod instead of overriding the render method twice.
This commit is contained in:
parent
b78030f77d
commit
c17a721e0a
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ gst_app_sink_class_init (GstAppSinkClass * klass)
|
|||
basesink_class->start = gst_app_sink_start;
|
||||
basesink_class->stop = gst_app_sink_stop;
|
||||
basesink_class->event = gst_app_sink_event;
|
||||
basesink_class->render = gst_app_sink_preroll;
|
||||
basesink_class->preroll = gst_app_sink_preroll;
|
||||
basesink_class->render = gst_app_sink_render;
|
||||
basesink_class->get_caps = gst_app_sink_get_caps;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue